diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..9feb382 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,51 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "FastAPI Backend", + "type": "python", + "request": "launch", + "module": "uvicorn", + "args": [ + "api:app", + "--host", + "127.0.0.1", + "--port", + "8000", + "--reload" + ], + "jinja": true, + "justMyCode": false, + "cwd": "${workspaceFolder}/webui", + "console": "integratedTerminal", + "env": { + "PYTHONUNBUFFERED": "1" + } + }, + { + "name": "Svelte Frontend", + "type": "node", + "request": "launch", + "runtimeExecutable": "npm", + "runtimeArgs": [ + "run", + "dev" + ], + "cwd": "${workspaceFolder}/webui/frontend", + "console": "integratedTerminal", + "skipFiles": [ + "/**" + ] + }, + { + "name": "Run Both Servers", + "type": "compound", + "configurations": [ + "FastAPI Backend", + "Svelte Frontend" + ], + "stopAll": true + } + ] +} + diff --git a/PROJECT_STRUCTURE.md b/PROJECT_STRUCTURE.md index b9ad822..dd62333 100644 --- a/PROJECT_STRUCTURE.md +++ b/PROJECT_STRUCTURE.md @@ -1,152 +1,184 @@ # AV1 Batch Video Transcoder - Project Structure ## Overview -This project is a modular batch video transcoding system using NVIDIA's av1_nvenc codec with intelligent audio stream processing and resolution handling. +A modular batch AV1 video transcoding system using NVIDIA's av1_nvenc codec (10-bit p010le) with intelligent audio/video processing, subtitle embedding, and optional audio language tagging. + +## Recent Changes (Latest Session) + +### Removed +- ❌ **Sonarr/Radarr integration** - Removed helper module, cache loading, and config sections (simplified to basic tagging) +- ❌ **Auto-rename functionality** - No longer renames based on Sonarr metadata +- ❌ **Web UI** - Removed `/webui` folder (can be added back if needed) +- ❌ **Rename tool** - Moved to separate `/rename` folder + +### Added +- ✅ **Subtitle detection & embedding** - Auto-finds .vtt, .srt, .ass, .ssa, .sub files (including language-prefixed like .en.vtt) +- ✅ **Subtitle cleanup** - Deletes embedded subtitle files after successful encoding +- ✅ **Test mode** (`--test`) - Encodes first file, shows compression ratio, doesn't move files +- ✅ **Optional language tagging** (`--language`) - Only tags audio if explicitly provided (default: no tagging) +- ✅ **Always output MKV** - Changed from using source extension to always outputting .mkv +- ✅ **Improved subtitle matching** - Finds both exact matches (video.vtt) and language-prefixed (video.en.vtt) + +### Refactored +- 🔧 **File structure reorganization**: Moved path_manager GUI, rename tool, and cache to separate folders +- 🔧 **Config simplification**: Removed Sonarr/Radarr sections, cleaner general settings +- 🔧 **Suffix handling**: Applied once during encoding, moved directly without re-tagging +- 🔧 **Audio language**: Changed from config-based default to CLI-only optional flag ## Architecture ### Entry Point -- **main.py** - CLI entry point with argument parsing - - Loads configuration from `config.xml` - - Initializes logger and CSV tracker - - Dispatches to `process_folder()` for batch processing +- **main.py** - CLI with argparse + - Arguments: `folder`, `--cq`, `--m {cq,bitrate}`, `--r {480,720,1080}`, `--test`, `--language` + - Loads config.xml, initializes logging + - Calls `process_folder()` from process_manager ### Core Modules #### `core/config_helper.py` -- XML configuration parser -- Returns dict with audio, encoding, and filter settings -- **Key Config:** - - `audio.stereo.high/medium`: Target bitrates for stereo audio (1080p/720p) - - `audio.multi_channel.low/medium`: Target bitrates for multichannel audio - - `encode.cq`: CQ values per content type (tv_720, tv_1080, movie_720, movie_1080, etc.) - - `encode.fallback`: Bitrate fallback settings (900k/1080p, 650k/720p, etc.) - - `extensions`: Video file types to process (mkv, mp4, etc.) - - `ignore_tags`: Files to skip (trailer, sample, etc.) +- **`load_config_xml(config_path)`** - Parses XML configuration +- Returns dict with keys: + - `general`: processing_folder, suffix (" - [EHX]"), extensions, reduction_ratio_threshold, subtitles config + - `encode.cq`: CQ values per content type (tv_1080, tv_720, movie_1080, movie_720) + - `encode.fallback`: Bitrate fallback (Phase 2 retry) + - `audio`: Bitrate buckets for stereo/multichannel + - `path_mappings`: Windows ↔ Linux path conversion #### `core/logger_helper.py` -- Comprehensive logging to `logs/conversion.log` -- Captures source/target specs, audio decisions, bitrate info -- Separate handlers for console (INFO+) and file (DEBUG+) - -#### `core/audio_handler.py` -- **`calculate_stream_bitrate(input_file, stream_index)`**: Extracts audio stream with ffmpeg `-c copy`, parses bitrate output, falls back to file size calculation -- **`get_audio_streams(input_file)`**: Detects all audio streams with robust bitrate calculation -- **`choose_audio_bitrate(channels, bitrate_kbps, audio_config, is_1080_class)`**: Returns (codec, target_bitrate) tuple - - Stereo 1080p+: >192k → encode; ≤192k → preserve ("copy") - - Stereo 720p: >160k → encode; ≤160k → preserve - - Multichannel: Encodes to low (384k) or medium (448k) based on current bitrate - -#### `core/video_handler.py` -- **`get_source_resolution(input_file)`**: ffprobe detection of video dimensions -- **`determine_target_resolution(src_width, src_height, explicit_resolution)`**: Smart resolution logic - - If >1080p → scale to 1080p - - Else → preserve source resolution - - Can be overridden with explicit `--r 480/720/1080` argument - -#### `core/encode_engine.py` -- **`run_ffmpeg(...)`**: Main FFmpeg encoding orchestration - - Builds command with av1_nvenc settings - - Per-stream audio codec/bitrate decisions - - Handles both CQ and Bitrate modes - - Logs detailed before/after specs +- Sets up logging to `logs/conversion.log` (INFO+) and console (DEBUG+) +- Separate failure logger for `logs/conversion_failures.log` +- Captures encoding decisions, bitrates, resolutions, timings #### `core/process_manager.py` -- **`process_folder(...)`**: Main batch processing loop - - Classifies files as TV/Movie/Anime based on path - - Detects per-file source resolution - - Applies smart resolution defaults or explicit overrides - - Handles CQ → Bitrate fallback if size threshold exceeded - - Tracks results in `conversion_tracker.csv` - - Deletes originals after successful encoding +- **`process_folder(folder, cq, transcode_mode, resolution, config, tracker_file, test_mode, audio_language)`** + - Scans folder for video files + - **Per file**: Copy to temp, detect subtitles, analyze streams, encode, move, cleanup + - **Subtitle detection**: Looks for exact match + glob pattern (filename.*.ext) + - **Phase 1 (CQ)**: Try CQ-based encoding, check size threshold + - **Phase 2 (Bitrate)**: Retry failed files with bitrate mode + - **Cleanup**: Delete original + subtitle + temp copies on success +- **`_save_successful_encoding(...)`** - Moves file from temp → original folder + - File already has ` - [EHX]` suffix from temp_output filename + - Deletes original file, subtitle file, and temp copies + - Logs to CSV tracker -## Workflow +#### `core/encode_engine.py` +- **`run_ffmpeg(input_file, output_file, cq, scale_width, scale_height, src_width, src_height, filter_flags, audio_config, method, bitrate_config, subtitle_file, audio_language)`** + - Builds FFmpeg command with av1_nvenc codec (preset p1, pix_fmt p010le) + - Per-stream audio codec/bitrate decisions + - Conditional subtitle input mapping (if subtitle_file provided) + - Optional audio language metadata (only if audio_language not None) + - Returns: (orig_size, out_size, reduction_ratio) -1. **User** runs: `python main.py "C:\Videos\TV\ShowName" --r 720 --m bitrate` -2. **main.py** parses args, loads config.xml -3. **process_manager** iterates video files in folder -4. For each file: - - **video_handler** detects source resolution - - **audio_handler** analyzes audio streams and calculates bitrates - - **encode_engine** builds FFmpeg command with smart audio/resolution settings - - FFmpeg encodes with per-stream audio decisions - - **tracker** logs results to CSV -5. **logger** captures all details to `logs/conversion.log` +#### `core/audio_handler.py` +- **`get_audio_streams(input_file)`** - Detects all audio streams with bitrate info +- **`choose_audio_bitrate(channels, avg_bitrate, audio_config, is_1080_class)`** - Returns (codec, target_bitrate) tuple + - Stereo 1080p: >192k → encode to 192k, ≤192k → copy + - Stereo 720p: >160k → encode to 160k, ≤160k → copy + - Multichannel: Encode to 384k (low) or 448k (medium) -## Configuration Examples +#### `core/video_handler.py` +- **`get_source_resolution(input_file)`** - ffprobe detection +- **`determine_target_resolution(src_width, src_height, explicit_resolution)`** - Smart scaling + - If >1080p → scale to 1080p + - Else → preserve source + - Override with `--r {480,720,1080}` + +## Workflow Example -### Force 720p Bitrate Mode ```bash -python main.py "C:\Videos\TV\Show" --r 720 --m bitrate +python main.py "P:\tv\Supernatural\Season 7" --language eng ``` -### Force 1080p with CQ=28 -```bash -python main.py "C:\Videos\Movies" --cq 28 --r 1080 +**Processing:** +1. Scan folder for .mkv/.mp4 files +2. For each file: + - Copy to `processing/Supernatural - S07E01 - Pilot.mkv` + - Look for subtitle: `Supernatural - S07E01 - Pilot.en.vtt` ✓ found + - Detect source: 1920x1080 (1080p) ✓ + - Get audio streams: [AAC 2ch @ 192k, AC3 6ch @ 448k] + - Determine CQ: tv_1080 → CQ 28 + - Build FFmpeg command: + - Video: av1_nvenc (CQ 28) + - Audio 0: Copy AAC (≤192k already good) + - Audio 1: Re-encode AC3 to AAC 6ch @ 448k + - Subtitles: Input subtitle, map as srt stream, language=eng + - Output: `processing/Supernatural - S07E01 - Pilot - [EHX].mkv` + - FFmpeg runs, outputs ~400MB (original 1.2GB) + - Check size: 400/1200 = 33.3% < 75% ✓ SUCCESS + - Move: `processing/... - [EHX].mkv` → `P:\tv\Supernatural\Season 7/... - [EHX].mkv` + - Cleanup: Delete original + subtitle + temp copy + - Log to CSV + +**Result:** +- Original files gone +- New `Supernatural - S07E01 - Pilot - [EHX].mkv` (subtitle embedded, audio tagged with language=eng) + +## Configuration + +### config.xml Key Sections + +```xml + + processing + - [EHX] + .mkv,.mp4 + 0.75 + + true + .vtt,.srt,.ass,.ssa,.sub + srt + + + + + + 28 + 32 + 32 + 34 + + + + ``` -### Smart Mode (preserve resolution, 4K→1080p) -```bash -python main.py "C:\Videos\Mixed" +## File Movements + ``` +Original: + P:\tv\Show\Episode.mkv (1.2GB) + P:\tv\Show\Episode.en.vtt -### Force 480p (for low-res content) -```bash -python main.py "C:\Videos\OldTV" --r 480 +During Encoding: + processing/Episode.mkv (temp copy) + processing/Episode - [EHX].mkv (encoding output) + +After Success: + P:\tv\Show\Episode - [EHX].mkv (1.2GB → 400MB) + (original .mkv deleted) + (original .en.vtt deleted) + (temp folder cleaned) ``` -## Audio Encoding Logic - -### Decision Tree -``` -Stereo audio? -├─ YES + 1080p: [>192kbps] ENCODE to 192k AAC, [≤192k] COPY -├─ YES + 720p: [>160kbps] ENCODE to 160k AAC, [≤160k] COPY -└─ NO (Multichannel 6ch+): ENCODE to 384k (low) or 448k (medium) AAC -``` - -### Rationale -- Preserves high-quality original audio when already well-compressed -- Re-encodes excessive bitrate audio to standard targets -- Handles stereo at different resolutions appropriately -- Normalizes multichannel to 6ch surround (5.1) or 2ch stereo - -## Files Modified/Created - -### New Modules (Session Work) -- ✅ `core/audio_handler.py` - NEW -- ✅ `core/video_handler.py` - NEW -- ✅ `core/encode_engine.py` - NEW -- ✅ `core/process_manager.py` - NEW -- ✅ `main.py` - REFACTORED (524 lines → 70 lines) - -### Cleanup -- ✅ Deleted `core/ffmpeg_helper.py` (code moved to audio_handler) -- ✅ Deleted `core/process_helper.py` (empty) -- ✅ Deleted `core/tracker_helper.py` (empty) - -### Enhanced -- ✅ `config.xml` - Added `384000` to multi_channel audio -- ✅ `transcode.bat` - Enhanced with job counting and status tracking -- ✅ `paths.txt` - Queue format with --r and --m flags - ## Validation Checklist -- ✅ All modules pass Pylance syntax check -- ✅ All imports resolve correctly -- ✅ Config loads and provides expected keys -- ✅ No unused/deprecated files remain -- ✅ Project structure clean and maintainable -## Running Tests - -Verify the complete system: -```bash -# Test imports -python -c "from core.audio_handler import *; from core.video_handler import *; print('OK')" - -# Run on test folder -python main.py "C:\Test\Videos" --r 720 --m bitrate - -# Check logs -cat logs/conversion.log -``` +- ✅ All core modules import correctly +- ✅ Config loads without Sonarr/Radarr references +- ✅ Subtitle detection finds exact matches + language-prefixed files +- ✅ Audio language tagging only applied with --language flag +- ✅ Output always MKV regardless of source format +- ✅ Suffix applied once (in temp output filename) +- ✅ Subtitle files deleted with original files +- ✅ Test mode shows compression ratio and stops +- ✅ Phase 1 (CQ) and Phase 2 (Bitrate) retry logic works +- ✅ CSV tracking logs all conversions diff --git a/README_RESTRUCTURE.md b/README_RESTRUCTURE.md new file mode 100644 index 0000000..7fb35cb --- /dev/null +++ b/README_RESTRUCTURE.md @@ -0,0 +1,184 @@ +# AV1 Batch Video Transcoder + +A clean, modular batch video transcoding system using NVIDIA's AV1 NVENC codec with intelligent audio and subtitle handling. + +## Project Structure + +``` +conversion_project/ +├── main.py - CLI entry point for batch transcoding +├── config.xml - Configuration (encoding settings, audio buckets, etc.) +│ +├── core/ - Core modules +│ ├── config_helper.py - XML configuration loader +│ ├── logger_helper.py - Logging setup +│ ├── process_manager.py - Main transcoding orchestration +│ ├── encode_engine.py - FFmpeg command builder and execution +│ ├── audio_handler.py - Audio stream analysis and bitrate decisions +│ ├── video_handler.py - Video resolution detection and scaling logic +│ └── hardware_helper.py - Hardware detection (GPU/CPU) +│ +├── /rename/ - Separate rename utility (rolling_rename.py) +├── /path_manager/ - GUI path management (kept separate from conversion) +│ ├── gui_path_manager.py +│ ├── transcode.bat +│ ├── paths.txt +│ └── cache/ +│ +├── logs/ - Log files and conversion tracker CSV +├── processing/ - Temporary encoding files (cleaned up after move) +└── cache/ (removed) - Folder cache now in /path_manager/cache +``` + +## Quick Start + +### Basic Usage + +```bash +# Encode a folder (smart mode: CQ first, bitrate fallback if size exceeds 75%) +python main.py "P:\tv\Show Name" + +# Force CQ mode with specific quality +python main.py "P:\movies\Movie" --cq 30 + +# Force Bitrate mode +python main.py "P:\tv\Show" --m bitrate + +# Explicit resolution +python main.py "P:\movies\Movie" --r 1080 + +# Test mode: encode first file only, show compression ratio, don't move files +python main.py "P:\tv\Show" --test + +# Optional: tag audio streams with language code +python main.py "P:\tv\Show" --language eng +``` + +## Features + +- **Hardware Encoding**: NVIDIA av1_nvenc (10-bit p010le, preset p1) +- **Smart Audio**: Analyzes streams, re-encodes excessive bitrate, preserves good quality +- **Smart Video**: Detects source resolution, scales 4K→1080p, preserves lower resolutions +- **Subtitle Detection**: Auto-finds and embeds subtitles (vtt, srt, ass, ssa, sub) + - Supports language-prefixed files: `movie.en.vtt`, `movie.eng.vtt` + - Cleans up subtitle files after embedding +- **Two-Phase Encoding** (smart mode): + - Phase 1: Try CQ mode for quality + - Phase 2: Retry failed files with Bitrate mode +- **File Tagging**: Encodes output with ` - [EHX]` suffix +- **CSV Tracking**: Detailed conversion log with compression ratios +- **Automatic Cleanup**: Deletes originals + subtitles after successful move + +## Configuration + +Edit `config.xml` to customize: +- **CQ Values**: Per content type (tv_1080, tv_720, movie_1080, movie_720) +- **Audio Buckets**: Bitrate targets for stereo/multichannel +- **Fallback Bitrates**: Used in Phase 2 bitrate retry +- **Subtitle Settings**: Extensions to detect, codec for embedding +- **Path Mappings**: Windows ↔ Linux path conversion (optional) + +## Encoding Process (Per File) + +1. **Detect subtitles**: Looks for matching `.en.vtt`, `.srt`, etc. +2. **Analyze source**: Resolution, audio streams, bitrates +3. **FFmpeg encode**: + - Video: AV1 NVENC (10-bit p010le) + - Audio: Per-stream decisions (copy or re-encode) + - Subtitles: Embedded as SRT (if found) +4. **Size check**: Compare output vs original (default 75% threshold) +5. **Move file**: From temp folder → original location with `- [EHX]` suffix +6. **Cleanup**: Delete original file + subtitle file + +## Audio Encoding Logic + +``` +Stereo audio? +├─ YES + 1080p: [>192kbps] ENCODE to 192k AAC, [≤192k] COPY +├─ YES + 720p: [>160kbps] ENCODE to 160k AAC, [≤160k] COPY +└─ NO (Multichannel): ENCODE to 384k/448k AAC (5.1) +``` + +## Removed Features + +- ❌ Sonarr/Radarr integration (was complex, removed for simplicity) +- ❌ Auto-rename based on Sonarr metadata +- ❌ Web UI (kept separate if needed in future) +- ❌ Rename functionality (moved to `/rename` folder) + +## Advanced Options + +### Test Mode + +Encodes first file only, shows compression ratio, leaves file in temp folder: + +```bash +python main.py "P:\tv\Show" --test +``` + +Useful for: Testing CQ values, checking quality before batch conversion. + +### Language Tagging (Optional) + +Only tags audio if explicitly provided: + +```bash +python main.py "P:\tv\Show" --language eng +``` + +Without `--language` flag, original audio metadata is preserved. + +### Resolution Override + +Force specific output resolution: + +```bash +python main.py "P:\movies" --r 720 # Force 720p +python main.py "P:\tv" --r 1080 # Force 1080p +``` + +## Output Examples + +**Input File:** +``` +SupernaturalS07E21.mkv (size: 1.5GB) +SupernaturalS07E21.en.vtt (subtitle) +``` + +**Output:** +``` +SupernaturalS07E21 - [EHX].mkv (size: 450MB, subtitle embedded) +(original files deleted) +``` + +## Troubleshooting + +### Wrong Bitrate + +Check CQ values in config.xml or use `--cq` override: + +```bash +python main.py "P:\tv\Show" --cq 31 +``` + +### Subtitles Not Embedding + +- Verify file is named correctly: `filename.en.vtt` or `filename.vtt` +- Check `config.xml` has subtitles enabled and extensions listed +- Check logs for "Found subtitle" message + +### Files Not Moving + +Check if reduction ratio threshold (default 0.75) is exceeded: + +```bash +python main.py "P:\tv\Show" --test # Check ratio in Phase 1 +``` + +If ratio is high, lower CQ value or use bitrate mode. + +## Logs + +- `logs/conversion.log`: Detailed encoding info, errors, decisions +- `logs/conversion_tracker.csv`: Summary table of all conversions +- `logs/conversion_failures.log`: Failed file tracking diff --git a/config.xml b/config.xml index b6f79f6..eafe73e 100644 --- a/config.xml +++ b/config.xml @@ -19,6 +19,16 @@ 0.75 + + + + true + .vtt,.srt,.ass,.ssa,.sub + srt + + + + eng - - - http://10.0.0.10:8989/api/v3 - a3458e2a095e4e1c892626c4a4f6959f - - - http://10.0.0.10:7878/api/v3 - - - - - 28 - 32 + 30 + 34 32 34 diff --git a/conversion_tracker.csv b/conversion_tracker.csv index 534b50a..2ec8662 100644 --- a/conversion_tracker.csv +++ b/conversion_tracker.csv @@ -237,3 +237,213 @@ movie,N/A,The Truman Show (1998) x265 AAC 5.1 Bluray-1080p Silence -EHX.mkv,5152 movie,N/A,John Wick - Chapter 4 (2023) x265 AAC 7.1 Bluray-1080p Tigole -EHX.mkv,8144.41,3288.02,40.4,1920x804,1920x804,1,32,CQ movie,N/A,F1 (2025) x265 EAC3 7.1 Bluray-1080p SAMPA -EHX.mkv,7923.16,4044.9,51.1,1920x1080,1920x1080,1,32,CQ movie,N/A,Starship Troopers (1997) x265 AAC 5.1 Bluray-1080p Tigole - [EHX].mkv,6522.97,4495.6,68.9,1920x1040,1920x1040,4,32,CQ +movie,N/A,John Wick - Chapter 3 - Parabellum (2019) x265 AAC 7.1 Bluray-1080p Tigole - [EHX].mkv,6600.85,2604.84,39.5,1920x800,1920x800,1,32,CQ +movie,N/A,John Wick - Chapter 2 (2017) x265 AAC 7.1 Bluray-1080p Tigole - [EHX].mkv,5563.3,2021.69,36.3,1920x800,1920x800,2,32,CQ +movie,N/A,Belle (2021) h264 AC3 5.1 WEBDL-1080p CMRG - [EHX].mkv,6192.36,1967.79,31.8,1912x796,1912x796,1,32,CQ +movie,N/A,Ferris Bueller's Day Off (1986) x265 AAC 5.1 Bluray-1080p r00t - [EHX].mkv,5225.63,3147.46,60.2,1920x816,1920x816,3,32,CQ +movie,N/A,Getting the Class Together - The Cast of Ferris Bueller’s Day Off - [EHX].mkv,284.54,141.45,49.7,720x480,720x480,1,34,CQ +movie,N/A,The Making of Ferris Bueller's Day Off - [EHX].mkv,159.01,89.99,56.6,720x480,720x480,1,34,CQ +movie,N/A,The World According to Ben Stein - [EHX].mkv,111.41,44.35,39.8,720x480,720x480,1,34,CQ +movie,N/A,Vintage Ferris Bueller - The Lost Tapes - [EHX].mkv,105.03,57.2,54.5,720x480,720x480,1,34,CQ +movie,N/A,Who is Ferris Bueller - [EHX].mkv,94.64,53.06,56.1,720x480,720x480,1,34,CQ +movie,N/A,The.Baker.2022.1080p.WEB-DL.DDP5.1.H.264-EniaHD - [EHX].mkv,5497.79,816.56,14.9,1920x802,1280x720,3,34,CQ +movie,N/A,The Losers (2010) h264 EAC3 5.1 WEBDL-1080p PiRaTeS - [EHX].mkv,5151.11,2964.76,57.6,1920x1080,1920x1080,1,32,CQ +movie,N/A,Violent Night (2022) x265 AAC 7.1 Bluray-1080p Tigole - [EHX].mkv,5106.24,1906.91,37.3,1920x804,1920x804,2,32,CQ +movie,N/A,Scott Pilgrim vs. the World (2010) x265 AAC 5.1 Bluray-1080p afm72 - [EHX].mkv,5104.23,2890.73,56.6,1920x1040,1920x1040,5,32,CQ +movie,N/A,Small Soldiers (1998) x265 AAC 5.1 Bluray-1080p FreetheFish - [EHX].mkv,4607.73,2738.43,59.4,1920x816,1920x816,2,32,CQ +movie,N/A,Bloopers - [EHX].mkv,61.58,19.48,31.6,704x328,704x328,2,34,CQ +movie,N/A,Deleted Scenes - [EHX].mkv,77.84,26.06,33.5,704x328,704x328,2,34,CQ +movie,N/A,German Theatrical Trailer - [EHX].mkv,22.08,13.79,62.5,704x568,704x568,2,34,CQ +movie,N/A,Introduction from director Joe Dante - [EHX].mkv,4.76,2.76,58.0,1560x1008,1560x1008,2,32,CQ +movie,N/A,Making Of - [EHX].mkv,141.53,67.99,48.0,696x560,696x560,2,34,CQ +movie,N/A,Theatrical Trailer - [EHX].mkv,19.06,8.33,43.7,720x408,720x408,2,34,CQ +tv,Supernatural,Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1194.05,574.4,48.1,1920x1072,1920x1072,1,34,CQ +tv,Supernatural,Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1258.77,589.56,46.8,1920x1072,1920x1072,1,34,CQ +tv,Supernatural,Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1211.76,542.14,44.7,1920x1072,1920x1072,1,34,CQ +tv,Supernatural,Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1218.99,528.76,43.4,1920x1072,1920x1072,1,34,CQ +tv,Supernatural,Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1216.02,604.5,49.7,1920x1072,1920x1072,1,34,CQ +tv,Supernatural,Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1251.74,572.19,45.7,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1178.69,487.12,41.3,1920x1072,1920x1072,1,34,CQ +tv,Supernatural,Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1255.23,568.17,45.3,1920x1072,1920x1072,1,34,CQ +tv,Supernatural,Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1118.33,411.8,36.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1199.51,508.34,42.4,1920x1072,1920x1072,1,34,CQ +tv,Supernatural,Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1210.49,541.26,44.7,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1284.1,564.19,43.9,1920x1072,1920x1072,1,34,CQ +tv,Supernatural,Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1286.68,733.41,57.0,1920x1072,1920x1072,1,34,CQ +tv,Supernatural,Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1198.65,460.6,38.4,1920x1072,1920x1072,1,34,CQ +tv,Supernatural,Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1199.16,425.7,35.5,1920x1072,1920x1072,1,34,CQ +tv,Supernatural,Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1212.69,560.74,46.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1067.26,439.71,41.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1090.87,451.58,41.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1052.5,427.81,40.6,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,929.6,376.72,40.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1024.01,417.75,40.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1070.47,448.26,41.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,"Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv",1081.52,444.61,41.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1066.74,430.87,40.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1065.36,422.05,39.6,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1072.45,458.86,42.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1114.36,442.83,39.7,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1092.59,456.92,41.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1077.61,460.74,42.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1011.17,394.25,39.0,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1086.58,469.19,43.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,953.74,362.53,38.0,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1102.15,427.09,38.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1147.45,473.33,41.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1140.94,477.81,41.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1104.08,424.57,38.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1048.57,388.53,37.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1100.73,455.3,41.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1140.72,457.58,40.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1274.11,594.17,46.6,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1226.97,661.37,53.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1265.74,589.0,46.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1220.96,573.52,47.0,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1217.35,674.01,55.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1276.57,716.27,56.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1269.09,629.48,49.6,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1245.31,629.48,50.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1268.56,626.75,49.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1275.97,618.85,48.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1193.53,557.27,46.7,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1224.62,590.71,48.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1216.84,550.81,45.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1269.84,572.68,45.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1152.21,521.45,45.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1110.03,497.54,44.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1235.78,626.8,50.7,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1230.73,666.65,54.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1243.85,719.79,57.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1300.63,616.77,47.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1249.53,689.24,55.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1258.44,666.0,52.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1099.63,465.54,42.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1082.08,506.4,46.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,909.89,354.25,38.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1102.86,407.58,37.0,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1012.31,403.77,39.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,965.9,381.78,39.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1011.59,366.43,36.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,954.26,379.04,39.7,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1006.11,415.23,41.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1134.42,475.13,41.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1039.16,373.16,35.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1135.33,462.15,40.7,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1016.28,417.09,41.0,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1101.76,477.59,43.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,942.74,337.79,35.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,966.55,462.13,47.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,990.31,380.88,38.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1091.07,496.7,45.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1009.92,383.02,37.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1063.08,395.92,37.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,995.78,430.0,43.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1107.29,594.17,53.7,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1061.47,469.9,44.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1011.62,464.83,45.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1007.38,405.25,40.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1118.48,425.87,38.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1016.94,473.16,46.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1068.6,431.55,40.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1079.77,437.23,40.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1137.78,468.17,41.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1028.23,437.09,42.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,996.51,405.17,40.7,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1112.98,434.89,39.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1161.83,502.78,43.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1070.71,395.17,36.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1030.23,404.72,39.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1063.59,411.96,38.7,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1101.52,453.63,41.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1204.16,500.78,41.6,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,989.83,368.13,37.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1001.29,386.17,38.6,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,998.94,354.12,35.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1043.67,414.27,39.7,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,992.35,360.39,36.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1091.96,413.3,37.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,986.84,415.3,42.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1169.67,510.7,43.7,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1115.33,495.59,44.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1105.25,457.97,41.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1103.58,449.27,40.7,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1071.81,443.95,41.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,982.71,382.99,39.0,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,976.85,389.93,39.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1025.92,410.37,40.0,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,986.23,369.38,37.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1092.43,423.97,38.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1121.0,427.51,38.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1098.16,431.16,39.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1115.15,455.98,40.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1015.03,364.67,35.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1090.01,407.17,37.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1054.37,422.14,40.0,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,969.34,368.19,38.0,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,995.09,377.65,38.0,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1088.62,417.88,38.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1065.41,419.02,39.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1105.87,427.1,38.6,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1083.4,437.15,40.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1149.25,460.99,40.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1272.4,516.99,40.6,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,"Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv",1237.25,538.63,43.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1238.58,550.56,44.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1242.46,498.66,40.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,"Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv",1235.03,556.46,45.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1253.2,536.57,42.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1276.06,588.42,46.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,"Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv",1295.19,583.0,45.0,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1192.28,508.04,42.6,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1250.57,512.81,41.0,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1224.81,479.53,39.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1230.21,462.75,37.6,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1203.35,461.29,38.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1257.37,643.97,51.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1145.45,447.79,39.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1243.23,531.93,42.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1200.72,465.67,38.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,"Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv",1206.39,476.78,39.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1155.55,406.48,35.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1254.13,550.42,43.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1190.18,421.4,35.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E22 - There Will Be Blood x265 AC3 Bluray-1080p HiQVE.mkv,1220.64,453.02,37.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE.mkv,1181.16,467.72,39.6,1920x1080,1920x1080,1,34,CQ +tv,Fargo (2014),Fargo (2014) - S02E04 - Fear and Trembling (1080p BluRay x265 Silence) - [EHX].mkv,2063.29,1517.94,73.6,1920x1080,1920x1080,1,28,CQ +tv,Supernatural,Supernatural - S06E01 - Exile on Main Street x265 AC3 Bluray-1080p HiQVE - [EHX] - [EHX].mkv,1216.1,461.66,38.0,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E02 - Two and a Half Men x265 AC3 Bluray-1080p HiQVE - [EHX] - [EHX].mkv,1222.62,505.86,41.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E03 - The Third Man x265 AC3 Bluray-1080p HiQVE - [EHX] - [EHX].mkv,1204.98,485.43,40.3,1920x1080,1920x1080,1,34,CQ +tv,Dirty Laundry,Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex? - [EHX] - [EHX].mkv,1541.33,681.76,44.2,1920x1080,1920x1080,1,32,CQ +tv,Dirty Laundry,Dirty Laundry - S03E02 - Who Got High and Reenacted a Concert Using Eggs? - [EHX] - [EHX].mkv,1758.32,816.99,46.5,1920x1080,1920x1080,1,32,CQ +tv,Dirty Laundry,Dirty Laundry - S03E03 - Who Came Out to Their High School Girlfriend Via Jesus Christ? - [EHX].mkv,1790.83,1009.79,56.4,1920x1080,1920x1080,1,32,CQ +tv,Dirty Laundry,Dirty Laundry - S03E04 - Who Got Stung in the Crotch by a Jellyfish? - [EHX].mkv,1675.86,849.95,50.7,1920x1080,1920x1080,1,32,CQ +tv,Dirty Laundry,Dirty Laundry - S03E05 - Who Watched a Woman Pump Breast Milk While Snorting Cocaine? - [EHX].mkv,1566.21,700.88,44.8,1920x1080,1920x1080,1,32,CQ +tv,Dirty Laundry,Dirty Laundry - S03E06 - Who Was Found Naked in a Hallway by a Drug Dealer? - [EHX].mkv,1481.71,645.05,43.5,1920x1080,1920x1080,1,32,CQ +tv,Dirty Laundry,Dirty Laundry - S03E07 - Who Is an Honorary Member at a Sex Club? - [EHX].mkv,1668.77,732.43,43.9,1920x1080,1920x1080,1,32,CQ +tv,Dirty Laundry,Dirty Laundry - S03E08 - Who Went to a War Criminal's Birthday? - [EHX].mkv,1600.26,672.57,42.0,1920x1080,1920x1080,1,32,CQ +tv,Dirty Laundry,Dirty Laundry - S03E09 - Who Blamed Their Sex Noises on a Videogame? - [EHX].mkv,1434.91,657.23,45.8,1920x1080,1920x1080,1,32,CQ +tv,Dirty Laundry,Dirty Laundry - S03E10 - Who Bugged Someone's Car to Catch Them Cheating? - [EHX].mkv,1631.16,697.22,42.7,1920x1080,1920x1080,1,32,CQ +tv,Dirty Laundry,Dirty Laundry - S03E11 - Who Sent a Mean Email to a Famous Comedian as a Middle Schooler? - [EHX].mkv,1628.6,824.63,50.6,1920x1080,1920x1080,1,32,CQ +tv,Dirty Laundry,Dirty Laundry - S03E12 - Who Has an Active Warrant Out For Their Arrest? - [EHX].mkv,1638.37,718.68,43.9,1920x1080,1920x1080,1,32,CQ +tv,Supernatural,Supernatural - S06E04 - Weekend at Bobby's x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1226.57,492.18,40.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E05 - Live Free or Twihard x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1214.86,496.07,40.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E06 - You Can't Handle the Truth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1173.67,443.16,37.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E07 - Family Matters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1099.59,380.26,34.6,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E08 - All Dogs Go to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1227.33,532.03,43.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E09 - Clap Your Hands If You Believe x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1212.57,546.56,45.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E10 - Caged Heat x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1154.72,420.73,36.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E11 - Appointment in Samarra x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1241.18,468.26,37.7,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E12 - Like A Virgin x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1260.23,528.11,41.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E13 - Unforgiven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1243.94,616.35,49.5,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E14 - Mannequin 3 - The Reckoning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1192.86,467.22,39.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E15 - The French Mistake x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1286.57,580.32,45.1,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E16 - And Then There Were None x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1235.2,511.66,41.4,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E17 - My Heart Will Go On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1219.94,547.37,44.9,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E18 - Frontierland x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1217.06,476.93,39.2,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E19 - Mommy Dearest x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1236.08,498.65,40.3,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E20 - The Man Who Would Be King x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1195.44,487.82,40.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E21 - Let It Bleed x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1258.11,502.94,40.0,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S06E22 - The Man Who Knew Too Much x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1257.75,561.37,44.6,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,Supernatural - S05E01 - Sympathy for the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv,1286.7,512.54,39.8,1920x1080,1920x1080,1,34,CQ +tv,Supernatural,"Supernatural - S05E02 - Good God, Y'All! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv",1290.8,640.05,49.6,1920x1080,1920x1080,1,34,CQ diff --git a/core/audio_handler.py b/core/audio_handler.py index b62cec0..923b067 100644 --- a/core/audio_handler.py +++ b/core/audio_handler.py @@ -19,7 +19,39 @@ def calculate_stream_bitrate(input_file: Path, stream_index: int) -> int: Uses ffmpeg's reported bitrate which is more accurate than calculating from file size/duration. """ - temp_fd, temp_audio_path = tempfile.mkstemp(suffix=".aac", dir=None) + # Ensure input file exists and is readable + input_file = Path(input_file) + if not input_file.exists(): + logger.error(f"Input file does not exist: {input_file}") + return 0 + + if not os.access(input_file, os.R_OK): + logger.error(f"Input file is not readable (permission denied): {input_file}") + return 0 + + # Use project processing directory for temp files + processing_dir = Path(__file__).parent.parent / "processing" + processing_dir.mkdir(exist_ok=True) + + # Determine the codec of this audio stream first + probe_cmd = [ + "ffprobe", "-v", "error", + "-select_streams", f"a:{stream_index}", + "-show_entries", "stream=codec_name", + "-of", "default=noprint_wrappers=1:nokey=1", + str(input_file) + ] + try: + probe_result = subprocess.run(probe_cmd, capture_output=True, text=True, check=False) + codec_name = probe_result.stdout.strip().lower() if probe_result.returncode == 0 else "aac" + except: + codec_name = "aac" + + # Use MKA (Matroska Audio) which supports any codec + # This is a universal container that works with AC3, AAC, FLAC, DTS, Opus, etc. + temp_ext = ".mka" + + temp_fd, temp_audio_path = tempfile.mkstemp(suffix=temp_ext, dir=str(processing_dir)) os.close(temp_fd) try: @@ -31,8 +63,15 @@ def calculate_stream_bitrate(input_file: Path, stream_index: int) -> int: "-c", "copy", temp_audio_path ] - logger.debug(f"Extracting audio stream {stream_index} to temporary file for bitrate calculation...") - result = subprocess.run(extract_cmd, capture_output=True, text=True, check=True) + logger.debug(f"Extracting audio stream {stream_index} ({codec_name}) to temporary file for bitrate calculation...") + result = subprocess.run(extract_cmd, capture_output=True, text=True, check=False) + + # Check if extraction succeeded + if result.returncode != 0: + logger.warning(f"Stream {stream_index}: ffmpeg extraction failed (return code {result.returncode})") + if result.stderr: + logger.debug(f"ffmpeg stderr: {result.stderr[:300]}") + return 0 # Step 2: Parse bitrate from ffmpeg's output (stderr) # Look for line like: "bitrate= 457.7kbits/s" @@ -135,9 +174,9 @@ def choose_audio_bitrate(channels: int, bitrate_kbps: int, audio_config: dict, i - At/below 160k → preserve (copy) Multi-channel: - - Below 384k → low (384k) with AAC - - 384k to below medium → low (384k) with AAC - - Medium and above → medium with AAC + - Below minimum threshold (low setting) → preserve original (copy) + - Low to medium → use low bitrate + - Medium and above → use medium bitrate """ # Normalize to 2ch or 6ch output output_channels = 6 if channels >= 6 else 2 @@ -151,6 +190,7 @@ def choose_audio_bitrate(channels: int, bitrate_kbps: int, audio_config: dict, i return ("aac", high_br) else: # Preserve original + logger.info(f"Stereo audio {bitrate_kbps}kbps ≤ {high_br/1000:.0f}k threshold - copying original") return ("copy", 0) else: # 720p stereo @@ -159,6 +199,7 @@ def choose_audio_bitrate(channels: int, bitrate_kbps: int, audio_config: dict, i return ("aac", medium_br) else: # Preserve original + logger.info(f"Stereo audio {bitrate_kbps}kbps ≤ {medium_br/1000:.0f}k threshold - copying original") return ("copy", 0) else: @@ -166,7 +207,11 @@ def choose_audio_bitrate(channels: int, bitrate_kbps: int, audio_config: dict, i low_br = audio_config["multi_channel"]["low"] medium_br = audio_config["multi_channel"]["medium"] - if bitrate_kbps < (medium_br / 1000): + # If below the lowest threshold, copy the original audio instead of re-encoding + if bitrate_kbps < (low_br / 1000): + logger.info(f"Multi-channel audio {bitrate_kbps}kbps < {low_br/1000:.0f}k minimum - copying original to avoid artifical inflation") + return ("copy", 0) + elif bitrate_kbps < (medium_br / 1000): # Below medium, use low return ("aac", low_br) else: diff --git a/core/config_helper.py b/core/config_helper.py index 5e484ed..4ac1c75 100644 --- a/core/config_helper.py +++ b/core/config_helper.py @@ -76,12 +76,12 @@ def load_config_xml(path: Path) -> dict: reduction_ratio_threshold = float(reduction_ratio_elem.text) if reduction_ratio_elem is not None else 0.5 # --- Path Mappings --- - path_mappings = {} + path_mappings = [] for m in root.findall("path_mappings/map"): f = m.attrib.get("from") t = m.attrib.get("to") if f and t: - path_mappings[f] = t + path_mappings.append({"from": f, "to": t}) # --- Encode --- encode_elem = root.find("encode") @@ -121,6 +121,30 @@ def load_config_xml(path: Path) -> dict: if child.text: audio["multi_channel"][child.tag] = int(child.text) + # --- Services (Sonarr/Radarr) --- + services = {"sonarr": {}, "radarr": {}} + sonarr_elem = root.find("services/sonarr") + if sonarr_elem is not None: + url_elem = sonarr_elem.find("url") + api_elem = sonarr_elem.find("api_key") + rg_elem = sonarr_elem.find("new_release_group") + services["sonarr"] = { + "url": url_elem.text if url_elem is not None and url_elem.text else None, + "api_key": api_elem.text if api_elem is not None and api_elem.text else None, + "new_release_group": rg_elem.text if rg_elem is not None and rg_elem.text else "CONVERTED" + } + + radarr_elem = root.find("services/radarr") + if radarr_elem is not None: + url_elem = radarr_elem.find("url") + api_elem = radarr_elem.find("api_key") + rg_elem = radarr_elem.find("new_release_group") + services["radarr"] = { + "url": url_elem.text if url_elem is not None and url_elem.text else None, + "api_key": api_elem.text if api_elem is not None and api_elem.text else None, + "new_release_group": rg_elem.text if rg_elem is not None and rg_elem.text else "CONVERTED" + } + return { "processing_folder": processing_folder, "suffix": suffix, @@ -129,5 +153,6 @@ def load_config_xml(path: Path) -> dict: "reduction_ratio_threshold": reduction_ratio_threshold, "path_mappings": path_mappings, "encode": {"cq": cq, "fallback": fallback, "filters": filters}, - "audio": audio + "audio": audio, + "services": services } diff --git a/core/encode_engine.py b/core/encode_engine.py index a591e9a..22877d4 100644 --- a/core/encode_engine.py +++ b/core/encode_engine.py @@ -12,7 +12,7 @@ logger = setup_logger(Path(__file__).parent.parent / "logs") def run_ffmpeg(input_file: Path, output_file: Path, cq: int, scale_width: int, scale_height: int, src_width: int, src_height: int, filter_flags: str, audio_config: dict, - method: str, bitrate_config: dict): + method: str, bitrate_config: dict, subtitle_file: Path = None, audio_language: str = None): """ Run FFmpeg encode with comprehensive logging. @@ -59,10 +59,24 @@ def run_ffmpeg(input_file: Path, output_file: Path, cq: int, scale_width: int, s print(line) logger.info(line) - cmd = ["ffmpeg","-y","-i",str(input_file), - "-vf",f"scale={scale_width}:{scale_height}:flags={filter_flags}:force_original_aspect_ratio=decrease", - "-map","0:v","-map","0:a","-map","0:s?", - "-c:v","av1_nvenc","-preset","p1","-pix_fmt","p010le"] + cmd = ["ffmpeg","-y","-i",str(input_file)] + + # Add subtitle input if present + if subtitle_file: + cmd.extend(["-i", str(subtitle_file)]) + + cmd.extend([ + "-vf",f"scale={scale_width}:{scale_height}:flags={filter_flags}:force_original_aspect_ratio=decrease", + "-map","0:v","-map","0:a"]) + + # Add subtitle mapping if present + if subtitle_file: + cmd.extend(["-map", "1:s"]) + else: + cmd.extend(["-map", "0:s?"]) + + cmd.extend([ + "-c:v","av1_nvenc","-preset","p1","-pix_fmt","p010le"]) if method=="CQ": cmd += ["-cq", str(cq)] @@ -83,6 +97,9 @@ def run_ffmpeg(input_file: Path, output_file: Path, cq: int, scale_width: int, s if codec == "copy": # Preserve original audio cmd += [f"-c:a:{i}", "copy"] + # Only add language metadata if explicitly provided + if audio_language: + cmd += [f"-metadata:s:a:{i}", f"language={audio_language}"] else: # Re-encode with target bitrate cmd += [ @@ -91,8 +108,17 @@ def run_ffmpeg(input_file: Path, output_file: Path, cq: int, scale_width: int, s f"-ac:{i}", str(output_channels), f"-channel_layout:a:{i}", "5.1" if output_channels == 6 else "stereo" ] + # Only add language metadata if explicitly provided + if audio_language: + cmd += [f"-metadata:s:a:{i}", f"language={audio_language}"] - cmd += ["-c:s","copy",str(output_file)] + # Add subtitle codec and metadata if subtitles are present + if subtitle_file: + cmd += ["-c:s", "srt", "-metadata:s:s:0", "language=eng"] + else: + cmd += ["-c:s", "copy"] + + cmd += [str(output_file)] print(f"\n🎬 Running {method} encode: {output_file.name}") logger.info(f"Running {method} encode: {output_file.name}") diff --git a/core/process_manager.py b/core/process_manager.py index 8ddd85a..ac86e6d 100644 --- a/core/process_manager.py +++ b/core/process_manager.py @@ -2,8 +2,10 @@ """Main processing logic for batch transcoding.""" import csv +import os import shutil import subprocess +import time from pathlib import Path from core.audio_handler import get_audio_streams @@ -32,7 +34,7 @@ def _cleanup_temp_files(temp_input: Path, temp_output: Path): logger.warning(f"Could not delete temp output {temp_output.name}: {e}") -def process_folder(folder: Path, cq: int, transcode_mode: str, resolution: str, config: dict, tracker_file: Path): +def process_folder(folder: Path, cq: int, transcode_mode: str, resolution: str, config: dict, tracker_file: Path, test_mode: bool = False, audio_language: str = None): """ Process all video files in folder with appropriate encoding settings. @@ -43,6 +45,8 @@ def process_folder(folder: Path, cq: int, transcode_mode: str, resolution: str, resolution: Explicit resolution override ("480", "720", "1080", or None for smart) config: Configuration dictionary tracker_file: Path to CSV tracker file + test_mode: If True, only encode first file and skip final move/cleanup + audio_language: Optional language code to tag audio (e.g., 'eng', 'spa'). If None, no tagging applied. """ if not folder.exists(): print(f"❌ Folder not found: {folder}") @@ -89,22 +93,60 @@ def process_folder(folder: Path, cq: int, transcode_mode: str, resolution: str, print("📋 MODE: Forced Bitrate (skip failures, log them)") print(f"{'='*60}\n") + skipped_count = 0 for file in folder.rglob("*"): if file.suffix.lower() not in extensions: continue if any(tag.lower() in file.name.lower() for tag in ignore_tags): - print(f"⏭️ Skipping: {file.name}") - logger.info(f"Skipping: {file.name}") + skipped_count += 1 continue + + if skipped_count > 0: + print(f"⏭️ Skipped {skipped_count} file(s)") + logger.info(f"Skipped {skipped_count} file(s)") + skipped_count = 0 print("="*60) logger.info(f"Processing: {file.name}") print(f"📁 Processing: {file.name}") - temp_input = processing_folder / file.name + temp_input = (processing_folder / file.name).resolve() shutil.copy2(file, temp_input) logger.info(f"Copied {file.name} → {temp_input.name}") + # Verify file was copied and is accessible + for attempt in range(3): + if temp_input.exists() and os.access(temp_input, os.R_OK): + break + + # Check for matching subtitle file + subtitle_file = None + if config.get("general", {}).get("subtitles", {}).get("enabled", True): + subtitle_exts = config.get("general", {}).get("subtitles", {}).get("extensions", ".vtt,.srt,.ass,.ssa,.sub").split(",") + # Look for subtitle with same base name (e.g., movie.vtt or movie.en.vtt) + for ext in subtitle_exts: + ext = ext.strip() + # Try exact match first (movie.vtt) + potential_sub = file.with_suffix(ext) + if potential_sub.exists(): + subtitle_file = potential_sub + print(f"📝 Found subtitle: {subtitle_file.name}") + logger.info(f"Found subtitle file: {subtitle_file.name}") + break + + # Try language prefix variants (movie.en.vtt, movie.eng.vtt, etc.) + # Look for files matching the pattern basename.*language*.ext + parent_dir = file.parent + base_name = file.stem + for item in parent_dir.glob(f"{base_name}.*{ext}"): + subtitle_file = item + print(f"📝 Found subtitle: {subtitle_file.name}") + logger.info(f"Found subtitle file: {subtitle_file.name}") + break + + if subtitle_file: + break + try: # Detect source resolution and determine target resolution src_width, src_height = get_source_resolution(temp_input) @@ -130,7 +172,8 @@ def process_folder(folder: Path, cq: int, transcode_mode: str, resolution: str, content_cq = config["encode"]["cq"].get(f"tv_{target_resolution}" if is_tv else f"movie_{target_resolution}", 32) file_cq = cq if cq is not None else content_cq - temp_output = processing_folder / f"{file.stem}{suffix}{file.suffix}" + # Always output as .mkv (AV1 video codec) with [EHX] suffix + temp_output = (processing_folder / f"{file.stem}{suffix}.mkv").resolve() # Determine which method to try first if is_forced_bitrate: @@ -144,7 +187,7 @@ def process_folder(folder: Path, cq: int, transcode_mode: str, resolution: str, try: orig_size, out_size, reduction_ratio = run_ffmpeg( temp_input, temp_output, file_cq, res_width, res_height, src_width, src_height, - filter_flags, audio_config, method, bitrate_config + filter_flags, audio_config, method, bitrate_config, subtitle_file, audio_language ) # Check if encode met size target @@ -170,7 +213,8 @@ def process_folder(folder: Path, cq: int, transcode_mode: str, resolution: str, 'res_height': res_height, 'target_resolution': target_resolution, 'file_cq': file_cq, - 'is_tv': is_tv + 'is_tv': is_tv, + 'subtitle_file': subtitle_file }) consecutive_failures += 1 if consecutive_failures >= max_consecutive: @@ -213,7 +257,8 @@ def process_folder(folder: Path, cq: int, transcode_mode: str, resolution: str, 'res_height': res_height, 'target_resolution': target_resolution, 'file_cq': file_cq, - 'is_tv': is_tv + 'is_tv': is_tv, + 'subtitle_file': subtitle_file }) consecutive_failures += 1 if consecutive_failures >= max_consecutive: @@ -238,9 +283,14 @@ def process_folder(folder: Path, cq: int, transcode_mode: str, resolution: str, _save_successful_encoding( file, temp_input, temp_output, orig_size, out_size, reduction_ratio, method, src_width, src_height, res_width, res_height, - file_cq, tracker_file, folder, is_tv + file_cq, tracker_file, folder, is_tv, config, test_mode, subtitle_file ) + # In test mode, stop after first successful file + if test_mode: + print(f"\n✅ TEST MODE: File processed. Encoded file is in temp folder for inspection.") + break + except Exception as e: # Unexpected error error_msg = str(e)[:100] @@ -285,7 +335,8 @@ def process_folder(folder: Path, cq: int, transcode_mode: str, resolution: str, temp_input, temp_output, file_data['file_cq'], file_data['res_width'], file_data['res_height'], file_data['src_width'], file_data['src_height'], - filter_flags, audio_config, "Bitrate", bitrate_config + filter_flags, audio_config, "Bitrate", bitrate_config, + file_data.get('subtitle_file'), audio_language ) # Check if bitrate also failed @@ -307,7 +358,8 @@ def process_folder(folder: Path, cq: int, transcode_mode: str, resolution: str, file_data['src_width'], file_data['src_height'], file_data['res_width'], file_data['res_height'], file_data['file_cq'], tracker_file, - folder, file_data['is_tv'] + folder, file_data['is_tv'], config, False, + file_data.get('subtitle_file') ) except subprocess.CalledProcessError as e: @@ -338,8 +390,27 @@ def process_folder(folder: Path, cq: int, transcode_mode: str, resolution: str, def _save_successful_encoding(file, temp_input, temp_output, orig_size, out_size, reduction_ratio, method, src_width, src_height, res_width, res_height, - file_cq, tracker_file, folder, is_tv): - """Helper function to save successfully encoded files.""" + file_cq, tracker_file, folder, is_tv, config=None, test_mode=False, subtitle_file=None): + """Helper function to save successfully encoded files with [EHX] tag and clean up subtitle files.""" + + # In test mode, show ratio and skip file move/cleanup + if test_mode: + orig_size_mb = round(orig_size / 1e6, 2) + out_size_mb = round(out_size / 1e6, 2) + percentage = round(out_size_mb / orig_size_mb * 100, 1) + + print(f"\n{'='*60}") + print(f"📊 TEST MODE RESULTS:") + print(f"{'='*60}") + print(f"Original: {orig_size_mb} MB") + print(f"Encoded: {out_size_mb} MB") + print(f"Ratio: {percentage}% ({reduction_ratio:.1%} reduction)") + print(f"Method: {method} (CQ={file_cq if method == 'CQ' else 'N/A'})") + print(f"{'='*60}") + print(f"📁 Encoded file location: {temp_output}") + logger.info(f"TEST MODE - File: {file.name} | Ratio: {percentage}% | Method: {method}") + return + dest_file = file.parent / temp_output.name shutil.move(temp_output, dest_file) print(f"🚚 Moved {temp_output.name} → {dest_file.name}") @@ -393,6 +464,15 @@ def _save_successful_encoding(file, temp_input, temp_output, orig_size, out_size temp_input.unlink() file.unlink() logger.info(f"Deleted original and processing copy for {file.name}") + + # Clean up subtitle file if it was embedded + if subtitle_file and subtitle_file.exists(): + try: + subtitle_file.unlink() + print(f"🗑️ Removed embedded subtitle: {subtitle_file.name}") + logger.info(f"Removed embedded subtitle: {subtitle_file.name}") + except Exception as e: + logger.warning(f"Could not delete subtitle file {subtitle_file.name}: {e}") except Exception as e: print(f"⚠️ Could not delete files: {e}") logger.warning(f"Could not delete files: {e}") diff --git a/AV1 Master.bat b/legacy/AV1 Master.bat similarity index 100% rename from AV1 Master.bat rename to legacy/AV1 Master.bat diff --git a/legacy/gui_path_manager.py b/legacy/gui_path_manager.py new file mode 100644 index 0000000..b27753b --- /dev/null +++ b/legacy/gui_path_manager.py @@ -0,0 +1,832 @@ + +#!/usr/bin/env python3 +""" +GUI Path Manager for Batch Video Transcoder +Allows easy browsing of folders and appending to paths.txt with encoding options. +""" + +import tkinter as tk +from tkinter import ttk, messagebox, filedialog +from pathlib import Path +import os +import subprocess +import re +import json +from core.config_helper import load_config_xml +from core.logger_helper import setup_logger + +logger = setup_logger(Path(__file__).parent.parent / "logs") + +class PathManagerGUI: + def __init__(self, root): + self.root = root + self.root.title("Batch Transcoder - Path Manager") + self.root.geometry("1100x700") + + # Load config + config_path = Path(__file__).parent.parent / "config.xml" + self.config = load_config_xml(config_path) + self.path_mappings = self.config.get("path_mappings", {}) + + # Paths file + self.paths_file = Path(__file__).parent.parent / "paths.txt" + self.transcode_bat = Path(__file__).parent.parent / "transcode.bat" + + # Current selected folder + self.selected_folder = None + self.current_category = None + self.recently_added = None # Track recently added folder for highlighting + self.status_timer = None # Track status message timer + self.added_folders = set() # Folders that are in paths.txt + + # Cache for folder data - split per category + self.cache_dir = Path(__file__).parent.parent / ".cache" + self.cache_dir.mkdir(exist_ok=True) + self.folder_cache = {} # Only current category in memory: {folder_path: size} + self.scan_in_progress = False + self.scanned_categories = set() # Track which categories have been scanned + + # Lazy loading + self.all_folders = [] # All folders for current category + self.loaded_items = 0 # How many items are currently loaded + self.items_per_batch = 100 # Load 100 items at a time + + # Load existing paths + self._load_existing_paths() + + # Build UI + self._build_ui() + + # Handle window close + self.root.protocol("WM_DELETE_WINDOW", self._on_closing) + + def _build_ui(self): + """Build the GUI layout.""" + # Top frame for category selection and transcode launcher + top_frame = ttk.Frame(self.root) + top_frame.pack(fill=tk.X, padx=10, pady=10) + + left_top = ttk.Frame(top_frame) + left_top.pack(side=tk.LEFT, fill=tk.X, expand=True) + + ttk.Label(left_top, text="Category:").pack(side=tk.LEFT, padx=5) + + self.category_var = tk.StringVar(value="tv") + categories = ["tv", "anime", "movies"] + for cat in categories: + ttk.Radiobutton( + left_top, text=cat.upper(), variable=self.category_var, + value=cat, command=self._on_category_change + ).pack(side=tk.LEFT, padx=5) + + ttk.Button(left_top, text="Refresh", command=self._refresh_with_cache_clear).pack(side=tk.LEFT, padx=5) + + # Right side of top frame - transcode launcher + right_top = ttk.Frame(top_frame) + right_top.pack(side=tk.RIGHT) + + if self.transcode_bat.exists(): + ttk.Button( + right_top, text="▶ Run transcode.bat", command=self._run_transcode + ).pack(side=tk.RIGHT, padx=5) + + # Main content frame + main_frame = ttk.Frame(self.root) + main_frame.pack(fill=tk.BOTH, expand=True, padx=10, pady=10) + + # Left side - folder tree + left_frame = ttk.LabelFrame(main_frame, text="Folders (sorted by size)") + left_frame.pack(side=tk.LEFT, fill=tk.BOTH, expand=True, padx=(0, 5)) + + # Treeview for folders with add button column + self.tree = ttk.Treeview(left_frame, columns=("size", "add", "remove"), height=20) + self.tree.column("#0", width=180) + self.tree.column("size", width=80) + self.tree.column("add", width=50) + self.tree.column("remove", width=50) + self.tree.heading("#0", text="Folder Name") + self.tree.heading("size", text="Size") + self.tree.heading("add", text="Add") + self.tree.heading("remove", text="Remove") + + scrollbar = ttk.Scrollbar(left_frame, orient=tk.VERTICAL, command=self._on_scrollbar) + self.tree.configure(yscroll=scrollbar.set) + + self.tree.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) + scrollbar.pack(side=tk.RIGHT, fill=tk.Y) + + # Configure tags for folder status + self.tree.tag_configure("added", background="#90EE90") # Light green for added + self.tree.tag_configure("not_added", background="white") # White for not added + self.tree.tag_configure("recently_added", background="#FFD700") # Gold for recently added + + self.tree.bind("", self._on_folder_expand) + self.tree.bind("<>", self._on_folder_select) + self.tree.bind("", self._on_tree_click) + + # Right side - options and preview + right_frame = ttk.LabelFrame(main_frame, text="Encoding Options & Preview") + right_frame.pack(side=tk.RIGHT, fill=tk.BOTH, expand=True, padx=(5, 0)) + + # Mode selection + mode_frame = ttk.LabelFrame(right_frame, text="Mode (--m)") + mode_frame.pack(fill=tk.X, padx=5, pady=5) + + self.mode_var = tk.StringVar(value="default") + for mode in ["default", "cq", "bitrate"]: + ttk.Radiobutton(mode_frame, text=mode, variable=self.mode_var, value=mode, + command=self._update_preview).pack(anchor=tk.W, padx=5) + + # Resolution selection + res_frame = ttk.LabelFrame(right_frame, text="Resolution (--r)") + res_frame.pack(fill=tk.X, padx=5, pady=5) + + self.resolution_var = tk.StringVar(value="none") + for res in ["none", "480", "720", "1080"]: + label = "Auto" if res == "none" else res + "p" + ttk.Radiobutton(res_frame, text=label, variable=self.resolution_var, value=res, + command=self._update_preview).pack(anchor=tk.W, padx=5) + + # CQ value + cq_frame = ttk.LabelFrame(right_frame, text="CQ Value (--cq, optional)") + cq_frame.pack(fill=tk.X, padx=5, pady=5) + + self.cq_var = tk.StringVar(value="") + cq_entry = ttk.Entry(cq_frame, textvariable=self.cq_var, width=10) + cq_entry.pack(anchor=tk.W, padx=5, pady=3) + cq_entry.bind("", lambda e: self._update_preview()) + + # Preview frame + preview_frame = ttk.LabelFrame(right_frame, text="Command Preview") + preview_frame.pack(fill=tk.BOTH, expand=True, padx=5, pady=5) + + self.preview_text = tk.Text(preview_frame, height=8, width=40, wrap=tk.WORD, bg="lightgray") + self.preview_text.pack(fill=tk.BOTH, expand=True, padx=5, pady=5) + self.preview_text.config(state=tk.DISABLED) + + # Bottom frame - action buttons and status + bottom_frame = ttk.Frame(self.root) + bottom_frame.pack(fill=tk.X, padx=10, pady=10) + + button_frame = ttk.Frame(bottom_frame) + button_frame.pack(side=tk.LEFT) + + ttk.Button(button_frame, text="View paths.txt", command=self._view_paths_file).pack(side=tk.LEFT, padx=5) + ttk.Button(button_frame, text="Clear paths.txt", command=self._clear_paths_file).pack(side=tk.LEFT, padx=5) + + # Status label (for silent feedback) + self.status_label = ttk.Label(bottom_frame, text="", foreground="green") + self.status_label.pack(side=tk.LEFT, padx=10) + + # Load cache and populate initial category + self._load_cache() + self._refresh_folders(use_cache=True) + # Only scan once per category on first view + if self.current_category not in self.scanned_categories: + self.root.after(100, self._scan_folders_once) + + def _on_category_change(self): + """Handle category radio button change.""" + self.current_category = self.category_var.get() + # Load cache for this category + self._load_cache() + # Show cached data first + self._refresh_folders(use_cache=True) + # Only scan once per category on first view + if self.current_category not in self.scanned_categories: + self.root.after(100, self._scan_folders_once) + + def _load_cache(self): + """Load folder cache for current category from disk (lazy).""" + category = self.category_var.get() + cache_file = self.cache_dir / f".cache_{category}.json" + + self.folder_cache.clear() + + # Don't fully load cache yet - just verify it exists + if not cache_file.exists(): + logger.info(f"No cache file for {category}") + else: + logger.info(f"Cache file exists for {category}") + + def _parse_cache_lazily(self, limit=None): + """Parse cache file lazily and return folders.""" + category = self.category_var.get() + cache_file = self.cache_dir / f".cache_{category}.json" + + folders = [] + + if cache_file.exists(): + try: + with open(cache_file, "r", encoding="utf-8") as f: + cache_dict = json.load(f) + + # Convert to list and sort + for folder_path_str, size in cache_dict.items(): + folder_path = Path(folder_path_str) + if folder_path.exists(): + folders.append((folder_path.name, folder_path, size)) + + # Early exit if limit reached + if limit and len(folders) >= limit: + break + + # Sort by size descending (only what we loaded) + folders.sort(key=lambda x: x[2], reverse=True) + + except Exception as e: + logger.error(f"Failed to parse cache: {e}") + + return folders + + def _save_cache(self): + """Save current category's folder cache to disk.""" + category = self.category_var.get() + cache_file = self.cache_dir / f".cache_{category}.json" + + try: + with open(cache_file, "w", encoding="utf-8") as f: + json.dump(self.folder_cache, f, indent=2) + except Exception as e: + logger.error(f"Failed to save {category} cache: {e}") + + def _refresh_with_cache_clear(self): + """Refresh and clear cache to force full scan.""" + category = self.category_var.get() + cache_file = self.cache_dir / f".cache_{category}.json" + + # Delete cache file for this category + if cache_file.exists(): + cache_file.unlink() + + self.folder_cache.clear() + self.scanned_categories.discard(category) # Reset so it will scan again + self._refresh_folders(use_cache=False) + + def _scan_folders_once(self): + """Scan folders once per category on first load.""" + if self.scan_in_progress: + return + + category = self.category_var.get() + if category in self.scanned_categories: + return # Already scanned this category + + self.scan_in_progress = True + + try: + category_mapping = { + "tv": "P:\\tv", + "anime": "P:\\anime", + "movies": "P:\\movies" + } + + base_key = category_mapping.get(category) + if not base_key or base_key not in self.path_mappings: + return + + base_path = Path(base_key) + if not base_path.exists(): + return + + # Scan folders and update cache + new_cache = {} + for entry in os.scandir(base_path): + if entry.is_dir(follow_symlinks=False): + size = self._get_folder_size(Path(entry)) + new_cache[str(Path(entry))] = size + + # Update cache and save + self.folder_cache = new_cache + self._save_cache() + self.scanned_categories.add(category) + + # Update UI if still on same category + if self.category_var.get() == category: + self._refresh_folders(use_cache=True) + finally: + self.scan_in_progress = False + + def _scan_folders_background(self): + """Scan folders in background and update cache.""" + if self.scan_in_progress: + return + + self.scan_in_progress = True + + try: + category = self.category_var.get() + category_mapping = { + "tv": "P:\\tv", + "anime": "P:\\anime", + "movies": "P:\\movies" + } + + base_key = category_mapping.get(category) + if not base_key or base_key not in self.path_mappings: + return + + base_path = Path(base_key) + if not base_path.exists(): + return + + # Scan folders and update cache + new_cache = {} + for entry in os.scandir(base_path): + if entry.is_dir(follow_symlinks=False): + size = self._get_folder_size(Path(entry)) + new_cache[str(Path(entry))] = size + + # Update cache and save + self.folder_cache[category] = new_cache + self._save_cache() + + # Update UI if still on same category + if self.category_var.get() == category: + self._refresh_folders(use_cache=True) + finally: + self.scan_in_progress = False + # Schedule next continuous scan + self.background_scan_timer = self.root.after( + self.background_scan_interval, + self._continuous_background_scan + ) + # Schedule next continuous scan + self.background_scan_timer = self.root.after( + self.background_scan_interval, + self._continuous_background_scan + ) + + def _load_existing_paths(self): + """Load existing paths from paths.txt and extract folder paths.""" + self.added_folders.clear() + + if not self.paths_file.exists(): + return + + try: + with open(self.paths_file, "r", encoding="utf-8") as f: + for line in f: + line = line.strip() + if not line: + continue + + # Extract the path (last argument in the command) + # Format: --m mode --r res --cq val "path" or just "path" + # Find all quoted strings + matches = re.findall(r'"([^"]*)"', line) + if matches: + # Last quoted string is the path + path = matches[-1] + self.added_folders.add(path) + except Exception as e: + logger.error(f"Failed to load existing paths: {e}") + + def _get_folder_size(self, path: Path) -> int: + """Calculate total size of folder in bytes.""" + total = 0 + try: + for entry in os.scandir(path): + if entry.is_file(follow_symlinks=False): + total += entry.stat().st_size + elif entry.is_dir(follow_symlinks=False): + total += self._get_folder_size(Path(entry)) + except PermissionError: + pass + return total + + def _format_size(self, bytes_size: int) -> str: + """Format bytes to human readable size.""" + for unit in ["B", "KB", "MB", "GB", "TB"]: + if bytes_size < 1024: + return f"{bytes_size:.1f} {unit}" + bytes_size /= 1024 + return f"{bytes_size:.1f} PB" + + def _refresh_folders(self, use_cache=False): + """Refresh the folder tree from cache or disk.""" + # Clear existing items + for item in self.tree.get_children(): + self.tree.delete(item) + + self.all_folders = [] + self.loaded_items = 0 + + category = self.category_var.get() + + # Map category to path mapping key + category_mapping = { + "tv": "P:\\tv", + "anime": "P:\\anime", + "movies": "P:\\movies" + } + + base_key = category_mapping.get(category) + if not base_key or base_key not in self.path_mappings: + messagebox.showwarning("Info", f"No mapping found for {category}") + return + + base_path = Path(base_key) + + # Check if path exists + if not base_path.exists(): + messagebox.showerror("Error", f"Path not found: {base_path}") + return + + # Get folders from cache or disk + if use_cache: + # Parse cache lazily - only load what we need initially + folders = self._parse_cache_lazily(limit=None) # Get all but parse efficiently + else: + # Scan from disk + folders = [] + try: + for entry in os.scandir(base_path): + if entry.is_dir(follow_symlinks=False): + size = self._get_folder_size(Path(entry)) + folders.append((entry.name, Path(entry), size)) + except PermissionError: + messagebox.showerror("Error", f"Permission denied accessing {base_path}") + return + + # Update cache with fresh scan + cache_dict = {str(f[1]): f[2] for f in folders} + self.folder_cache = cache_dict + self._save_cache() + + # Sort by size descending + folders.sort(key=lambda x: x[2], reverse=True) + + # Store all folders and load first batch only + self.all_folders = folders + self._load_more_items() + + def _on_folder_expand(self, event): + """Handle folder double-click to show contents.""" + selection = self.tree.selection() + if not selection: + return + + item = selection[0] + tags = self.tree.item(item, "tags") + + if not tags: + return + + folder_path = Path(tags[0]) + + # Check if already expanded + if self.tree.get_children(item): + # Toggle: remove children + for child in self.tree.get_children(item): + self.tree.delete(child) + else: + # Add file/folder contents + try: + entries = [] + for entry in os.scandir(folder_path): + if entry.is_file(): + size = entry.stat().st_size + entries.append((entry.name, "File", size)) + elif entry.is_dir(): + size = self._get_folder_size(Path(entry)) + entries.append((entry.name, "Folder", size)) + + # Sort by size descending + entries.sort(key=lambda x: x[2], reverse=True) + + for name, type_str, size in entries: + size_str = self._format_size(size) + self.tree.insert(item, "end", text=f"[{type_str}] {name}", values=(size_str,)) + except PermissionError: + messagebox.showerror("Error", f"Permission denied accessing {folder_path}") + + def _on_folder_select(self, event): + """Handle folder selection to update preview.""" + selection = self.tree.selection() + if not selection: + return + + item = selection[0] + tags = self.tree.item(item, "tags") + + if tags: + self.selected_folder = tags[0] + self._update_preview() + + def _on_tree_click(self, event): + """Handle click on '+' or '-' button in add column.""" + item = self.tree.identify("item", event.x, event.y) + column = self.tree.identify_column(event.x) # Only takes x coordinate + + # Column #2 is the "add" column (columns are #0=name, #1=size, #2=add, #3=remove) + if item and column == "#2": + tags = self.tree.item(item, "tags") + if tags: + folder_path = tags[0] + values = self.tree.item(item, "values") + if len(values) > 1: + button_text = values[1] # Get button text + + if "[+]" in button_text: + # Immediately update UI for snappy response + size_val = values[0] + self.tree.item(item, values=(size_val, "", "[-]"), tags=(folder_path, "added")) + + # Add to paths.txt asynchronously + self.selected_folder = folder_path + self.root.after(0, self._add_to_paths_file_async, folder_path) + + # Column #3 is the "remove" column + elif item and column == "#3": + tags = self.tree.item(item, "tags") + if tags: + folder_path = tags[0] + + # Immediately update UI for snappy response + values = self.tree.item(item, "values") + size_val = values[0] + self.tree.item(item, values=(size_val, "[+]", ""), tags=(folder_path, "not_added")) + + # Remove from paths.txt asynchronously + self.root.after(0, self._remove_from_paths_file_async, folder_path) + + def _add_to_paths_file_async(self, folder_path): + """Add to paths.txt without blocking UI.""" + self.selected_folder = folder_path + self._add_to_paths_file() + # Silently reload in background + self._load_existing_paths() + + def _remove_from_paths_file_async(self, folder_path): + """Remove from paths.txt without blocking UI.""" + self._remove_from_paths_file(folder_path) + + def _update_preview(self): + """Update the command preview.""" + if not self.selected_folder: + preview_text = "No folder selected" + else: + folder_path = self.selected_folder + + # Build command + cmd_parts = ['py main.py'] + + # Add mode if not default + mode = self.mode_var.get() + if mode != "default": + cmd_parts.append(f'--m {mode}') + + # Add resolution if specified + resolution = self.resolution_var.get() + if resolution != "none": + cmd_parts.append(f'--r {resolution}') + + # Add CQ if specified + cq = self.cq_var.get().strip() + if cq: + cmd_parts.append(f'--cq {cq}') + + # Add path + cmd_parts.append(f'"{folder_path}"') + + preview_text = " ".join(cmd_parts) + + self.preview_text.config(state=tk.NORMAL) + self.preview_text.delete("1.0", tk.END) + self.preview_text.insert("1.0", preview_text) + self.preview_text.config(state=tk.DISABLED) + + def _add_to_paths_file(self): + """Append the current command to paths.txt.""" + if not self.selected_folder: + messagebox.showwarning("Warning", "Please select a folder first") + return + + folder_path = self.selected_folder + + # Check if already in file + if folder_path in self.added_folders: + self._show_status(f"Already added: {Path(folder_path).name}") + return + + # Build command line - start fresh + cmd_parts = [] + + # Add mode if not default + mode = self.mode_var.get() + if mode != "default": + cmd_parts.append(f'--m {mode}') + + # Add resolution if specified + resolution = self.resolution_var.get() + if resolution != "none": + cmd_parts.append(f'--r {resolution}') + + # Add CQ if specified + cq = self.cq_var.get().strip() + if cq: + cmd_parts.append(f'--cq {cq}') + + # Add folder path + cmd_parts.append(f'"{folder_path}"') + + line = " ".join(cmd_parts) + + # Append to paths.txt + try: + # Check if file exists and has content + if self.paths_file.exists() and self.paths_file.stat().st_size > 0: + # Read last character to check if it ends with newline + with open(self.paths_file, "rb") as f: + f.seek(-1, 2) # Seek to last byte + last_char = f.read(1) + needs_newline = last_char != b'\n' + else: + needs_newline = False + + # Write to file + with open(self.paths_file, "a", encoding="utf-8") as f: + if needs_newline: + f.write("\n") + f.write(line + "\n") + + # Add to tracked set + self.added_folders.add(folder_path) + + # Silent success - show status label instead of popup + self.recently_added = folder_path + self._show_status(f"✓ Added: {Path(folder_path).name}") + logger.info(f"Added to paths.txt: {line}") + + # Clear timer if exists + if self.status_timer: + self.root.after_cancel(self.status_timer) + + # Clear status after 3 seconds + self.status_timer = self.root.after(3000, self._clear_status) + except Exception as e: + messagebox.showerror("Error", f"Failed to write to paths.txt: {e}") + logger.error(f"Failed to write to paths.txt: {e}") + + def _remove_from_paths_file(self, folder_path): + """Remove a folder from paths.txt.""" + if not self.paths_file.exists(): + messagebox.showwarning("Warning", "paths.txt does not exist") + return + + try: + with open(self.paths_file, "r", encoding="utf-8") as f: + lines = f.readlines() + + # Filter out lines containing this folder path + new_lines = [] + found = False + for line in lines: + if f'"{folder_path}"' in line or f"'{folder_path}'" in line: + found = True + else: + new_lines.append(line) + + if not found: + messagebox.showwarning("Warning", "Path not found in paths.txt") + return + + # Write back + with open(self.paths_file, "w", encoding="utf-8") as f: + f.writelines(new_lines) + + # Remove from tracked set + self.added_folders.discard(folder_path) + + self._show_status(f"✓ Removed: {Path(folder_path).name}") + logger.info(f"Removed from paths.txt: {folder_path}") + + # Clear timer if exists + if self.status_timer: + self.root.after_cancel(self.status_timer) + + # Clear status after 3 seconds + self.status_timer = self.root.after(3000, self._clear_status) + except Exception as e: + messagebox.showerror("Error", f"Failed to remove from paths.txt: {e}") + logger.error(f"Failed to remove from paths.txt: {e}") + + def _show_status(self, message): + """Show status message in label.""" + self.status_label.config(text=message, foreground="green") + + def _clear_status(self): + """Clear status message after delay.""" + self.status_label.config(text="") + self.status_timer = None + + def _run_transcode(self): + """Launch transcode.bat in a new command window.""" + if not self.transcode_bat.exists(): + messagebox.showerror("Error", f"transcode.bat not found at {self.transcode_bat}") + return + + try: + # Launch in new cmd window + subprocess.Popen( + ['cmd', '/c', f'"{self.transcode_bat}"'], + cwd=str(self.transcode_bat.parent), + creationflags=subprocess.CREATE_NEW_CONSOLE + ) + logger.info("Launched transcode.bat") + except Exception as e: + messagebox.showerror("Error", f"Failed to launch transcode.bat: {e}") + logger.error(f"Failed to launch transcode.bat: {e}") + + def _view_paths_file(self): + """Open paths.txt in a new window.""" + if not self.paths_file.exists(): + messagebox.showinfo("Info", "paths.txt does not exist yet") + return + + try: + with open(self.paths_file, "r", encoding="utf-8") as f: + content = f.read() + + # Create new window + view_window = tk.Toplevel(self.root) + view_window.title("paths.txt") + view_window.geometry("800x400") + + text_widget = tk.Text(view_window, wrap=tk.WORD) + text_widget.pack(fill=tk.BOTH, expand=True, padx=10, pady=10) + text_widget.insert("1.0", content) + + # Add close button + ttk.Button(view_window, text="Close", command=view_window.destroy).pack(pady=5) + + except Exception as e: + messagebox.showerror("Error", f"Failed to read paths.txt: {e}") + + def _clear_paths_file(self): + """Clear the paths.txt file.""" + if not self.paths_file.exists(): + messagebox.showinfo("Info", "paths.txt does not exist") + return + + if messagebox.askyesno("Confirm", "Are you sure you want to clear paths.txt?"): + try: + self.paths_file.write_text("", encoding="utf-8") + messagebox.showinfo("Success", "paths.txt has been cleared") + logger.info("paths.txt cleared") + except Exception as e: + messagebox.showerror("Error", f"Failed to clear paths.txt: {e}") + + def _on_closing(self): + """Handle window closing - cleanup timers.""" + self.root.destroy() + + def _on_scrollbar(self, *args): + """Handle scrollbar movement - load more items when scrolling.""" + self.tree.yview(*args) + + # Check if we need to load more items + if self.all_folders and self.loaded_items < len(self.all_folders): + # Get scroll position + first_visible = self.tree.yview()[0] + last_visible = self.tree.yview()[1] + + # If we're past 70% scrolled, load more + if last_visible > 0.7: + self._load_more_items() + + def _load_more_items(self): + """Load next batch of items into tree.""" + start = self.loaded_items + end = min(start + self.items_per_batch, len(self.all_folders)) + + for i in range(start, end): + folder_name, folder_path, size = self.all_folders[i] + size_str = self._format_size(size) + folder_path_str = str(folder_path) + + # Determine button and tag + if folder_path_str in self.added_folders: + add_btn = "" + remove_btn = "[-]" + tag = "added" + else: + add_btn = "[+]" + remove_btn = "" + tag = "not_added" + + self.tree.insert("", "end", text=folder_name, values=(size_str, add_btn, remove_btn), + tags=(folder_path_str, tag)) + + self.loaded_items = end + + +def main(): + root = tk.Tk() + app = PathManagerGUI(root) + root.mainloop() + + +if __name__ == "__main__": + main() diff --git a/logs/conversion.log b/logs/conversion.log index 86f9819..17ef682 100644 --- a/logs/conversion.log +++ b/logs/conversion.log @@ -5090,3 +5090,13770 @@ {"timestamp": "2025-12-31T20:33:04Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} {"timestamp": "2025-12-31T20:33:04Z", "level": "INFO", "message": " - Stream #1: 8ch→6ch | Lang: und | Detected: 696kbps | Action: ENCODE | Target: 448kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} {"timestamp": "2025-12-31T20:33:04Z", "level": "INFO", "message": "Running CQ encode: John Wick - Chapter 3 - Parabellum (2019) x265 AAC 7.1 Bluray-1080p Tigole - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T20:50:37Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T20:50:37Z", "level": "INFO", "message": " Original Size: 6600.85 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T20:50:37Z", "level": "INFO", "message": " Encoded Size: 2604.84 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T20:50:37Z", "level": "INFO", "message": " Reduction: 39.5% of original (60.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T20:50:37Z", "level": "INFO", "message": " Resolution: 1920x800 → 1920x800", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T20:50:37Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T20:51:00Z", "level": "INFO", "message": "Moved John Wick - Chapter 3 - Parabellum (2019) x265 AAC 7.1 Bluray-1080p Tigole - [EHX].mkv → John Wick - Chapter 3 - Parabellum (2019) x265 AAC 7.1 Bluray-1080p Tigole - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T20:51:05Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: John Wick - Chapter 3 - Parabellum (2019) x265 AAC 7.1 Bluray-1080p Tigole - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T20:51:05Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T20:51:05Z", "level": "INFO", "message": " Size: 6600.85MB → 2604.84MB (39.5% of original, 60.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T20:51:05Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T20:51:06Z", "level": "INFO", "message": "Deleted original and processing copy for John Wick - Chapter 3 - Parabellum (2019) x265 AAC 7.1 Bluray-1080p Tigole.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T20:51:06Z", "level": "INFO", "message": "Processing: Behind the Scenes.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T20:51:07Z", "level": "INFO", "message": "Copied Behind the Scenes.mkv → Behind the Scenes.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T20:51:07Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T20:51:07Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T20:51:07Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T20:51:08Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T20:51:08Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T20:51:08Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T20:51:08Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T20:51:08Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T20:51:08Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T20:51:08Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T20:51:08Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T20:51:08Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T20:51:08Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 62kbps | Action: COPY (preserve) | Target: 62kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T20:51:08Z", "level": "INFO", "message": "Running CQ encode: Behind the Scenes - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T20:51:25Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T20:51:25Z", "level": "INFO", "message": " Original Size: 65.37 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T20:51:25Z", "level": "INFO", "message": " Encoded Size: 81.47 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T20:51:25Z", "level": "INFO", "message": " Reduction: 124.6% of original (-24.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T20:51:25Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T20:51:25Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T20:51:25Z", "level": "INFO", "message": "Processing: Bikes, Blades, Bridges, and Bits.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T20:51:26Z", "level": "INFO", "message": "Copied Bikes, Blades, Bridges, and Bits.mkv → Bikes, Blades, Bridges, and Bits.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T20:51:26Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T20:51:26Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T20:51:26Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T20:51:26Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T20:51:26Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T20:51:26Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T20:51:26Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T20:51:26Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T20:51:26Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T20:51:26Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T20:51:26Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T20:51:26Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T20:51:26Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 66kbps | Action: COPY (preserve) | Target: 66kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T20:51:26Z", "level": "INFO", "message": "Running CQ encode: Bikes, Blades, Bridges, and Bits - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T20:51:51Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T20:51:51Z", "level": "INFO", "message": " Original Size: 88.75 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T20:51:51Z", "level": "INFO", "message": " Encoded Size: 118.19 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T20:51:51Z", "level": "INFO", "message": " Reduction: 133.2% of original (-33.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T20:51:51Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T20:51:51Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T20:51:51Z", "level": "INFO", "message": "Processing: Check Your Sights.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T20:51:52Z", "level": "INFO", "message": "Copied Check Your Sights.mkv → Check Your Sights.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T20:51:52Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T20:51:52Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T20:51:52Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T20:51:53Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T20:51:53Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T20:51:53Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T20:51:53Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T20:51:53Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T20:51:53Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T20:51:53Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T20:51:53Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T20:51:53Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T20:51:53Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 66kbps | Action: COPY (preserve) | Target: 66kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T20:51:53Z", "level": "INFO", "message": "Running CQ encode: Check Your Sights - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T20:52:30Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T20:52:30Z", "level": "INFO", "message": " Original Size: 147.62 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T20:52:30Z", "level": "INFO", "message": " Encoded Size: 193.20 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T20:52:30Z", "level": "INFO", "message": " Reduction: 130.9% of original (-30.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T20:52:30Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T20:52:30Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T20:52:30Z", "level": "ERROR", "message": "3 consecutive failures. Stopping process.", "module": "process_manager", "funcName": "process_folder", "line": 189} +{"timestamp": "2025-12-31T20:52:30Z", "level": "INFO", "message": "Batch processing complete", "module": "process_manager", "funcName": "process_folder", "line": 336} +{"timestamp": "2025-12-31T20:52:30Z", "level": "INFO", "message": "Using path as-is: P:\\movies\\John Wick - Chapter 2 (2017)", "module": "main", "funcName": "normalize_input_path", "line": 49} +{"timestamp": "2025-12-31T20:52:30Z", "level": "INFO", "message": "Processing: John Wick - Chapter 2 (2017) x265 AAC 7.1 Bluray-1080p Tigole.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T20:53:19Z", "level": "INFO", "message": "Copied John Wick - Chapter 2 (2017) x265 AAC 7.1 Bluray-1080p Tigole.mkv → John Wick - Chapter 2 (2017) x265 AAC 7.1 Bluray-1080p Tigole.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T20:53:19Z", "level": "INFO", "message": "Source resolution detected: 1920x800", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T20:53:19Z", "level": "INFO", "message": "Source 1920x800 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T20:53:19Z", "level": "INFO", "message": "Source 1920x800 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T20:53:27Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T20:53:27Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T20:53:27Z", "level": "INFO", "message": " • Source Resolution: 1920x800", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T20:53:27Z", "level": "INFO", "message": " • Target Resolution: 1920x800", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T20:53:27Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T20:53:27Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T20:53:27Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T20:53:27Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T20:53:27Z", "level": "INFO", "message": " Audio Streams (2 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T20:53:27Z", "level": "INFO", "message": " - Stream #1: 8ch→6ch | Lang: und | Detected: 658kbps | Action: ENCODE | Target: 448kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T20:53:27Z", "level": "INFO", "message": " - Stream #2: 2ch→2ch | Lang: und | Detected: 65kbps | Action: COPY (preserve) | Target: 65kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T20:53:27Z", "level": "INFO", "message": "Running CQ encode: John Wick - Chapter 2 (2017) x265 AAC 7.1 Bluray-1080p Tigole - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T21:10:56Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T21:10:56Z", "level": "INFO", "message": " Original Size: 5563.30 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T21:10:56Z", "level": "INFO", "message": " Encoded Size: 2021.69 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T21:10:56Z", "level": "INFO", "message": " Reduction: 36.3% of original (63.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T21:10:56Z", "level": "INFO", "message": " Resolution: 1920x800 → 1920x800", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T21:10:56Z", "level": "INFO", "message": " Audio Streams: 2 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T21:11:14Z", "level": "INFO", "message": "Moved John Wick - Chapter 2 (2017) x265 AAC 7.1 Bluray-1080p Tigole - [EHX].mkv → John Wick - Chapter 2 (2017) x265 AAC 7.1 Bluray-1080p Tigole - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T21:11:22Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: John Wick - Chapter 2 (2017) x265 AAC 7.1 Bluray-1080p Tigole - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T21:11:22Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T21:11:22Z", "level": "INFO", "message": " Size: 5563.3MB → 2021.69MB (36.3% of original, 63.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T21:11:22Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T21:11:23Z", "level": "INFO", "message": "Deleted original and processing copy for John Wick - Chapter 2 (2017) x265 AAC 7.1 Bluray-1080p Tigole.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T21:11:23Z", "level": "INFO", "message": "Processing: A Museum Tour with Sir Jonathan Wick.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T21:11:24Z", "level": "INFO", "message": "Copied A Museum Tour with Sir Jonathan Wick.mkv → A Museum Tour with Sir Jonathan Wick.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T21:11:24Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T21:11:24Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T21:11:24Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T21:11:24Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T21:11:24Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T21:11:24Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T21:11:24Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T21:11:24Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T21:11:24Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T21:11:24Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T21:11:24Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T21:11:24Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T21:11:24Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 63kbps | Action: COPY (preserve) | Target: 63kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T21:11:24Z", "level": "INFO", "message": "Running CQ encode: A Museum Tour with Sir Jonathan Wick - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T21:11:32Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T21:11:32Z", "level": "INFO", "message": " Original Size: 25.83 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T21:11:32Z", "level": "INFO", "message": " Encoded Size: 30.64 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T21:11:32Z", "level": "INFO", "message": " Reduction: 118.6% of original (-18.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T21:11:32Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T21:11:32Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T21:11:32Z", "level": "INFO", "message": "Processing: As Above, So Below - The Underworld of John Wick.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T21:11:33Z", "level": "INFO", "message": "Copied As Above, So Below - The Underworld of John Wick.mkv → As Above, So Below - The Underworld of John Wick.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T21:11:33Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T21:11:33Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T21:11:33Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T21:11:33Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T21:11:33Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T21:11:33Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T21:11:33Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T21:11:33Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T21:11:33Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T21:11:33Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T21:11:33Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T21:11:33Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T21:11:33Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 66kbps | Action: COPY (preserve) | Target: 66kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T21:11:33Z", "level": "INFO", "message": "Running CQ encode: As Above, So Below - The Underworld of John Wick - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T21:11:51Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T21:11:51Z", "level": "INFO", "message": " Original Size: 58.41 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T21:11:51Z", "level": "INFO", "message": " Encoded Size: 73.14 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T21:11:51Z", "level": "INFO", "message": " Reduction: 125.2% of original (-25.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T21:11:51Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T21:11:51Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T21:11:51Z", "level": "INFO", "message": "Processing: Car Fu Ride-Along.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T21:11:52Z", "level": "INFO", "message": "Copied Car Fu Ride-Along.mkv → Car Fu Ride-Along.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T21:11:52Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T21:11:52Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T21:11:52Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T21:11:52Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T21:11:52Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T21:11:52Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T21:11:52Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T21:11:52Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T21:11:52Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T21:11:52Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T21:11:52Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T21:11:52Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T21:11:52Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 65kbps | Action: COPY (preserve) | Target: 65kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T21:11:52Z", "level": "INFO", "message": "Running CQ encode: Car Fu Ride-Along - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T21:12:09Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T21:12:09Z", "level": "INFO", "message": " Original Size: 55.73 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T21:12:09Z", "level": "INFO", "message": " Encoded Size: 96.85 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T21:12:09Z", "level": "INFO", "message": " Reduction: 173.8% of original (-73.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T21:12:09Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T21:12:09Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T21:12:09Z", "level": "ERROR", "message": "3 consecutive failures. Stopping process.", "module": "process_manager", "funcName": "process_folder", "line": 189} +{"timestamp": "2025-12-31T21:12:09Z", "level": "INFO", "message": "Batch processing complete", "module": "process_manager", "funcName": "process_folder", "line": 336} +{"timestamp": "2025-12-31T21:12:09Z", "level": "INFO", "message": "Using path as-is: P:\\movies\\Belle (2021)", "module": "main", "funcName": "normalize_input_path", "line": 49} +{"timestamp": "2025-12-31T21:12:09Z", "level": "INFO", "message": "Processing: Belle (2021) h264 AC3 5.1 WEBDL-1080p CMRG.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": "Copied Belle (2021) h264 AC3 5.1 WEBDL-1080p CMRG.mkv → Belle (2021) h264 AC3 5.1 WEBDL-1080p CMRG.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": "Source resolution detected: 1912x796", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": "Source 1912x796 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": "Source 1912x796 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T21:13:04Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Belle (2021) h264 AC3 5.1 WEBDL-1080p CMRG.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpjqf9xrxt.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 384 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": " • Source Resolution: 1912x796", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": " • Target Resolution: 1912x796", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": " - Stream #1: 6ch→2ch | Lang: und | Detected: 384kbps | Action: ENCODE | Target: 160kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T21:13:04Z", "level": "INFO", "message": "Running CQ encode: Belle (2021) h264 AC3 5.1 WEBDL-1080p CMRG - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T21:19:05Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T21:19:05Z", "level": "INFO", "message": " Original Size: 6192.36 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T21:19:05Z", "level": "INFO", "message": " Encoded Size: 1967.79 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T21:19:05Z", "level": "INFO", "message": " Reduction: 31.8% of original (68.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T21:19:05Z", "level": "INFO", "message": " Resolution: 1912x796 → 1912x796", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T21:19:05Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T21:19:24Z", "level": "INFO", "message": "Moved Belle (2021) h264 AC3 5.1 WEBDL-1080p CMRG - [EHX].mkv → Belle (2021) h264 AC3 5.1 WEBDL-1080p CMRG - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T21:19:24Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Belle (2021) h264 AC3 5.1 WEBDL-1080p CMRG.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpde07a8t7.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2025-12-31T21:19:24Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 384 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2025-12-31T21:19:24Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Belle (2021) h264 AC3 5.1 WEBDL-1080p CMRG - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T21:19:24Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T21:19:24Z", "level": "INFO", "message": " Size: 6192.36MB → 1967.79MB (31.8% of original, 68.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T21:19:24Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T21:19:25Z", "level": "INFO", "message": "Deleted original and processing copy for Belle (2021) h264 AC3 5.1 WEBDL-1080p CMRG.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T21:19:25Z", "level": "INFO", "message": "Batch processing complete", "module": "process_manager", "funcName": "process_folder", "line": 336} +{"timestamp": "2025-12-31T21:19:25Z", "level": "INFO", "message": "Using path as-is: P:\\movies\\TAYLOR SWIFT THE ERAS TOUR (2023)", "module": "main", "funcName": "normalize_input_path", "line": 49} +{"timestamp": "2025-12-31T21:19:25Z", "level": "INFO", "message": "Processing: TAYLOR SWIFT THE ERAS TOUR (2023) x265 EAC3 5.1 WEBRip-1080p GalaxyRG265.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": "Copied TAYLOR SWIFT THE ERAS TOUR (2023) x265 EAC3 5.1 WEBRip-1080p GalaxyRG265.mkv → TAYLOR SWIFT THE ERAS TOUR (2023) x265 EAC3 5.1 WEBRip-1080p GalaxyRG265.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": "Source resolution detected: 1920x800", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": "Source 1920x800 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": "Source 1920x800 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T21:20:19Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\TAYLOR SWIFT THE ERAS TOUR (2023) x265 EAC3 5.1 WEBRip-1080p GalaxyRG265.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpnu76s_fj.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 384 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": " • Source Resolution: 1920x800", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": " • Target Resolution: 1920x800", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 384kbps | Action: ENCODE | Target: 384kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T21:20:19Z", "level": "INFO", "message": "Running CQ encode: TAYLOR SWIFT THE ERAS TOUR (2023) x265 EAC3 5.1 WEBRip-1080p GalaxyRG265 - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T21:40:05Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T21:40:05Z", "level": "INFO", "message": " Original Size: 6003.37 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T21:40:05Z", "level": "INFO", "message": " Encoded Size: 5010.96 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T21:40:05Z", "level": "INFO", "message": " Reduction: 83.5% of original (16.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T21:40:05Z", "level": "INFO", "message": " Resolution: 1920x800 → 1920x800", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T21:40:05Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T21:40:07Z", "level": "INFO", "message": "Batch processing complete", "module": "process_manager", "funcName": "process_folder", "line": 336} +{"timestamp": "2025-12-31T21:40:07Z", "level": "INFO", "message": "Using path as-is: P:\\movies\\Ferris Bueller's Day Off (1986)", "module": "main", "funcName": "normalize_input_path", "line": 49} +{"timestamp": "2025-12-31T21:40:07Z", "level": "INFO", "message": "Processing: Ferris Bueller's Day Off (1986) x265 AAC 5.1 Bluray-1080p r00t.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T21:40:53Z", "level": "INFO", "message": "Copied Ferris Bueller's Day Off (1986) x265 AAC 5.1 Bluray-1080p r00t.mkv → Ferris Bueller's Day Off (1986) x265 AAC 5.1 Bluray-1080p r00t.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T21:40:53Z", "level": "INFO", "message": "Source resolution detected: 1920x816", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T21:40:53Z", "level": "INFO", "message": "Source 1920x816 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T21:40:53Z", "level": "INFO", "message": "Source 1920x816 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T21:41:04Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T21:41:04Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T21:41:04Z", "level": "INFO", "message": " • Source Resolution: 1920x816", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T21:41:04Z", "level": "INFO", "message": " • Target Resolution: 1920x816", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T21:41:04Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T21:41:04Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T21:41:04Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T21:41:04Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T21:41:04Z", "level": "INFO", "message": " Audio Streams (3 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T21:41:04Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 505kbps | Action: ENCODE | Target: 448kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T21:41:04Z", "level": "INFO", "message": " - Stream #2: 2ch→2ch | Lang: und | Detected: 80kbps | Action: COPY (preserve) | Target: 80kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T21:41:04Z", "level": "INFO", "message": " - Stream #3: 2ch→2ch | Lang: und | Detected: 79kbps | Action: COPY (preserve) | Target: 79kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T21:41:04Z", "level": "INFO", "message": "Running CQ encode: Ferris Bueller's Day Off (1986) x265 AAC 5.1 Bluray-1080p r00t - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T21:56:52Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T21:56:52Z", "level": "INFO", "message": " Original Size: 5225.63 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T21:56:52Z", "level": "INFO", "message": " Encoded Size: 3147.46 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T21:56:52Z", "level": "INFO", "message": " Reduction: 60.2% of original (39.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T21:56:52Z", "level": "INFO", "message": " Resolution: 1920x816 → 1920x816", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T21:56:52Z", "level": "INFO", "message": " Audio Streams: 3 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T21:57:21Z", "level": "INFO", "message": "Moved Ferris Bueller's Day Off (1986) x265 AAC 5.1 Bluray-1080p r00t - [EHX].mkv → Ferris Bueller's Day Off (1986) x265 AAC 5.1 Bluray-1080p r00t - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T21:57:31Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Ferris Bueller's Day Off (1986) x265 AAC 5.1 Bluray-1080p r00t - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T21:57:31Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T21:57:31Z", "level": "INFO", "message": " Size: 5225.63MB → 3147.46MB (60.2% of original, 39.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T21:57:31Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T21:57:32Z", "level": "INFO", "message": "Deleted original and processing copy for Ferris Bueller's Day Off (1986) x265 AAC 5.1 Bluray-1080p r00t.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T21:57:32Z", "level": "INFO", "message": "Processing: Getting the Class Together - The Cast of Ferris Bueller’s Day Off.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T21:57:34Z", "level": "INFO", "message": "Copied Getting the Class Together - The Cast of Ferris Bueller’s Day Off.mkv → Getting the Class Together - The Cast of Ferris Bueller’s Day Off.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T21:57:34Z", "level": "INFO", "message": "Source resolution detected: 720x480", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T21:57:34Z", "level": "INFO", "message": "Source 720x480 (<=720p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 65} +{"timestamp": "2025-12-31T21:57:34Z", "level": "INFO", "message": "Source 720x480 (<=720p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 124} +{"timestamp": "2025-12-31T21:57:35Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T21:57:35Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T21:57:35Z", "level": "INFO", "message": " • Source Resolution: 720x480", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T21:57:35Z", "level": "INFO", "message": " • Target Resolution: 720x480", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T21:57:35Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T21:57:35Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T21:57:35Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T21:57:35Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T21:57:35Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T21:57:35Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T21:57:35Z", "level": "INFO", "message": "Running CQ encode: Getting the Class Together - The Cast of Ferris Bueller’s Day Off - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T21:58:50Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T21:58:50Z", "level": "INFO", "message": " Original Size: 284.54 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T21:58:50Z", "level": "INFO", "message": " Encoded Size: 141.45 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T21:58:50Z", "level": "INFO", "message": " Reduction: 49.7% of original (50.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T21:58:50Z", "level": "INFO", "message": " Resolution: 720x480 → 720x480", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T21:58:50Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T21:58:51Z", "level": "INFO", "message": "Moved Getting the Class Together - The Cast of Ferris Bueller’s Day Off - [EHX].mkv → Getting the Class Together - The Cast of Ferris Bueller’s Day Off - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T21:58:52Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Getting the Class Together - The Cast of Ferris Bueller’s Day Off - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T21:58:52Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T21:58:52Z", "level": "INFO", "message": " Size: 284.54MB → 141.45MB (49.7% of original, 50.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T21:58:52Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T21:58:52Z", "level": "INFO", "message": "Deleted original and processing copy for Getting the Class Together - The Cast of Ferris Bueller’s Day Off.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T21:58:52Z", "level": "INFO", "message": "Processing: The Making of Ferris Bueller's Day Off.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T21:58:54Z", "level": "INFO", "message": "Copied The Making of Ferris Bueller's Day Off.mkv → The Making of Ferris Bueller's Day Off.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T21:58:54Z", "level": "INFO", "message": "Source resolution detected: 720x480", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T21:58:54Z", "level": "INFO", "message": "Source 720x480 (<=720p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 65} +{"timestamp": "2025-12-31T21:58:54Z", "level": "INFO", "message": "Source 720x480 (<=720p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 124} +{"timestamp": "2025-12-31T21:58:54Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T21:58:54Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T21:58:54Z", "level": "INFO", "message": " • Source Resolution: 720x480", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T21:58:54Z", "level": "INFO", "message": " • Target Resolution: 720x480", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T21:58:54Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T21:58:54Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T21:58:54Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T21:58:54Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T21:58:54Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T21:58:54Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T21:58:54Z", "level": "INFO", "message": "Running CQ encode: The Making of Ferris Bueller's Day Off - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T21:59:33Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T21:59:33Z", "level": "INFO", "message": " Original Size: 159.01 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T21:59:33Z", "level": "INFO", "message": " Encoded Size: 89.99 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T21:59:33Z", "level": "INFO", "message": " Reduction: 56.6% of original (43.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T21:59:33Z", "level": "INFO", "message": " Resolution: 720x480 → 720x480", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T21:59:33Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T21:59:34Z", "level": "INFO", "message": "Moved The Making of Ferris Bueller's Day Off - [EHX].mkv → The Making of Ferris Bueller's Day Off - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T21:59:34Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: The Making of Ferris Bueller's Day Off - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T21:59:34Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T21:59:34Z", "level": "INFO", "message": " Size: 159.01MB → 89.99MB (56.6% of original, 43.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T21:59:34Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T21:59:34Z", "level": "INFO", "message": "Deleted original and processing copy for The Making of Ferris Bueller's Day Off.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T21:59:34Z", "level": "INFO", "message": "Processing: The World According to Ben Stein.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T21:59:35Z", "level": "INFO", "message": "Copied The World According to Ben Stein.mkv → The World According to Ben Stein.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T21:59:35Z", "level": "INFO", "message": "Source resolution detected: 720x480", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T21:59:35Z", "level": "INFO", "message": "Source 720x480 (<=720p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 65} +{"timestamp": "2025-12-31T21:59:35Z", "level": "INFO", "message": "Source 720x480 (<=720p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 124} +{"timestamp": "2025-12-31T21:59:36Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T21:59:36Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T21:59:36Z", "level": "INFO", "message": " • Source Resolution: 720x480", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T21:59:36Z", "level": "INFO", "message": " • Target Resolution: 720x480", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T21:59:36Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T21:59:36Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T21:59:36Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T21:59:36Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T21:59:36Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T21:59:36Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T21:59:36Z", "level": "INFO", "message": "Running CQ encode: The World According to Ben Stein - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T22:00:06Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T22:00:06Z", "level": "INFO", "message": " Original Size: 111.41 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T22:00:06Z", "level": "INFO", "message": " Encoded Size: 44.35 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T22:00:06Z", "level": "INFO", "message": " Reduction: 39.8% of original (60.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T22:00:06Z", "level": "INFO", "message": " Resolution: 720x480 → 720x480", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T22:00:06Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T22:00:06Z", "level": "INFO", "message": "Moved The World According to Ben Stein - [EHX].mkv → The World According to Ben Stein - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T22:00:06Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: The World According to Ben Stein - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T22:00:06Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T22:00:06Z", "level": "INFO", "message": " Size: 111.41MB → 44.35MB (39.8% of original, 60.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T22:00:06Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T22:00:06Z", "level": "INFO", "message": "Deleted original and processing copy for The World According to Ben Stein.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T22:00:06Z", "level": "INFO", "message": "Processing: Vintage Ferris Bueller - The Lost Tapes.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T22:00:09Z", "level": "INFO", "message": "Copied Vintage Ferris Bueller - The Lost Tapes.mkv → Vintage Ferris Bueller - The Lost Tapes.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T22:00:09Z", "level": "INFO", "message": "Source resolution detected: 720x480", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T22:00:09Z", "level": "INFO", "message": "Source 720x480 (<=720p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 65} +{"timestamp": "2025-12-31T22:00:09Z", "level": "INFO", "message": "Source 720x480 (<=720p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 124} +{"timestamp": "2025-12-31T22:00:09Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T22:00:09Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T22:00:09Z", "level": "INFO", "message": " • Source Resolution: 720x480", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T22:00:09Z", "level": "INFO", "message": " • Target Resolution: 720x480", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T22:00:09Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T22:00:09Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T22:00:09Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T22:00:09Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T22:00:09Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T22:00:09Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T22:00:09Z", "level": "INFO", "message": "Running CQ encode: Vintage Ferris Bueller - The Lost Tapes - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T22:00:40Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T22:00:40Z", "level": "INFO", "message": " Original Size: 105.03 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T22:00:40Z", "level": "INFO", "message": " Encoded Size: 57.20 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T22:00:40Z", "level": "INFO", "message": " Reduction: 54.5% of original (45.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T22:00:40Z", "level": "INFO", "message": " Resolution: 720x480 → 720x480", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T22:00:40Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T22:00:41Z", "level": "INFO", "message": "Moved Vintage Ferris Bueller - The Lost Tapes - [EHX].mkv → Vintage Ferris Bueller - The Lost Tapes - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T22:00:41Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Vintage Ferris Bueller - The Lost Tapes - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T22:00:41Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T22:00:41Z", "level": "INFO", "message": " Size: 105.03MB → 57.2MB (54.5% of original, 45.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T22:00:41Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T22:00:41Z", "level": "INFO", "message": "Deleted original and processing copy for Vintage Ferris Bueller - The Lost Tapes.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T22:00:41Z", "level": "INFO", "message": "Processing: Who is Ferris Bueller.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T22:00:42Z", "level": "INFO", "message": "Copied Who is Ferris Bueller.mkv → Who is Ferris Bueller.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T22:00:42Z", "level": "INFO", "message": "Source resolution detected: 720x480", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T22:00:42Z", "level": "INFO", "message": "Source 720x480 (<=720p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 65} +{"timestamp": "2025-12-31T22:00:42Z", "level": "INFO", "message": "Source 720x480 (<=720p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 124} +{"timestamp": "2025-12-31T22:00:42Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T22:00:42Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T22:00:42Z", "level": "INFO", "message": " • Source Resolution: 720x480", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T22:00:42Z", "level": "INFO", "message": " • Target Resolution: 720x480", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T22:00:42Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T22:00:42Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T22:00:42Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T22:00:42Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T22:00:42Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T22:00:42Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T22:00:42Z", "level": "INFO", "message": "Running CQ encode: Who is Ferris Bueller - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T22:01:08Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T22:01:08Z", "level": "INFO", "message": " Original Size: 94.64 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T22:01:08Z", "level": "INFO", "message": " Encoded Size: 53.06 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T22:01:08Z", "level": "INFO", "message": " Reduction: 56.1% of original (43.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T22:01:08Z", "level": "INFO", "message": " Resolution: 720x480 → 720x480", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T22:01:08Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T22:01:08Z", "level": "INFO", "message": "Moved Who is Ferris Bueller - [EHX].mkv → Who is Ferris Bueller - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T22:01:09Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Who is Ferris Bueller - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T22:01:09Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T22:01:09Z", "level": "INFO", "message": " Size: 94.64MB → 53.06MB (56.1% of original, 43.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T22:01:09Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T22:01:09Z", "level": "INFO", "message": "Deleted original and processing copy for Who is Ferris Bueller.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T22:01:09Z", "level": "INFO", "message": "Batch processing complete", "module": "process_manager", "funcName": "process_folder", "line": 336} +{"timestamp": "2025-12-31T22:01:09Z", "level": "INFO", "message": "Using path as-is: P:\\movies\\The Baker (2023)", "module": "main", "funcName": "normalize_input_path", "line": 49} +{"timestamp": "2025-12-31T22:01:09Z", "level": "INFO", "message": "Processing: The.Baker.2022.1080p.WEB-DL.DDP5.1.H.264-EniaHD.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T22:01:57Z", "level": "INFO", "message": "Copied The.Baker.2022.1080p.WEB-DL.DDP5.1.H.264-EniaHD.mkv → The.Baker.2022.1080p.WEB-DL.DDP5.1.H.264-EniaHD.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T22:01:57Z", "level": "INFO", "message": "Source resolution detected: 1920x802", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T22:01:57Z", "level": "INFO", "message": "Using explicitly specified resolution: 1280x720", "module": "process_manager", "funcName": "process_folder", "line": 117} +{"timestamp": "2025-12-31T22:01:57Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\The.Baker.2022.1080p.WEB-DL.DDP5.1.H.264-EniaHD.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp2f9551ca.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2025-12-31T22:01:57Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 448 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2025-12-31T22:01:57Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 1: Command '['ffmpeg', '-y', '-i', 'processing\\\\The.Baker.2022.1080p.WEB-DL.DDP5.1.H.264-EniaHD.mkv', '-map', '0:a:1', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmplqnghspk.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2025-12-31T22:01:57Z", "level": "INFO", "message": "Stream 2: Using fallback bitrate 448 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2025-12-31T22:01:58Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 2: Command '['ffmpeg', '-y', '-i', 'processing\\\\The.Baker.2022.1080p.WEB-DL.DDP5.1.H.264-EniaHD.mkv', '-map', '0:a:2', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp0n4cieyy.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2025-12-31T22:01:58Z", "level": "INFO", "message": "Stream 3: Using fallback bitrate 448 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2025-12-31T22:01:58Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T22:01:58Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T22:01:58Z", "level": "INFO", "message": " • Source Resolution: 1920x802", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T22:01:58Z", "level": "INFO", "message": " • Target Resolution: 1280x720", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T22:01:58Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T22:01:58Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T22:01:58Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T22:01:58Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T22:01:58Z", "level": "INFO", "message": " Audio Streams (3 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T22:01:58Z", "level": "INFO", "message": " - Stream #1: 6ch→2ch | Lang: und | Detected: 448kbps | Action: ENCODE | Target: 160kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T22:01:58Z", "level": "INFO", "message": " - Stream #2: 6ch→2ch | Lang: und | Detected: 448kbps | Action: ENCODE | Target: 160kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T22:01:58Z", "level": "INFO", "message": " - Stream #3: 6ch→2ch | Lang: und | Detected: 448kbps | Action: ENCODE | Target: 160kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T22:01:58Z", "level": "INFO", "message": "Running CQ encode: The.Baker.2022.1080p.WEB-DL.DDP5.1.H.264-EniaHD - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T22:09:01Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T22:09:01Z", "level": "INFO", "message": " Original Size: 5497.79 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T22:09:01Z", "level": "INFO", "message": " Encoded Size: 816.56 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T22:09:01Z", "level": "INFO", "message": " Reduction: 14.9% of original (85.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T22:09:01Z", "level": "INFO", "message": " Resolution: 1920x802 → 1280x720", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T22:09:01Z", "level": "INFO", "message": " Audio Streams: 3 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T22:09:08Z", "level": "INFO", "message": "Moved The.Baker.2022.1080p.WEB-DL.DDP5.1.H.264-EniaHD - [EHX].mkv → The.Baker.2022.1080p.WEB-DL.DDP5.1.H.264-EniaHD - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T22:09:09Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\The.Baker.2022.1080p.WEB-DL.DDP5.1.H.264-EniaHD.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpc9t9rdpb.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2025-12-31T22:09:09Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 448 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2025-12-31T22:09:09Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 1: Command '['ffmpeg', '-y', '-i', 'processing\\\\The.Baker.2022.1080p.WEB-DL.DDP5.1.H.264-EniaHD.mkv', '-map', '0:a:1', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpch7p_d2q.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2025-12-31T22:09:09Z", "level": "INFO", "message": "Stream 2: Using fallback bitrate 448 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2025-12-31T22:09:09Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 2: Command '['ffmpeg', '-y', '-i', 'processing\\\\The.Baker.2022.1080p.WEB-DL.DDP5.1.H.264-EniaHD.mkv', '-map', '0:a:2', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpkk6d3nzd.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2025-12-31T22:09:09Z", "level": "INFO", "message": "Stream 3: Using fallback bitrate 448 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2025-12-31T22:09:09Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: The.Baker.2022.1080p.WEB-DL.DDP5.1.H.264-EniaHD - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T22:09:09Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T22:09:09Z", "level": "INFO", "message": " Size: 5497.79MB → 816.56MB (14.9% of original, 85.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T22:09:09Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T22:09:10Z", "level": "INFO", "message": "Deleted original and processing copy for The.Baker.2022.1080p.WEB-DL.DDP5.1.H.264-EniaHD.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T22:09:10Z", "level": "INFO", "message": "Batch processing complete", "module": "process_manager", "funcName": "process_folder", "line": 336} +{"timestamp": "2025-12-31T22:09:10Z", "level": "INFO", "message": "Using path as-is: P:\\movies\\The Losers (2010)", "module": "main", "funcName": "normalize_input_path", "line": 49} +{"timestamp": "2025-12-31T22:09:10Z", "level": "INFO", "message": "Processing: The Losers (2010) h264 EAC3 5.1 WEBDL-1080p PiRaTeS.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": "Copied The Losers (2010) h264 EAC3 5.1 WEBDL-1080p PiRaTeS.mkv → The Losers (2010) h264 EAC3 5.1 WEBDL-1080p PiRaTeS.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T22:09:56Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\The Losers (2010) h264 EAC3 5.1 WEBDL-1080p PiRaTeS.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpofkeakjf.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: ENCODE | Target: 384kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T22:09:56Z", "level": "INFO", "message": "Running CQ encode: The Losers (2010) h264 EAC3 5.1 WEBDL-1080p PiRaTeS - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T22:19:39Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T22:19:39Z", "level": "INFO", "message": " Original Size: 5151.11 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T22:19:39Z", "level": "INFO", "message": " Encoded Size: 2964.76 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T22:19:39Z", "level": "INFO", "message": " Reduction: 57.6% of original (42.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T22:19:39Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T22:19:39Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T22:20:04Z", "level": "INFO", "message": "Moved The Losers (2010) h264 EAC3 5.1 WEBDL-1080p PiRaTeS - [EHX].mkv → The Losers (2010) h264 EAC3 5.1 WEBDL-1080p PiRaTeS - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T22:20:05Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\The Losers (2010) h264 EAC3 5.1 WEBDL-1080p PiRaTeS.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpju6o3jp7.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2025-12-31T22:20:05Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2025-12-31T22:20:05Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: The Losers (2010) h264 EAC3 5.1 WEBDL-1080p PiRaTeS - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T22:20:05Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T22:20:05Z", "level": "INFO", "message": " Size: 5151.11MB → 2964.76MB (57.6% of original, 42.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T22:20:05Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T22:20:06Z", "level": "INFO", "message": "Deleted original and processing copy for The Losers (2010) h264 EAC3 5.1 WEBDL-1080p PiRaTeS.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T22:20:06Z", "level": "INFO", "message": "Batch processing complete", "module": "process_manager", "funcName": "process_folder", "line": 336} +{"timestamp": "2025-12-31T22:20:06Z", "level": "INFO", "message": "Using path as-is: P:\\movies\\Violent Night (2022)", "module": "main", "funcName": "normalize_input_path", "line": 49} +{"timestamp": "2025-12-31T22:20:06Z", "level": "INFO", "message": "Processing: Violent Night (2022) x265 AAC 7.1 Bluray-1080p Tigole.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T22:20:54Z", "level": "INFO", "message": "Copied Violent Night (2022) x265 AAC 7.1 Bluray-1080p Tigole.mkv → Violent Night (2022) x265 AAC 7.1 Bluray-1080p Tigole.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T22:20:54Z", "level": "INFO", "message": "Source resolution detected: 1920x804", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T22:20:54Z", "level": "INFO", "message": "Source 1920x804 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T22:20:54Z", "level": "INFO", "message": "Source 1920x804 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T22:21:02Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T22:21:02Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T22:21:02Z", "level": "INFO", "message": " • Source Resolution: 1920x804", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T22:21:02Z", "level": "INFO", "message": " • Target Resolution: 1920x804", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T22:21:02Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T22:21:02Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T22:21:02Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T22:21:02Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T22:21:02Z", "level": "INFO", "message": " Audio Streams (2 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T22:21:02Z", "level": "INFO", "message": " - Stream #1: 8ch→6ch | Lang: und | Detected: 553kbps | Action: ENCODE | Target: 448kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T22:21:02Z", "level": "INFO", "message": " - Stream #2: 2ch→2ch | Lang: und | Detected: 67kbps | Action: COPY (preserve) | Target: 67kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T22:21:02Z", "level": "INFO", "message": "Running CQ encode: Violent Night (2022) x265 AAC 7.1 Bluray-1080p Tigole - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T22:33:31Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T22:33:31Z", "level": "INFO", "message": " Original Size: 5106.24 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T22:33:31Z", "level": "INFO", "message": " Encoded Size: 1906.91 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T22:33:31Z", "level": "INFO", "message": " Reduction: 37.3% of original (62.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T22:33:31Z", "level": "INFO", "message": " Resolution: 1920x804 → 1920x804", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T22:33:31Z", "level": "INFO", "message": " Audio Streams: 2 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T22:33:48Z", "level": "INFO", "message": "Moved Violent Night (2022) x265 AAC 7.1 Bluray-1080p Tigole - [EHX].mkv → Violent Night (2022) x265 AAC 7.1 Bluray-1080p Tigole - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T22:33:55Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Violent Night (2022) x265 AAC 7.1 Bluray-1080p Tigole - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T22:33:55Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T22:33:55Z", "level": "INFO", "message": " Size: 5106.24MB → 1906.91MB (37.3% of original, 62.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T22:33:55Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T22:33:56Z", "level": "INFO", "message": "Deleted original and processing copy for Violent Night (2022) x265 AAC 7.1 Bluray-1080p Tigole.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T22:33:56Z", "level": "INFO", "message": "Batch processing complete", "module": "process_manager", "funcName": "process_folder", "line": 336} +{"timestamp": "2025-12-31T22:33:57Z", "level": "INFO", "message": "Using path as-is: P:\\movies\\Scott Pilgrim vs. the World (2010)", "module": "main", "funcName": "normalize_input_path", "line": 49} +{"timestamp": "2025-12-31T22:33:57Z", "level": "INFO", "message": "Processing: Scott Pilgrim vs. the World (2010) x265 AAC 5.1 Bluray-1080p afm72.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T22:34:40Z", "level": "INFO", "message": "Copied Scott Pilgrim vs. the World (2010) x265 AAC 5.1 Bluray-1080p afm72.mkv → Scott Pilgrim vs. the World (2010) x265 AAC 5.1 Bluray-1080p afm72.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T22:34:41Z", "level": "INFO", "message": "Source resolution detected: 1920x1040", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T22:34:41Z", "level": "INFO", "message": "Source 1920x1040 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T22:34:41Z", "level": "INFO", "message": "Source 1920x1040 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T22:34:57Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T22:34:57Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T22:34:57Z", "level": "INFO", "message": " • Source Resolution: 1920x1040", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T22:34:57Z", "level": "INFO", "message": " • Target Resolution: 1920x1040", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T22:34:57Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T22:34:57Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T22:34:57Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T22:34:57Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T22:34:57Z", "level": "INFO", "message": " Audio Streams (5 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T22:34:57Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 464kbps | Action: ENCODE | Target: 448kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T22:34:57Z", "level": "INFO", "message": " - Stream #2: 2ch→2ch | Lang: und | Detected: 80kbps | Action: COPY (preserve) | Target: 80kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T22:34:57Z", "level": "INFO", "message": " - Stream #3: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T22:34:57Z", "level": "INFO", "message": " - Stream #4: 2ch→2ch | Lang: und | Detected: 80kbps | Action: COPY (preserve) | Target: 80kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T22:34:57Z", "level": "INFO", "message": " - Stream #5: 2ch→2ch | Lang: und | Detected: 79kbps | Action: COPY (preserve) | Target: 79kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T22:34:57Z", "level": "INFO", "message": "Running CQ encode: Scott Pilgrim vs. the World (2010) x265 AAC 5.1 Bluray-1080p afm72 - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T22:49:32Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T22:49:32Z", "level": "INFO", "message": " Original Size: 5104.23 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T22:49:32Z", "level": "INFO", "message": " Encoded Size: 2890.73 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T22:49:32Z", "level": "INFO", "message": " Reduction: 56.6% of original (43.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T22:49:32Z", "level": "INFO", "message": " Resolution: 1920x1040 → 1920x1040", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T22:49:32Z", "level": "INFO", "message": " Audio Streams: 5 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T22:49:58Z", "level": "INFO", "message": "Moved Scott Pilgrim vs. the World (2010) x265 AAC 5.1 Bluray-1080p afm72 - [EHX].mkv → Scott Pilgrim vs. the World (2010) x265 AAC 5.1 Bluray-1080p afm72 - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T22:50:15Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Scott Pilgrim vs. the World (2010) x265 AAC 5.1 Bluray-1080p afm72 - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T22:50:15Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T22:50:15Z", "level": "INFO", "message": " Size: 5104.23MB → 2890.73MB (56.6% of original, 43.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T22:50:15Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T22:50:15Z", "level": "INFO", "message": "Deleted original and processing copy for Scott Pilgrim vs. the World (2010) x265 AAC 5.1 Bluray-1080p afm72.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T22:50:15Z", "level": "INFO", "message": "Batch processing complete", "module": "process_manager", "funcName": "process_folder", "line": 336} +{"timestamp": "2025-12-31T22:50:16Z", "level": "INFO", "message": "Using path as-is: P:\\movies\\Small Soldiers (1998)", "module": "main", "funcName": "normalize_input_path", "line": 49} +{"timestamp": "2025-12-31T22:50:16Z", "level": "INFO", "message": "Processing: Small Soldiers (1998) x265 AAC 5.1 Bluray-1080p FreetheFish.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T22:50:56Z", "level": "INFO", "message": "Copied Small Soldiers (1998) x265 AAC 5.1 Bluray-1080p FreetheFish.mkv → Small Soldiers (1998) x265 AAC 5.1 Bluray-1080p FreetheFish.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T22:50:56Z", "level": "INFO", "message": "Source resolution detected: 1920x816", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T22:50:56Z", "level": "INFO", "message": "Source 1920x816 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T22:50:56Z", "level": "INFO", "message": "Source 1920x816 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T22:51:03Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T22:51:03Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T22:51:03Z", "level": "INFO", "message": " • Source Resolution: 1920x816", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T22:51:03Z", "level": "INFO", "message": " • Target Resolution: 1920x816", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T22:51:03Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T22:51:03Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T22:51:03Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T22:51:03Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T22:51:03Z", "level": "INFO", "message": " Audio Streams (2 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T22:51:03Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 610kbps | Action: ENCODE | Target: 448kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T22:51:03Z", "level": "INFO", "message": " - Stream #2: 6ch→6ch | Lang: und | Detected: 192kbps | Action: ENCODE | Target: 384kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T22:51:03Z", "level": "INFO", "message": "Running CQ encode: Small Soldiers (1998) x265 AAC 5.1 Bluray-1080p FreetheFish - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T23:08:06Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T23:08:06Z", "level": "INFO", "message": " Original Size: 4607.73 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T23:08:06Z", "level": "INFO", "message": " Encoded Size: 2738.43 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T23:08:06Z", "level": "INFO", "message": " Reduction: 59.4% of original (40.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T23:08:06Z", "level": "INFO", "message": " Resolution: 1920x816 → 1920x816", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T23:08:06Z", "level": "INFO", "message": " Audio Streams: 2 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T23:08:30Z", "level": "INFO", "message": "Moved Small Soldiers (1998) x265 AAC 5.1 Bluray-1080p FreetheFish - [EHX].mkv → Small Soldiers (1998) x265 AAC 5.1 Bluray-1080p FreetheFish - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T23:08:37Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Small Soldiers (1998) x265 AAC 5.1 Bluray-1080p FreetheFish - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T23:08:37Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T23:08:37Z", "level": "INFO", "message": " Size: 4607.73MB → 2738.43MB (59.4% of original, 40.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T23:08:37Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T23:08:38Z", "level": "INFO", "message": "Deleted original and processing copy for Small Soldiers (1998) x265 AAC 5.1 Bluray-1080p FreetheFish.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T23:08:38Z", "level": "INFO", "message": "Processing: Bloopers.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T23:08:38Z", "level": "INFO", "message": "Copied Bloopers.mkv → Bloopers.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T23:08:38Z", "level": "INFO", "message": "Source resolution detected: 704x328", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T23:08:38Z", "level": "INFO", "message": "Source 704x328 (<=720p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 65} +{"timestamp": "2025-12-31T23:08:38Z", "level": "INFO", "message": "Source 704x328 (<=720p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 124} +{"timestamp": "2025-12-31T23:08:39Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T23:08:39Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T23:08:39Z", "level": "INFO", "message": " • Source Resolution: 704x328", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T23:08:39Z", "level": "INFO", "message": " • Target Resolution: 704x328", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T23:08:39Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T23:08:39Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T23:08:39Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T23:08:39Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T23:08:39Z", "level": "INFO", "message": " Audio Streams (2 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T23:08:39Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T23:08:39Z", "level": "INFO", "message": " - Stream #2: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T23:08:39Z", "level": "INFO", "message": "Running CQ encode: Bloopers - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T23:08:50Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T23:08:50Z", "level": "INFO", "message": " Original Size: 61.58 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T23:08:50Z", "level": "INFO", "message": " Encoded Size: 19.48 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T23:08:50Z", "level": "INFO", "message": " Reduction: 31.6% of original (68.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T23:08:50Z", "level": "INFO", "message": " Resolution: 704x328 → 704x328", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T23:08:50Z", "level": "INFO", "message": " Audio Streams: 2 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T23:08:51Z", "level": "INFO", "message": "Moved Bloopers - [EHX].mkv → Bloopers - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T23:08:51Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Bloopers - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T23:08:51Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T23:08:51Z", "level": "INFO", "message": " Size: 61.58MB → 19.48MB (31.6% of original, 68.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T23:08:51Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T23:08:51Z", "level": "INFO", "message": "Deleted original and processing copy for Bloopers.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T23:08:51Z", "level": "INFO", "message": "Processing: Deleted Scenes.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": "Copied Deleted Scenes.mkv → Deleted Scenes.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": "Source resolution detected: 704x328", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": "Source 704x328 (<=720p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 65} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": "Source 704x328 (<=720p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 124} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": " • Source Resolution: 704x328", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": " • Target Resolution: 704x328", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": " Audio Streams (2 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": " - Stream #2: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T23:08:52Z", "level": "INFO", "message": "Running CQ encode: Deleted Scenes - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T23:09:07Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T23:09:07Z", "level": "INFO", "message": " Original Size: 77.84 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T23:09:07Z", "level": "INFO", "message": " Encoded Size: 26.06 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T23:09:07Z", "level": "INFO", "message": " Reduction: 33.5% of original (66.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T23:09:07Z", "level": "INFO", "message": " Resolution: 704x328 → 704x328", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T23:09:07Z", "level": "INFO", "message": " Audio Streams: 2 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T23:09:08Z", "level": "INFO", "message": "Moved Deleted Scenes - [EHX].mkv → Deleted Scenes - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T23:09:08Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Deleted Scenes - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T23:09:08Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T23:09:08Z", "level": "INFO", "message": " Size: 77.84MB → 26.06MB (33.5% of original, 66.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T23:09:08Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T23:09:08Z", "level": "INFO", "message": "Deleted original and processing copy for Deleted Scenes.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T23:09:08Z", "level": "INFO", "message": "Processing: German Theatrical Trailer.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T23:09:08Z", "level": "INFO", "message": "Copied German Theatrical Trailer.mkv → German Theatrical Trailer.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T23:09:08Z", "level": "INFO", "message": "Source resolution detected: 704x568", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T23:09:08Z", "level": "INFO", "message": "Source 704x568 (<=720p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 65} +{"timestamp": "2025-12-31T23:09:08Z", "level": "INFO", "message": "Source 704x568 (<=720p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 124} +{"timestamp": "2025-12-31T23:09:09Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T23:09:09Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T23:09:09Z", "level": "INFO", "message": " • Source Resolution: 704x568", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T23:09:09Z", "level": "INFO", "message": " • Target Resolution: 704x568", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T23:09:09Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T23:09:09Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T23:09:09Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T23:09:09Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T23:09:09Z", "level": "INFO", "message": " Audio Streams (2 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T23:09:09Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T23:09:09Z", "level": "INFO", "message": " - Stream #2: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T23:09:09Z", "level": "INFO", "message": "Running CQ encode: German Theatrical Trailer - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T23:09:12Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T23:09:12Z", "level": "INFO", "message": " Original Size: 22.08 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T23:09:12Z", "level": "INFO", "message": " Encoded Size: 13.79 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T23:09:12Z", "level": "INFO", "message": " Reduction: 62.4% of original (37.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T23:09:12Z", "level": "INFO", "message": " Resolution: 704x568 → 704x568", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T23:09:12Z", "level": "INFO", "message": " Audio Streams: 2 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T23:09:12Z", "level": "INFO", "message": "Moved German Theatrical Trailer - [EHX].mkv → German Theatrical Trailer - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T23:09:13Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: German Theatrical Trailer - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T23:09:13Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T23:09:13Z", "level": "INFO", "message": " Size: 22.08MB → 13.79MB (62.5% of original, 37.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T23:09:13Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T23:09:13Z", "level": "INFO", "message": "Deleted original and processing copy for German Theatrical Trailer.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T23:09:13Z", "level": "INFO", "message": "Processing: Interview with director Joe Dante.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T23:09:14Z", "level": "INFO", "message": "Copied Interview with director Joe Dante.mkv → Interview with director Joe Dante.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T23:09:14Z", "level": "INFO", "message": "Source resolution detected: 1752x1024", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T23:09:14Z", "level": "INFO", "message": "Source 1752x1024 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T23:09:14Z", "level": "INFO", "message": "Source 1752x1024 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T23:09:15Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T23:09:15Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T23:09:15Z", "level": "INFO", "message": " • Source Resolution: 1752x1024", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T23:09:15Z", "level": "INFO", "message": " • Target Resolution: 1752x1024", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T23:09:15Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T23:09:15Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T23:09:15Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T23:09:15Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T23:09:15Z", "level": "INFO", "message": " Audio Streams (2 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T23:09:15Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T23:09:15Z", "level": "INFO", "message": " - Stream #2: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T23:09:15Z", "level": "INFO", "message": "Running CQ encode: Interview with director Joe Dante - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": " Original Size: 159.48 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": " Encoded Size: 156.00 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": " Reduction: 97.8% of original (2.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": " Resolution: 1752x1024 → 1752x1024", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": " Audio Streams: 2 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": "Processing: Introduction from director Joe Dante.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": "Copied Introduction from director Joe Dante.mkv → Introduction from director Joe Dante.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": "Source resolution detected: 1560x1008", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": "Source 1560x1008 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": "Source 1560x1008 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": " • Source Resolution: 1560x1008", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": " • Target Resolution: 1560x1008", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": " Audio Streams (2 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": " - Stream #2: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T23:10:24Z", "level": "INFO", "message": "Running CQ encode: Introduction from director Joe Dante - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T23:10:27Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T23:10:27Z", "level": "INFO", "message": " Original Size: 4.76 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T23:10:27Z", "level": "INFO", "message": " Encoded Size: 2.76 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T23:10:27Z", "level": "INFO", "message": " Reduction: 57.9% of original (42.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T23:10:27Z", "level": "INFO", "message": " Resolution: 1560x1008 → 1560x1008", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T23:10:27Z", "level": "INFO", "message": " Audio Streams: 2 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T23:10:27Z", "level": "INFO", "message": "Moved Introduction from director Joe Dante - [EHX].mkv → Introduction from director Joe Dante - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T23:10:27Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Introduction from director Joe Dante - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T23:10:27Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T23:10:27Z", "level": "INFO", "message": " Size: 4.76MB → 2.76MB (58.0% of original, 42.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T23:10:27Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T23:10:27Z", "level": "INFO", "message": "Deleted original and processing copy for Introduction from director Joe Dante.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T23:10:27Z", "level": "INFO", "message": "Processing: Making Of.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T23:10:28Z", "level": "INFO", "message": "Copied Making Of.mkv → Making Of.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T23:10:29Z", "level": "INFO", "message": "Source resolution detected: 696x560", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T23:10:29Z", "level": "INFO", "message": "Source 696x560 (<=720p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 65} +{"timestamp": "2025-12-31T23:10:29Z", "level": "INFO", "message": "Source 696x560 (<=720p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 124} +{"timestamp": "2025-12-31T23:10:29Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T23:10:29Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T23:10:29Z", "level": "INFO", "message": " • Source Resolution: 696x560", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T23:10:29Z", "level": "INFO", "message": " • Target Resolution: 696x560", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T23:10:29Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T23:10:29Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T23:10:29Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T23:10:29Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T23:10:29Z", "level": "INFO", "message": " Audio Streams (2 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T23:10:29Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T23:10:29Z", "level": "INFO", "message": " - Stream #2: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T23:10:29Z", "level": "INFO", "message": "Running CQ encode: Making Of - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T23:10:53Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T23:10:53Z", "level": "INFO", "message": " Original Size: 141.53 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T23:10:53Z", "level": "INFO", "message": " Encoded Size: 67.99 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T23:10:53Z", "level": "INFO", "message": " Reduction: 48.0% of original (52.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T23:10:53Z", "level": "INFO", "message": " Resolution: 696x560 → 696x560", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T23:10:53Z", "level": "INFO", "message": " Audio Streams: 2 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T23:10:54Z", "level": "INFO", "message": "Moved Making Of - [EHX].mkv → Making Of - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T23:10:54Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Making Of - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T23:10:54Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T23:10:54Z", "level": "INFO", "message": " Size: 141.53MB → 67.99MB (48.0% of original, 52.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T23:10:54Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T23:10:54Z", "level": "INFO", "message": "Deleted original and processing copy for Making Of.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T23:10:54Z", "level": "INFO", "message": "Processing: Theatrical Trailer.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2025-12-31T23:10:54Z", "level": "INFO", "message": "Copied Theatrical Trailer.mkv → Theatrical Trailer.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2025-12-31T23:10:54Z", "level": "INFO", "message": "Source resolution detected: 720x408", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2025-12-31T23:10:54Z", "level": "INFO", "message": "Source 720x408 (<=720p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 65} +{"timestamp": "2025-12-31T23:10:54Z", "level": "INFO", "message": "Source 720x408 (<=720p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 124} +{"timestamp": "2025-12-31T23:10:55Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2025-12-31T23:10:55Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2025-12-31T23:10:55Z", "level": "INFO", "message": " • Source Resolution: 720x408", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2025-12-31T23:10:55Z", "level": "INFO", "message": " • Target Resolution: 720x408", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2025-12-31T23:10:55Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2025-12-31T23:10:55Z", "level": "INFO", "message": " • Scale Filter: lanczos", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2025-12-31T23:10:55Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2025-12-31T23:10:55Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2025-12-31T23:10:55Z", "level": "INFO", "message": " Audio Streams (2 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2025-12-31T23:10:55Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T23:10:55Z", "level": "INFO", "message": " - Stream #2: 2ch→2ch | Lang: und | Detected: 81kbps | Action: COPY (preserve) | Target: 81kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2025-12-31T23:10:55Z", "level": "INFO", "message": "Running CQ encode: Theatrical Trailer - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2025-12-31T23:10:58Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2025-12-31T23:10:58Z", "level": "INFO", "message": " Original Size: 19.06 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2025-12-31T23:10:58Z", "level": "INFO", "message": " Encoded Size: 8.33 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2025-12-31T23:10:58Z", "level": "INFO", "message": " Reduction: 43.7% of original (56.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2025-12-31T23:10:58Z", "level": "INFO", "message": " Resolution: 720x408 → 720x408", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2025-12-31T23:10:58Z", "level": "INFO", "message": " Audio Streams: 2 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2025-12-31T23:10:58Z", "level": "INFO", "message": "Moved Theatrical Trailer - [EHX].mkv → Theatrical Trailer - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2025-12-31T23:10:59Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Theatrical Trailer - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2025-12-31T23:10:59Z", "level": "INFO", "message": " Type: MOVIE | Show: N/A", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2025-12-31T23:10:59Z", "level": "INFO", "message": " Size: 19.06MB → 8.33MB (43.7% of original, 56.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2025-12-31T23:10:59Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2025-12-31T23:10:59Z", "level": "INFO", "message": "Deleted original and processing copy for Theatrical Trailer.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2025-12-31T23:10:59Z", "level": "INFO", "message": "Batch processing complete", "module": "process_manager", "funcName": "process_folder", "line": 336} +{"timestamp": "2025-12-31T23:49:32Z", "level": "INFO", "message": "Added to paths.txt: --cq 22 \"[object Object]\"", "module": "api", "funcName": "add_folder", "line": 171} +{"timestamp": "2025-12-31T23:49:33Z", "level": "INFO", "message": "Removed from paths.txt: [object Object]", "module": "api", "funcName": "remove_folder", "line": 208} +{"timestamp": "2025-12-31T23:52:51Z", "level": "INFO", "message": "Added to paths.txt: --cq 22 \"P:\\movies\\Superman (2025)\"", "module": "api", "funcName": "add_folder", "line": 171} +{"timestamp": "2025-12-31T23:52:53Z", "level": "INFO", "message": "Removed from paths.txt: P:\\movies\\Superman (2025)", "module": "api", "funcName": "remove_folder", "line": 208} +{"timestamp": "2026-01-01T00:10:07Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Supernatural -> P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 41} +{"timestamp": "2026-01-01T00:10:07Z", "level": "INFO", "message": "Processing: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": "Copied Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:10:17Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmptmgq7hjt.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": " • CQ Value: 28", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: ENCODE | Target: 384kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:10:17Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:14:11Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Supernatural -> P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 41} +{"timestamp": "2026-01-01T00:14:11Z", "level": "INFO", "message": "Processing: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:14:21Z", "level": "INFO", "message": "Copied Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:14:21Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:14:21Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:14:21Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:14:22Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpju0uldqw.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:14:22Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:14:22Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:14:22Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:14:22Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:14:22Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:14:22Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:14:22Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:14:22Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:14:22Z", "level": "INFO", "message": " • CQ Value: 28", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:14:22Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:14:22Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:14:22Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:14:22Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:14:22Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:15:56Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:15:56Z", "level": "INFO", "message": " Original Size: 1194.05 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:15:56Z", "level": "INFO", "message": " Encoded Size: 1056.74 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:15:56Z", "level": "INFO", "message": " Reduction: 88.5% of original (11.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:15:56Z", "level": "INFO", "message": " Resolution: 1920x1072 → 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:15:56Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:15:56Z", "level": "INFO", "message": "Processing: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": "Copied Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:16:07Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpdsz69szm.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": " • CQ Value: 28", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:16:07Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:17:16Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Supernatural -> P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 41} +{"timestamp": "2026-01-01T00:17:16Z", "level": "INFO", "message": "Processing: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": "Copied Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:17:26Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpphetzxho.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": " • CQ Value: 35", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:17:26Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:19:11Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Supernatural -> P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 41} +{"timestamp": "2026-01-01T00:19:11Z", "level": "INFO", "message": "Processing: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": "Copied Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:19:22Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpnxntgh3_.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:19:22Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:21:14Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:21:14Z", "level": "INFO", "message": " Original Size: 1194.05 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:21:14Z", "level": "INFO", "message": " Encoded Size: 574.40 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:21:14Z", "level": "INFO", "message": " Reduction: 48.1% of original (51.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:21:14Z", "level": "INFO", "message": " Resolution: 1920x1072 → 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:21:14Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:21:19Z", "level": "INFO", "message": "Moved Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:21:19Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpck3824zd.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:21:19Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:21:19Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:21:19Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:21:19Z", "level": "INFO", "message": " Size: 1194.05MB → 574.4MB (48.1% of original, 51.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:21:19Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:21:19Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:21:19Z", "level": "INFO", "message": "Processing: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": "Copied Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:21:30Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpr_8i8p46.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:21:30Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:23:45Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:23:45Z", "level": "INFO", "message": " Original Size: 1258.77 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:23:45Z", "level": "INFO", "message": " Encoded Size: 589.56 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:23:45Z", "level": "INFO", "message": " Reduction: 46.8% of original (53.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:23:45Z", "level": "INFO", "message": " Resolution: 1920x1072 → 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:23:45Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:23:51Z", "level": "INFO", "message": "Moved Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:23:51Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpbzrnsqqb.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:23:51Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:23:51Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:23:51Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:23:51Z", "level": "INFO", "message": " Size: 1258.77MB → 589.56MB (46.8% of original, 53.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:23:51Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:23:51Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:23:51Z", "level": "INFO", "message": "Processing: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": "Copied Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:24:03Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpd_ls9i7y.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:24:03Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:26:12Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:26:12Z", "level": "INFO", "message": " Original Size: 1211.76 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:26:12Z", "level": "INFO", "message": " Encoded Size: 542.14 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:26:12Z", "level": "INFO", "message": " Reduction: 44.7% of original (55.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:26:12Z", "level": "INFO", "message": " Resolution: 1920x1072 → 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:26:12Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:26:16Z", "level": "INFO", "message": "Moved Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:26:17Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpujx0fcz2.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:26:17Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:26:17Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:26:17Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:26:17Z", "level": "INFO", "message": " Size: 1211.76MB → 542.14MB (44.7% of original, 55.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:26:17Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:26:17Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:26:17Z", "level": "INFO", "message": "Processing: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": "Copied Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:26:29Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp_6eh_x0o.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:26:29Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:28:39Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:28:39Z", "level": "INFO", "message": " Original Size: 1218.99 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:28:39Z", "level": "INFO", "message": " Encoded Size: 528.76 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:28:39Z", "level": "INFO", "message": " Reduction: 43.4% of original (56.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:28:39Z", "level": "INFO", "message": " Resolution: 1920x1072 → 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:28:39Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:28:43Z", "level": "INFO", "message": "Moved Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:28:43Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpa47pwpr0.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:28:43Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:28:43Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:28:43Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:28:43Z", "level": "INFO", "message": " Size: 1218.99MB → 528.76MB (43.4% of original, 56.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:28:43Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:28:44Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:28:44Z", "level": "INFO", "message": "Processing: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": "Copied Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:28:55Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp47riq7i1.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:28:55Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:31:04Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:31:04Z", "level": "INFO", "message": " Original Size: 1216.02 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:31:04Z", "level": "INFO", "message": " Encoded Size: 604.50 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:31:04Z", "level": "INFO", "message": " Reduction: 49.7% of original (50.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:31:04Z", "level": "INFO", "message": " Resolution: 1920x1072 → 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:31:04Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:31:10Z", "level": "INFO", "message": "Moved Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:31:10Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpy2ryuk9b.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:31:10Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:31:10Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:31:10Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:31:10Z", "level": "INFO", "message": " Size: 1216.02MB → 604.5MB (49.7% of original, 50.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:31:10Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:31:10Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:31:10Z", "level": "INFO", "message": "Processing: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": "Copied Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:31:22Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmph4g34lwq.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:31:22Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:33:30Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:33:30Z", "level": "INFO", "message": " Original Size: 1251.74 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:33:30Z", "level": "INFO", "message": " Encoded Size: 572.19 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:33:30Z", "level": "INFO", "message": " Reduction: 45.7% of original (54.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:33:30Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:33:30Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:33:35Z", "level": "INFO", "message": "Moved Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:33:35Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp1jaexv8h.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:33:35Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:33:35Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:33:35Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:33:35Z", "level": "INFO", "message": " Size: 1251.74MB → 572.19MB (45.7% of original, 54.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:33:35Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:33:36Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:33:36Z", "level": "INFO", "message": "Processing: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": "Copied Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:33:47Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpw3x1a_1a.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:33:47Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:35:46Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:35:46Z", "level": "INFO", "message": " Original Size: 1178.69 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:35:46Z", "level": "INFO", "message": " Encoded Size: 487.12 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:35:46Z", "level": "INFO", "message": " Reduction: 41.3% of original (58.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:35:46Z", "level": "INFO", "message": " Resolution: 1920x1072 → 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:35:46Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:35:50Z", "level": "INFO", "message": "Moved Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:35:50Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp6rr5vonz.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:35:50Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:35:50Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:35:50Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:35:50Z", "level": "INFO", "message": " Size: 1178.69MB → 487.12MB (41.3% of original, 58.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:35:50Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:35:51Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:35:51Z", "level": "INFO", "message": "Processing: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": "Copied Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:36:02Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpqmha26em.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:36:02Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:38:16Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:38:16Z", "level": "INFO", "message": " Original Size: 1255.23 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:38:16Z", "level": "INFO", "message": " Encoded Size: 568.17 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:38:16Z", "level": "INFO", "message": " Reduction: 45.3% of original (54.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:38:16Z", "level": "INFO", "message": " Resolution: 1920x1072 → 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:38:16Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:38:21Z", "level": "INFO", "message": "Moved Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:38:21Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp1zq2p1ls.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:38:21Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:38:21Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:38:21Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:38:21Z", "level": "INFO", "message": " Size: 1255.23MB → 568.17MB (45.3% of original, 54.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:38:21Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:38:21Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:38:21Z", "level": "INFO", "message": "Processing: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": "Copied Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:38:31Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpviqtwq7h.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:38:31Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:40:32Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:40:32Z", "level": "INFO", "message": " Original Size: 1118.33 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:40:32Z", "level": "INFO", "message": " Encoded Size: 411.80 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:40:32Z", "level": "INFO", "message": " Reduction: 36.8% of original (63.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:40:32Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:40:32Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:40:36Z", "level": "INFO", "message": "Moved Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:40:36Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpkrjfr5m5.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:40:36Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:40:36Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:40:36Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:40:36Z", "level": "INFO", "message": " Size: 1118.33MB → 411.8MB (36.8% of original, 63.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:40:36Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:40:36Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:40:36Z", "level": "INFO", "message": "Processing: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": "Copied Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:40:47Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp7mycuuam.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:40:47Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:42:55Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:42:55Z", "level": "INFO", "message": " Original Size: 1199.51 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:42:55Z", "level": "INFO", "message": " Encoded Size: 508.34 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:42:55Z", "level": "INFO", "message": " Reduction: 42.4% of original (57.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:42:55Z", "level": "INFO", "message": " Resolution: 1920x1072 → 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:42:55Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:42:59Z", "level": "INFO", "message": "Moved Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:42:59Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpig98_rrk.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:42:59Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:42:59Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:42:59Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:42:59Z", "level": "INFO", "message": " Size: 1199.51MB → 508.34MB (42.4% of original, 57.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:42:59Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:43:00Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:43:00Z", "level": "INFO", "message": "Processing: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": "Copied Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:43:11Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpdsnafhnk.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:43:11Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:45:14Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:45:14Z", "level": "INFO", "message": " Original Size: 1210.49 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:45:14Z", "level": "INFO", "message": " Encoded Size: 541.26 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:45:14Z", "level": "INFO", "message": " Reduction: 44.7% of original (55.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:45:14Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:45:14Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:45:19Z", "level": "INFO", "message": "Moved Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:45:19Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp92pgdag0.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:45:19Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:45:19Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:45:19Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:45:19Z", "level": "INFO", "message": " Size: 1210.49MB → 541.26MB (44.7% of original, 55.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:45:19Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:45:19Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:45:19Z", "level": "INFO", "message": "Processing: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": "Copied Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:45:31Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp3ck0rblo.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:45:31Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:47:42Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:47:42Z", "level": "INFO", "message": " Original Size: 1284.10 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:47:42Z", "level": "INFO", "message": " Encoded Size: 564.19 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:47:42Z", "level": "INFO", "message": " Reduction: 43.9% of original (56.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:47:42Z", "level": "INFO", "message": " Resolution: 1920x1072 → 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:47:42Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:47:47Z", "level": "INFO", "message": "Moved Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:47:47Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp2_0vahcd.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:47:47Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:47:47Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:47:47Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:47:47Z", "level": "INFO", "message": " Size: 1284.1MB → 564.19MB (43.9% of original, 56.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:47:47Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:47:48Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:47:48Z", "level": "INFO", "message": "Processing: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": "Copied Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:47:59Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpqzkie188.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:47:59Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:49:54Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:49:54Z", "level": "INFO", "message": " Original Size: 1286.68 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:49:54Z", "level": "INFO", "message": " Encoded Size: 733.41 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:49:54Z", "level": "INFO", "message": " Reduction: 57.0% of original (43.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:49:54Z", "level": "INFO", "message": " Resolution: 1920x1072 → 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:49:54Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:50:01Z", "level": "INFO", "message": "Moved Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:50:01Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpc05gyyec.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:50:01Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:50:01Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:50:01Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:50:01Z", "level": "INFO", "message": " Size: 1286.68MB → 733.41MB (57.0% of original, 43.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:50:01Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:50:01Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:50:01Z", "level": "INFO", "message": "Processing: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": "Copied Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:50:13Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpkwbr6n9j.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:50:13Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:52:20Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:52:20Z", "level": "INFO", "message": " Original Size: 1198.65 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:52:20Z", "level": "INFO", "message": " Encoded Size: 460.60 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:52:20Z", "level": "INFO", "message": " Reduction: 38.4% of original (61.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:52:20Z", "level": "INFO", "message": " Resolution: 1920x1072 → 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:52:20Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:52:24Z", "level": "INFO", "message": "Moved Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:52:24Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpjipha2q1.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:52:24Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:52:24Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:52:24Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:52:24Z", "level": "INFO", "message": " Size: 1198.65MB → 460.6MB (38.4% of original, 61.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:52:24Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:52:25Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:52:25Z", "level": "INFO", "message": "Processing: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": "Copied Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": "Source resolution detected: 1920x1072", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": "Source 1920x1072 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:52:36Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpcbfte3bs.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": " • Source Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": " • Target Resolution: 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:52:36Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:54:49Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:54:49Z", "level": "INFO", "message": " Original Size: 1199.16 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:54:49Z", "level": "INFO", "message": " Encoded Size: 425.70 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:54:49Z", "level": "INFO", "message": " Reduction: 35.5% of original (64.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:54:49Z", "level": "INFO", "message": " Resolution: 1920x1072 → 1920x1072", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:54:49Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:54:53Z", "level": "INFO", "message": "Moved Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:54:53Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpc4r71wh6.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:54:53Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:54:53Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:54:53Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:54:53Z", "level": "INFO", "message": " Size: 1199.16MB → 425.7MB (35.5% of original, 64.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:54:53Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:54:53Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:54:53Z", "level": "INFO", "message": "Processing: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:55:03Z", "level": "INFO", "message": "Copied Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:55:04Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp2ldieayj.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:55:04Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:57:01Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:57:01Z", "level": "INFO", "message": " Original Size: 1212.69 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:57:01Z", "level": "INFO", "message": " Encoded Size: 560.74 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:57:01Z", "level": "INFO", "message": " Reduction: 46.2% of original (53.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:57:01Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:57:01Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:57:06Z", "level": "INFO", "message": "Moved Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:57:06Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmplhpozqx4.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:57:06Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:57:06Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:57:06Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:57:06Z", "level": "INFO", "message": " Size: 1212.69MB → 560.74MB (46.2% of original, 53.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:57:06Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:57:06Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:57:06Z", "level": "INFO", "message": "Processing: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": "Copied Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:57:16Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp0ei7vsme.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:57:16Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T00:59:26Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T00:59:26Z", "level": "INFO", "message": " Original Size: 1067.26 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T00:59:26Z", "level": "INFO", "message": " Encoded Size: 439.71 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T00:59:26Z", "level": "INFO", "message": " Reduction: 41.2% of original (58.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T00:59:26Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T00:59:26Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T00:59:29Z", "level": "INFO", "message": "Moved Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T00:59:30Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpz7g0hzj2.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:59:30Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:59:30Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T00:59:30Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T00:59:30Z", "level": "INFO", "message": " Size: 1067.26MB → 439.71MB (41.2% of original, 58.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T00:59:30Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T00:59:30Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T00:59:30Z", "level": "INFO", "message": "Processing: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": "Copied Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T00:59:40Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp1yvnvgo3.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T00:59:40Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:01:52Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:01:52Z", "level": "INFO", "message": " Original Size: 1090.87 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:01:52Z", "level": "INFO", "message": " Encoded Size: 451.58 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:01:52Z", "level": "INFO", "message": " Reduction: 41.4% of original (58.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:01:52Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:01:52Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:01:56Z", "level": "INFO", "message": "Moved Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:01:56Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp0mhqql9v.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:01:56Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:01:56Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:01:56Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:01:56Z", "level": "INFO", "message": " Size: 1090.87MB → 451.58MB (41.4% of original, 58.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:01:56Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:01:56Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:01:56Z", "level": "INFO", "message": "Processing: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": "Copied Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:02:06Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpx0kqlroq.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:02:06Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:04:14Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:04:14Z", "level": "INFO", "message": " Original Size: 1052.50 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:04:14Z", "level": "INFO", "message": " Encoded Size: 427.81 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:04:14Z", "level": "INFO", "message": " Reduction: 40.6% of original (59.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:04:14Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:04:14Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:04:18Z", "level": "INFO", "message": "Moved Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:04:18Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp388j25ir.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:04:18Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:04:18Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:04:18Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:04:18Z", "level": "INFO", "message": " Size: 1052.5MB → 427.81MB (40.6% of original, 59.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:04:18Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:04:19Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:04:19Z", "level": "INFO", "message": "Processing: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": "Copied Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:04:27Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpefrczr1x.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:04:27Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:06:30Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:06:30Z", "level": "INFO", "message": " Original Size: 929.60 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:06:30Z", "level": "INFO", "message": " Encoded Size: 376.72 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:06:30Z", "level": "INFO", "message": " Reduction: 40.5% of original (59.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:06:30Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:06:30Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:06:33Z", "level": "INFO", "message": "Moved Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:06:33Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmprdsj1zc0.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:06:33Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:06:33Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:06:33Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:06:33Z", "level": "INFO", "message": " Size: 929.6MB → 376.72MB (40.5% of original, 59.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:06:33Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:06:34Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:06:34Z", "level": "INFO", "message": "Processing: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": "Copied Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:06:43Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpk0p7td2h.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:06:43Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:08:53Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:08:53Z", "level": "INFO", "message": " Original Size: 1024.01 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:08:53Z", "level": "INFO", "message": " Encoded Size: 417.75 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:08:53Z", "level": "INFO", "message": " Reduction: 40.8% of original (59.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:08:53Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:08:53Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:08:57Z", "level": "INFO", "message": "Moved Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:08:57Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp8b0y9wqj.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:08:57Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:08:57Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:08:57Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:08:57Z", "level": "INFO", "message": " Size: 1024.01MB → 417.75MB (40.8% of original, 59.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:08:57Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:08:57Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:08:57Z", "level": "INFO", "message": "Processing: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:09:07Z", "level": "INFO", "message": "Copied Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:09:07Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:09:07Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:09:07Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:09:08Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpc488wsax.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:09:08Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:09:08Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:09:08Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:09:08Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:09:08Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:09:08Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:09:08Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:09:08Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:09:08Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:09:08Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:09:08Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:09:08Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:09:08Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:09:08Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:11:21Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:11:21Z", "level": "INFO", "message": " Original Size: 1070.47 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:11:21Z", "level": "INFO", "message": " Encoded Size: 448.26 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:11:21Z", "level": "INFO", "message": " Reduction: 41.9% of original (58.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:11:21Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:11:21Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:11:25Z", "level": "INFO", "message": "Moved Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:11:25Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp0hl34eqn.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:11:25Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:11:25Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:11:25Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:11:25Z", "level": "INFO", "message": " Size: 1070.47MB → 448.26MB (41.9% of original, 58.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:11:25Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:11:25Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:11:25Z", "level": "INFO", "message": "Processing: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": "Copied Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:11:35Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpnz9chrkj.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:11:35Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:13:49Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:13:49Z", "level": "INFO", "message": " Original Size: 1081.52 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:13:49Z", "level": "INFO", "message": " Encoded Size: 444.61 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:13:49Z", "level": "INFO", "message": " Reduction: 41.1% of original (58.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:13:49Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:13:49Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:13:53Z", "level": "INFO", "message": "Moved Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:13:53Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpcde5w0mh.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:13:53Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:13:53Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:13:53Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:13:53Z", "level": "INFO", "message": " Size: 1081.52MB → 444.61MB (41.1% of original, 58.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:13:53Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:13:54Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:13:54Z", "level": "INFO", "message": "Processing: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": "Copied Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:14:04Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpyowkhtwu.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:14:04Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:16:24Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:16:24Z", "level": "INFO", "message": " Original Size: 1066.74 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:16:24Z", "level": "INFO", "message": " Encoded Size: 430.87 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:16:24Z", "level": "INFO", "message": " Reduction: 40.4% of original (59.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:16:24Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:16:24Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:16:28Z", "level": "INFO", "message": "Moved Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:16:28Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp7tp4v0z4.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:16:28Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:16:28Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:16:28Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:16:28Z", "level": "INFO", "message": " Size: 1066.74MB → 430.87MB (40.4% of original, 59.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:16:28Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:16:28Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:16:28Z", "level": "INFO", "message": "Processing: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": "Copied Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:16:39Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpghz48vxh.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:16:39Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:18:52Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:18:52Z", "level": "INFO", "message": " Original Size: 1065.36 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:18:52Z", "level": "INFO", "message": " Encoded Size: 422.05 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:18:52Z", "level": "INFO", "message": " Reduction: 39.6% of original (60.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:18:52Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:18:52Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:18:56Z", "level": "INFO", "message": "Moved Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:18:56Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpfsvg6ax1.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:18:56Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:18:56Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:18:56Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:18:56Z", "level": "INFO", "message": " Size: 1065.36MB → 422.05MB (39.6% of original, 60.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:18:56Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:18:56Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:18:56Z", "level": "INFO", "message": "Processing: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:19:06Z", "level": "INFO", "message": "Copied Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:19:06Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:19:06Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:19:06Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:19:07Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpeu6te4dj.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:19:07Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:19:07Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:19:07Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:19:07Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:19:07Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:19:07Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:19:07Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:19:07Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:19:07Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:19:07Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:19:07Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:19:07Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:19:07Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:19:07Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:21:21Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:21:21Z", "level": "INFO", "message": " Original Size: 1072.45 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:21:21Z", "level": "INFO", "message": " Encoded Size: 458.86 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:21:21Z", "level": "INFO", "message": " Reduction: 42.8% of original (57.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:21:21Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:21:21Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:21:25Z", "level": "INFO", "message": "Moved Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:21:25Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpp0xr_3zz.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:21:25Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:21:25Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:21:25Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:21:25Z", "level": "INFO", "message": " Size: 1072.45MB → 458.86MB (42.8% of original, 57.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:21:25Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:21:25Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:21:25Z", "level": "INFO", "message": "Processing: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": "Copied Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:21:36Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmprzb6x4qq.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:21:36Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:23:58Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:23:58Z", "level": "INFO", "message": " Original Size: 1114.36 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:23:58Z", "level": "INFO", "message": " Encoded Size: 442.83 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:23:58Z", "level": "INFO", "message": " Reduction: 39.7% of original (60.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:23:58Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:23:58Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:24:02Z", "level": "INFO", "message": "Moved Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:24:02Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp0hj5x2bj.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:24:02Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:24:02Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:24:02Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:24:02Z", "level": "INFO", "message": " Size: 1114.36MB → 442.83MB (39.7% of original, 60.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:24:02Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:24:02Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:24:02Z", "level": "INFO", "message": "Processing: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": "Copied Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:24:12Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpt0e0su8a.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:24:12Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:26:20Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:26:20Z", "level": "INFO", "message": " Original Size: 1092.59 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:26:20Z", "level": "INFO", "message": " Encoded Size: 456.92 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:26:20Z", "level": "INFO", "message": " Reduction: 41.8% of original (58.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:26:20Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:26:20Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:26:24Z", "level": "INFO", "message": "Moved Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:26:24Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpxtwhtm1c.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:26:24Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:26:24Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:26:24Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:26:24Z", "level": "INFO", "message": " Size: 1092.59MB → 456.92MB (41.8% of original, 58.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:26:24Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:26:24Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:26:24Z", "level": "INFO", "message": "Processing: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": "Copied Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:26:34Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmptk1z5h56.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:26:34Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:28:44Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:28:44Z", "level": "INFO", "message": " Original Size: 1077.61 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:28:44Z", "level": "INFO", "message": " Encoded Size: 460.74 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:28:44Z", "level": "INFO", "message": " Reduction: 42.8% of original (57.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:28:44Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:28:44Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:28:48Z", "level": "INFO", "message": "Moved Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:28:48Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpkba9wqzv.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:28:48Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:28:48Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:28:48Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:28:48Z", "level": "INFO", "message": " Size: 1077.61MB → 460.74MB (42.8% of original, 57.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:28:48Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:28:48Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:28:48Z", "level": "INFO", "message": "Processing: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": "Copied Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:28:58Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmppxczhztp.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:28:58Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:31:11Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:31:11Z", "level": "INFO", "message": " Original Size: 1011.17 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:31:11Z", "level": "INFO", "message": " Encoded Size: 394.25 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:31:11Z", "level": "INFO", "message": " Reduction: 39.0% of original (61.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:31:11Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:31:11Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:31:14Z", "level": "INFO", "message": "Moved Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:31:14Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp2ho92f19.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:31:14Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:31:14Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:31:14Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:31:14Z", "level": "INFO", "message": " Size: 1011.17MB → 394.25MB (39.0% of original, 61.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:31:14Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:31:14Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:31:14Z", "level": "INFO", "message": "Processing: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": "Copied Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:31:25Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmptc09q98t.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:31:25Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:33:34Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:33:34Z", "level": "INFO", "message": " Original Size: 1086.58 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:33:34Z", "level": "INFO", "message": " Encoded Size: 469.19 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:33:34Z", "level": "INFO", "message": " Reduction: 43.2% of original (56.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:33:34Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:33:34Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:33:38Z", "level": "INFO", "message": "Moved Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:33:38Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpof54xgvl.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:33:38Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:33:38Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:33:38Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:33:38Z", "level": "INFO", "message": " Size: 1086.58MB → 469.19MB (43.2% of original, 56.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:33:38Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:33:39Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:33:39Z", "level": "INFO", "message": "Processing: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:33:47Z", "level": "INFO", "message": "Copied Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:33:47Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:33:47Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:33:47Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:33:48Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp8ascg85q.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:33:48Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:33:48Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:33:48Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:33:48Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:33:48Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:33:48Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:33:48Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:33:48Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:33:48Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:33:48Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:33:48Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:33:48Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:33:48Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:33:48Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:35:51Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:35:51Z", "level": "INFO", "message": " Original Size: 953.74 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:35:51Z", "level": "INFO", "message": " Encoded Size: 362.53 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:35:51Z", "level": "INFO", "message": " Reduction: 38.0% of original (62.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:35:51Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:35:51Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:35:55Z", "level": "INFO", "message": "Moved Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:35:55Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp9ksucjzz.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:35:55Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:35:55Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:35:55Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:35:55Z", "level": "INFO", "message": " Size: 953.74MB → 362.53MB (38.0% of original, 62.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:35:55Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:35:55Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:35:55Z", "level": "INFO", "message": "Processing: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": "Copied Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:36:06Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpfnzxqzid.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:36:06Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:38:23Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:38:23Z", "level": "INFO", "message": " Original Size: 1102.15 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:38:23Z", "level": "INFO", "message": " Encoded Size: 427.09 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:38:23Z", "level": "INFO", "message": " Reduction: 38.8% of original (61.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:38:23Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:38:23Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:38:27Z", "level": "INFO", "message": "Moved Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:38:27Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmptjxuqsm0.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:38:27Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:38:27Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:38:27Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:38:27Z", "level": "INFO", "message": " Size: 1102.15MB → 427.09MB (38.8% of original, 61.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:38:27Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:38:27Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:38:27Z", "level": "INFO", "message": "Processing: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:38:37Z", "level": "INFO", "message": "Copied Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:38:37Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:38:37Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:38:37Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:38:38Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpot12ecbi.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:38:38Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:38:38Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:38:38Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:38:38Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:38:38Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:38:38Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:38:38Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:38:38Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:38:38Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:38:38Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:38:38Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:38:38Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:38:38Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:38:38Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:40:57Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:40:57Z", "level": "INFO", "message": " Original Size: 1147.45 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:40:57Z", "level": "INFO", "message": " Encoded Size: 473.33 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:40:57Z", "level": "INFO", "message": " Reduction: 41.3% of original (58.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:40:57Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:40:57Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:41:01Z", "level": "INFO", "message": "Moved Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:41:01Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpa79vmkgw.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:41:01Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:41:01Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:41:01Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:41:01Z", "level": "INFO", "message": " Size: 1147.45MB → 473.33MB (41.3% of original, 58.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:41:01Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:41:01Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:41:01Z", "level": "INFO", "message": "Processing: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": "Copied Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:41:12Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpdwy429_1.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:41:12Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:43:38Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:43:38Z", "level": "INFO", "message": " Original Size: 1140.94 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:43:38Z", "level": "INFO", "message": " Encoded Size: 477.81 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:43:38Z", "level": "INFO", "message": " Reduction: 41.9% of original (58.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:43:38Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:43:38Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:43:43Z", "level": "INFO", "message": "Moved Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:43:43Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmph_525i4b.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:43:43Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:43:43Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:43:43Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:43:43Z", "level": "INFO", "message": " Size: 1140.94MB → 477.81MB (41.9% of original, 58.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:43:43Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:43:43Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:43:43Z", "level": "INFO", "message": "Processing: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:43:53Z", "level": "INFO", "message": "Copied Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:43:53Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:43:53Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:43:53Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:43:54Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmponqezm2q.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:43:54Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:43:54Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:43:54Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:43:54Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:43:54Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:43:54Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:43:54Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:43:54Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:43:54Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:43:54Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:43:54Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:43:54Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:43:54Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:43:54Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:46:17Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:46:17Z", "level": "INFO", "message": " Original Size: 1104.08 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:46:17Z", "level": "INFO", "message": " Encoded Size: 424.57 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:46:17Z", "level": "INFO", "message": " Reduction: 38.5% of original (61.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:46:17Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:46:17Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:46:20Z", "level": "INFO", "message": "Moved Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:46:21Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp5_xot0s1.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:46:21Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:46:21Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:46:21Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:46:21Z", "level": "INFO", "message": " Size: 1104.08MB → 424.57MB (38.5% of original, 61.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:46:21Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:46:21Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:46:21Z", "level": "INFO", "message": "Processing: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:46:30Z", "level": "INFO", "message": "Copied Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:46:30Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:46:30Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:46:30Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:46:31Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpogwfdnaa.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:46:31Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:46:31Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:46:31Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:46:31Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:46:31Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:46:31Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:46:31Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:46:31Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:46:31Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:46:31Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:46:31Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:46:31Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:46:31Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:46:31Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:48:47Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:48:47Z", "level": "INFO", "message": " Original Size: 1048.57 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:48:47Z", "level": "INFO", "message": " Encoded Size: 388.53 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:48:47Z", "level": "INFO", "message": " Reduction: 37.1% of original (62.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:48:47Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:48:47Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:48:51Z", "level": "INFO", "message": "Moved Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:48:51Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp5jnspeki.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:48:51Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:48:51Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:48:51Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:48:51Z", "level": "INFO", "message": " Size: 1048.57MB → 388.53MB (37.1% of original, 62.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:48:51Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:48:51Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:48:51Z", "level": "INFO", "message": "Processing: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": "Copied Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:49:01Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpp_mnk2yb.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:49:01Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:51:22Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:51:22Z", "level": "INFO", "message": " Original Size: 1100.73 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:51:22Z", "level": "INFO", "message": " Encoded Size: 455.30 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:51:22Z", "level": "INFO", "message": " Reduction: 41.4% of original (58.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:51:22Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:51:22Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:51:26Z", "level": "INFO", "message": "Moved Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:51:26Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpiydzv64l.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:51:26Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:51:26Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:51:26Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:51:26Z", "level": "INFO", "message": " Size: 1100.73MB → 455.3MB (41.4% of original, 58.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:51:26Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:51:26Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:51:26Z", "level": "INFO", "message": "Processing: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": "Copied Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:51:37Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpmn0lw503.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:51:37Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:54:01Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:54:01Z", "level": "INFO", "message": " Original Size: 1140.72 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:54:01Z", "level": "INFO", "message": " Encoded Size: 457.58 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:54:01Z", "level": "INFO", "message": " Reduction: 40.1% of original (59.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:54:01Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:54:01Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:54:05Z", "level": "INFO", "message": "Moved Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:54:05Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpdpfvkfb_.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:54:05Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:54:05Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:54:05Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:54:05Z", "level": "INFO", "message": " Size: 1140.72MB → 457.58MB (40.1% of original, 59.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:54:05Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:54:05Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:54:05Z", "level": "INFO", "message": "Processing: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": "Copied Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:54:18Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpxt8x0l36.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:54:18Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:56:21Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:56:21Z", "level": "INFO", "message": " Original Size: 1274.11 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:56:21Z", "level": "INFO", "message": " Encoded Size: 594.17 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:56:21Z", "level": "INFO", "message": " Reduction: 46.6% of original (53.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:56:21Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:56:21Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:56:26Z", "level": "INFO", "message": "Moved Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:56:26Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp9mbk55k3.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:56:26Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:56:26Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:56:26Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:56:26Z", "level": "INFO", "message": " Size: 1274.11MB → 594.17MB (46.6% of original, 53.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:56:26Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:56:26Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:56:26Z", "level": "INFO", "message": "Processing: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": "Copied Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:56:38Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmphqds6zbf.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:56:38Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T01:58:38Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T01:58:38Z", "level": "INFO", "message": " Original Size: 1226.97 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T01:58:38Z", "level": "INFO", "message": " Encoded Size: 661.37 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T01:58:38Z", "level": "INFO", "message": " Reduction: 53.9% of original (46.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T01:58:38Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T01:58:38Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T01:58:43Z", "level": "INFO", "message": "Moved Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T01:58:44Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp3rxdvzrz.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:58:44Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:58:44Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T01:58:44Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T01:58:44Z", "level": "INFO", "message": " Size: 1226.97MB → 661.37MB (53.9% of original, 46.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T01:58:44Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T01:58:44Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T01:58:44Z", "level": "INFO", "message": "Processing: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": "Copied Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T01:58:56Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmptuebooqq.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T01:58:56Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:01:01Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:01:01Z", "level": "INFO", "message": " Original Size: 1265.74 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:01:01Z", "level": "INFO", "message": " Encoded Size: 589.00 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:01:01Z", "level": "INFO", "message": " Reduction: 46.5% of original (53.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:01:01Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:01:01Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:01:06Z", "level": "INFO", "message": "Moved Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:01:06Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmph4gullek.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:01:06Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:01:06Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:01:06Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:01:06Z", "level": "INFO", "message": " Size: 1265.74MB → 589.0MB (46.5% of original, 53.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:01:06Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:01:06Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:01:06Z", "level": "INFO", "message": "Processing: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": "Copied Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:01:17Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpihycymav.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:01:17Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:03:16Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:03:16Z", "level": "INFO", "message": " Original Size: 1220.96 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:03:16Z", "level": "INFO", "message": " Encoded Size: 573.52 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:03:16Z", "level": "INFO", "message": " Reduction: 47.0% of original (53.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:03:16Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:03:16Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:03:21Z", "level": "INFO", "message": "Moved Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:03:21Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpfae9yvnx.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:03:21Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:03:21Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:03:21Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:03:21Z", "level": "INFO", "message": " Size: 1220.96MB → 573.52MB (47.0% of original, 53.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:03:21Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:03:22Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:03:22Z", "level": "INFO", "message": "Processing: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": "Copied Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:03:33Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpewqw28ky.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:03:33Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:05:31Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:05:31Z", "level": "INFO", "message": " Original Size: 1217.35 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:05:31Z", "level": "INFO", "message": " Encoded Size: 674.01 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:05:31Z", "level": "INFO", "message": " Reduction: 55.4% of original (44.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:05:31Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:05:31Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:05:37Z", "level": "INFO", "message": "Moved Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:05:37Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpsd_41kzx.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:05:37Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:05:37Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:05:37Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:05:37Z", "level": "INFO", "message": " Size: 1217.35MB → 674.01MB (55.4% of original, 44.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:05:37Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:05:38Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:05:38Z", "level": "INFO", "message": "Processing: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": "Copied Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:05:50Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpde9tsbhd.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:05:50Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:07:50Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:07:50Z", "level": "INFO", "message": " Original Size: 1276.57 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:07:50Z", "level": "INFO", "message": " Encoded Size: 716.27 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:07:50Z", "level": "INFO", "message": " Reduction: 56.1% of original (43.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:07:50Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:07:50Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:07:56Z", "level": "INFO", "message": "Moved Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:07:56Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpzu1usjzi.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:07:56Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:07:56Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:07:56Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:07:56Z", "level": "INFO", "message": " Size: 1276.57MB → 716.27MB (56.1% of original, 43.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:07:56Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:07:56Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:07:56Z", "level": "INFO", "message": "Processing: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": "Copied Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:08:08Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpggem90ib.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:08:08Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:10:15Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:10:15Z", "level": "INFO", "message": " Original Size: 1269.09 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:10:15Z", "level": "INFO", "message": " Encoded Size: 629.48 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:10:15Z", "level": "INFO", "message": " Reduction: 49.6% of original (50.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:10:15Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:10:15Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:10:21Z", "level": "INFO", "message": "Moved Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:10:21Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpkhlhdnzk.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:10:21Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:10:21Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:10:21Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:10:21Z", "level": "INFO", "message": " Size: 1269.09MB → 629.48MB (49.6% of original, 50.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:10:21Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:10:22Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:10:22Z", "level": "INFO", "message": "Processing: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": "Copied Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:10:33Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpj3fektn5.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:10:33Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:12:37Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:12:37Z", "level": "INFO", "message": " Original Size: 1245.31 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:12:37Z", "level": "INFO", "message": " Encoded Size: 629.48 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:12:37Z", "level": "INFO", "message": " Reduction: 50.5% of original (49.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:12:37Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:12:37Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:12:43Z", "level": "INFO", "message": "Moved Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:12:43Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpf__b8u8o.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:12:43Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:12:43Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:12:43Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:12:43Z", "level": "INFO", "message": " Size: 1245.31MB → 629.48MB (50.5% of original, 49.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:12:43Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:12:43Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:12:43Z", "level": "INFO", "message": "Processing: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:12:54Z", "level": "INFO", "message": "Copied Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:12:54Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:12:54Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:12:54Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:12:55Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpxp9o7nvu.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:12:55Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:12:55Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:12:55Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:12:55Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:12:55Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:12:55Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:12:55Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:12:55Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:12:55Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:12:55Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:12:55Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:12:55Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:12:55Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:12:55Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:15:04Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:15:04Z", "level": "INFO", "message": " Original Size: 1268.56 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:15:04Z", "level": "INFO", "message": " Encoded Size: 626.75 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:15:04Z", "level": "INFO", "message": " Reduction: 49.4% of original (50.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:15:04Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:15:04Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:15:10Z", "level": "INFO", "message": "Moved Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:15:10Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmprh2sk1u6.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:15:10Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:15:10Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:15:10Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:15:10Z", "level": "INFO", "message": " Size: 1268.56MB → 626.75MB (49.4% of original, 50.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:15:10Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:15:10Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:15:10Z", "level": "INFO", "message": "Processing: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": "Copied Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:15:22Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp5wqrari_.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:15:22Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:17:27Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:17:27Z", "level": "INFO", "message": " Original Size: 1275.97 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:17:27Z", "level": "INFO", "message": " Encoded Size: 618.85 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:17:27Z", "level": "INFO", "message": " Reduction: 48.5% of original (51.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:17:27Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:17:27Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:17:33Z", "level": "INFO", "message": "Moved Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:17:33Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpwpdbe83a.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:17:33Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:17:33Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:17:33Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:17:33Z", "level": "INFO", "message": " Size: 1275.97MB → 618.85MB (48.5% of original, 51.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:17:33Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:17:33Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:17:33Z", "level": "INFO", "message": "Processing: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": "Copied Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:17:45Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp3voq4ap5.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:17:45Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:19:44Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:19:44Z", "level": "INFO", "message": " Original Size: 1193.53 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:19:44Z", "level": "INFO", "message": " Encoded Size: 557.27 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:19:44Z", "level": "INFO", "message": " Reduction: 46.7% of original (53.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:19:44Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:19:44Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:19:49Z", "level": "INFO", "message": "Moved Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:19:49Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpzll5dakz.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:19:49Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:19:49Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:19:49Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:19:49Z", "level": "INFO", "message": " Size: 1193.53MB → 557.27MB (46.7% of original, 53.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:19:49Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:19:50Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:19:50Z", "level": "INFO", "message": "Processing: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": "Copied Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:20:02Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmphys7uwij.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:20:02Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:22:00Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:22:00Z", "level": "INFO", "message": " Original Size: 1224.62 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:22:00Z", "level": "INFO", "message": " Encoded Size: 590.71 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:22:00Z", "level": "INFO", "message": " Reduction: 48.2% of original (51.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:22:00Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:22:00Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:22:05Z", "level": "INFO", "message": "Moved Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:22:05Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpkq_vk7ym.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:22:05Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:22:05Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:22:05Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:22:05Z", "level": "INFO", "message": " Size: 1224.62MB → 590.71MB (48.2% of original, 51.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:22:05Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:22:05Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:22:05Z", "level": "INFO", "message": "Processing: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": "Copied Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:22:19Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpvxv5t8nf.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:22:19Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:24:15Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:24:15Z", "level": "INFO", "message": " Original Size: 1216.84 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:24:15Z", "level": "INFO", "message": " Encoded Size: 550.81 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:24:15Z", "level": "INFO", "message": " Reduction: 45.3% of original (54.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:24:15Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:24:15Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:24:20Z", "level": "INFO", "message": "Moved Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:24:20Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpjjgk2jay.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:24:20Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:24:20Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:24:20Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:24:20Z", "level": "INFO", "message": " Size: 1216.84MB → 550.81MB (45.3% of original, 54.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:24:20Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:24:21Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:24:21Z", "level": "INFO", "message": "Processing: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": "Copied Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:24:33Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpjjh1v6cm.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:24:33Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:26:36Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:26:36Z", "level": "INFO", "message": " Original Size: 1269.84 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:26:36Z", "level": "INFO", "message": " Encoded Size: 572.68 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:26:36Z", "level": "INFO", "message": " Reduction: 45.1% of original (54.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:26:36Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:26:36Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:26:41Z", "level": "INFO", "message": "Moved Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:26:41Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp3rq8x98w.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:26:41Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:26:41Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:26:41Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:26:41Z", "level": "INFO", "message": " Size: 1269.84MB → 572.68MB (45.1% of original, 54.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:26:41Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:26:42Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:26:42Z", "level": "INFO", "message": "Processing: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": "Copied Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:26:54Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpaim9u3op.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:26:54Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:28:48Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:28:48Z", "level": "INFO", "message": " Original Size: 1152.21 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:28:48Z", "level": "INFO", "message": " Encoded Size: 521.45 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:28:48Z", "level": "INFO", "message": " Reduction: 45.3% of original (54.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:28:48Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:28:48Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:28:53Z", "level": "INFO", "message": "Moved Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:28:53Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpg6m4mnrl.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:28:53Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:28:53Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:28:53Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:28:53Z", "level": "INFO", "message": " Size: 1152.21MB → 521.45MB (45.3% of original, 54.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:28:53Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:28:53Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:28:53Z", "level": "INFO", "message": "Processing: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": "Copied Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:29:04Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpdqmvuaf7.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:29:04Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:30:55Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:30:55Z", "level": "INFO", "message": " Original Size: 1110.03 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:30:55Z", "level": "INFO", "message": " Encoded Size: 497.54 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:30:55Z", "level": "INFO", "message": " Reduction: 44.8% of original (55.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:30:55Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:30:55Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:31:00Z", "level": "INFO", "message": "Moved Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:31:00Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpuepbezu8.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:31:00Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:31:00Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:31:00Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:31:00Z", "level": "INFO", "message": " Size: 1110.03MB → 497.54MB (44.8% of original, 55.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:31:00Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:31:00Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:31:00Z", "level": "INFO", "message": "Processing: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": "Copied Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:31:12Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpoleqism_.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:31:12Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:33:07Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:33:07Z", "level": "INFO", "message": " Original Size: 1235.78 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:33:07Z", "level": "INFO", "message": " Encoded Size: 626.80 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:33:07Z", "level": "INFO", "message": " Reduction: 50.7% of original (49.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:33:07Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:33:07Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:33:12Z", "level": "INFO", "message": "Moved Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:33:12Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp3rf_re43.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:33:12Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:33:12Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:33:12Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:33:12Z", "level": "INFO", "message": " Size: 1235.78MB → 626.8MB (50.7% of original, 49.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:33:12Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:33:13Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:33:13Z", "level": "INFO", "message": "Processing: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": "Copied Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:33:24Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpx0nf4w4e.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:33:24Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:35:25Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:35:25Z", "level": "INFO", "message": " Original Size: 1230.73 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:35:25Z", "level": "INFO", "message": " Encoded Size: 666.65 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:35:25Z", "level": "INFO", "message": " Reduction: 54.2% of original (45.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:35:25Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:35:25Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:35:30Z", "level": "INFO", "message": "Moved Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:35:30Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpxe4if5zr.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:35:30Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:35:30Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:35:30Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:35:30Z", "level": "INFO", "message": " Size: 1230.73MB → 666.65MB (54.2% of original, 45.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:35:30Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:35:31Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:35:31Z", "level": "INFO", "message": "Processing: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": "Copied Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:35:43Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp6j5z7hbe.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:35:43Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:37:42Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:37:42Z", "level": "INFO", "message": " Original Size: 1243.85 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:37:42Z", "level": "INFO", "message": " Encoded Size: 719.79 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:37:42Z", "level": "INFO", "message": " Reduction: 57.9% of original (42.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:37:42Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:37:42Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:37:49Z", "level": "INFO", "message": "Moved Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:37:49Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpo4kveux7.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:37:49Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:37:49Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:37:49Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:37:49Z", "level": "INFO", "message": " Size: 1243.85MB → 719.79MB (57.9% of original, 42.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:37:49Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:37:49Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:37:49Z", "level": "INFO", "message": "Processing: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": "Copied Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:38:01Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp3lty6ry0.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:38:01Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:40:09Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:40:09Z", "level": "INFO", "message": " Original Size: 1300.63 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:40:09Z", "level": "INFO", "message": " Encoded Size: 616.77 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:40:09Z", "level": "INFO", "message": " Reduction: 47.4% of original (52.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:40:09Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:40:09Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:40:14Z", "level": "INFO", "message": "Moved Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:40:14Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp0zjrmtci.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:40:14Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:40:14Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:40:14Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:40:14Z", "level": "INFO", "message": " Size: 1300.63MB → 616.77MB (47.4% of original, 52.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:40:14Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:40:14Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:40:14Z", "level": "INFO", "message": "Processing: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": "Copied Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:40:27Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpvg_8yq4t.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:40:27Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:42:32Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:42:32Z", "level": "INFO", "message": " Original Size: 1249.53 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:42:32Z", "level": "INFO", "message": " Encoded Size: 689.24 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:42:32Z", "level": "INFO", "message": " Reduction: 55.2% of original (44.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:42:32Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:42:32Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:42:38Z", "level": "INFO", "message": "Moved Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:42:38Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmptkh_lrtd.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:42:38Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:42:38Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:42:38Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:42:38Z", "level": "INFO", "message": " Size: 1249.53MB → 689.24MB (55.2% of original, 44.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:42:38Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:42:38Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:42:38Z", "level": "INFO", "message": "Processing: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": "Copied Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:42:51Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpq09g3awz.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:42:51Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:44:49Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:44:49Z", "level": "INFO", "message": " Original Size: 1258.44 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:44:49Z", "level": "INFO", "message": " Encoded Size: 666.00 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:44:49Z", "level": "INFO", "message": " Reduction: 52.9% of original (47.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:44:49Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:44:49Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:44:54Z", "level": "INFO", "message": "Moved Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:44:54Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp5ut33es7.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:44:54Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:44:54Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:44:54Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:44:54Z", "level": "INFO", "message": " Size: 1258.44MB → 666.0MB (52.9% of original, 47.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:44:54Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:44:55Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:44:55Z", "level": "INFO", "message": "Processing: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": "Copied Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:45:05Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp3qpphz84.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:45:05Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:47:17Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:47:17Z", "level": "INFO", "message": " Original Size: 1099.63 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:47:17Z", "level": "INFO", "message": " Encoded Size: 465.54 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:47:17Z", "level": "INFO", "message": " Reduction: 42.3% of original (57.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:47:17Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:47:17Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:47:21Z", "level": "INFO", "message": "Moved Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:47:21Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmps00auo3s.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:47:21Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:47:21Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:47:21Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:47:21Z", "level": "INFO", "message": " Size: 1099.63MB → 465.54MB (42.3% of original, 57.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:47:21Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:47:21Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:47:21Z", "level": "INFO", "message": "Processing: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": "Copied Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:47:32Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpfn1dj71o.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:47:32Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:49:46Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:49:46Z", "level": "INFO", "message": " Original Size: 1082.08 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:49:46Z", "level": "INFO", "message": " Encoded Size: 506.40 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:49:46Z", "level": "INFO", "message": " Reduction: 46.8% of original (53.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:49:46Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:49:46Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:49:51Z", "level": "INFO", "message": "Moved Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:49:51Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpieen8u1f.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:49:51Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:49:51Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:49:51Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:49:51Z", "level": "INFO", "message": " Size: 1082.08MB → 506.4MB (46.8% of original, 53.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:49:51Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:49:51Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:49:51Z", "level": "INFO", "message": "Processing: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:50:00Z", "level": "INFO", "message": "Copied Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:50:00Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:50:00Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:50:00Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:50:01Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpk71bq_22.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:50:01Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:50:01Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:50:01Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:50:01Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:50:01Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:50:01Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:50:01Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:50:01Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:50:01Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:50:01Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:50:01Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:50:01Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:50:01Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:50:01Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:52:04Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:52:04Z", "level": "INFO", "message": " Original Size: 909.89 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:52:04Z", "level": "INFO", "message": " Encoded Size: 354.25 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:52:04Z", "level": "INFO", "message": " Reduction: 38.9% of original (61.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:52:04Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:52:04Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:52:07Z", "level": "INFO", "message": "Moved Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:52:07Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmptz1b87rn.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:52:07Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:52:07Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:52:07Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:52:07Z", "level": "INFO", "message": " Size: 909.89MB → 354.25MB (38.9% of original, 61.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:52:07Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:52:07Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:52:07Z", "level": "INFO", "message": "Processing: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:52:17Z", "level": "INFO", "message": "Copied Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:52:18Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpvmmyukkk.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:52:18Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:54:30Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:54:30Z", "level": "INFO", "message": " Original Size: 1102.86 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:54:30Z", "level": "INFO", "message": " Encoded Size: 407.58 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:54:30Z", "level": "INFO", "message": " Reduction: 37.0% of original (63.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:54:30Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:54:30Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:54:34Z", "level": "INFO", "message": "Moved Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:54:34Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpax1_y2ap.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:54:34Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:54:34Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:54:34Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:54:34Z", "level": "INFO", "message": " Size: 1102.86MB → 407.58MB (37.0% of original, 63.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:54:34Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:54:34Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:54:34Z", "level": "INFO", "message": "Processing: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": "Copied Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:54:44Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpk1roiadx.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:54:44Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:56:46Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:56:46Z", "level": "INFO", "message": " Original Size: 1012.31 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:56:46Z", "level": "INFO", "message": " Encoded Size: 403.77 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:56:46Z", "level": "INFO", "message": " Reduction: 39.9% of original (60.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:56:46Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:56:46Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:56:49Z", "level": "INFO", "message": "Moved Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:56:49Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpet5msbo4.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:56:49Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:56:49Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:56:49Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:56:49Z", "level": "INFO", "message": " Size: 1012.31MB → 403.77MB (39.9% of original, 60.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:56:49Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:56:50Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:56:50Z", "level": "INFO", "message": "Processing: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:56:58Z", "level": "INFO", "message": "Copied Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:56:58Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:56:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:56:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:56:59Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpyzacrsxm.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:56:59Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:56:59Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:56:59Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:56:59Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:56:59Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:56:59Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:56:59Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:56:59Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:56:59Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:56:59Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:56:59Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:56:59Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:56:59Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:56:59Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T02:59:06Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T02:59:06Z", "level": "INFO", "message": " Original Size: 965.90 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T02:59:06Z", "level": "INFO", "message": " Encoded Size: 381.78 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T02:59:06Z", "level": "INFO", "message": " Reduction: 39.5% of original (60.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T02:59:06Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T02:59:06Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T02:59:09Z", "level": "INFO", "message": "Moved Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T02:59:09Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpf8tbko6e.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:59:09Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:59:09Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T02:59:09Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T02:59:09Z", "level": "INFO", "message": " Size: 965.9MB → 381.78MB (39.5% of original, 60.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T02:59:09Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T02:59:09Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T02:59:09Z", "level": "INFO", "message": "Processing: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": "Copied Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T02:59:19Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpftqq1n62.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T02:59:19Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T03:01:26Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T03:01:26Z", "level": "INFO", "message": " Original Size: 1011.59 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T03:01:26Z", "level": "INFO", "message": " Encoded Size: 366.43 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T03:01:26Z", "level": "INFO", "message": " Reduction: 36.2% of original (63.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T03:01:26Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T03:01:26Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T03:01:29Z", "level": "INFO", "message": "Moved Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T03:01:29Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp0ed1exd1.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:01:29Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:01:29Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T03:01:29Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T03:01:29Z", "level": "INFO", "message": " Size: 1011.59MB → 366.43MB (36.2% of original, 63.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T03:01:29Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T03:01:29Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T03:01:29Z", "level": "INFO", "message": "Processing: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": "Copied Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T03:01:39Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmplybarth2.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:01:39Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T03:03:44Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T03:03:44Z", "level": "INFO", "message": " Original Size: 954.26 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T03:03:44Z", "level": "INFO", "message": " Encoded Size: 379.04 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T03:03:44Z", "level": "INFO", "message": " Reduction: 39.7% of original (60.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T03:03:44Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T03:03:44Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T03:03:47Z", "level": "INFO", "message": "Moved Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T03:03:48Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp4rphcvo4.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:03:48Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:03:48Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T03:03:48Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T03:03:48Z", "level": "INFO", "message": " Size: 954.26MB → 379.04MB (39.7% of original, 60.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T03:03:48Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T03:03:48Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T03:03:48Z", "level": "INFO", "message": "Processing: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": "Copied Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T03:03:57Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpc7w4q4lt.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:03:57Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T03:06:02Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T03:06:02Z", "level": "INFO", "message": " Original Size: 1006.11 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T03:06:02Z", "level": "INFO", "message": " Encoded Size: 415.23 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T03:06:02Z", "level": "INFO", "message": " Reduction: 41.3% of original (58.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T03:06:02Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T03:06:02Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T03:06:06Z", "level": "INFO", "message": "Moved Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T03:06:06Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpb9rpow22.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:06:06Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:06:06Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T03:06:06Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T03:06:06Z", "level": "INFO", "message": " Size: 1006.11MB → 415.23MB (41.3% of original, 58.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T03:06:06Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T03:06:06Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T03:06:06Z", "level": "INFO", "message": "Processing: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": "Copied Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T03:06:17Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpnjt9tur_.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:06:17Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T03:08:33Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T03:08:33Z", "level": "INFO", "message": " Original Size: 1134.42 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T03:08:33Z", "level": "INFO", "message": " Encoded Size: 475.13 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T03:08:33Z", "level": "INFO", "message": " Reduction: 41.9% of original (58.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T03:08:33Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T03:08:33Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T03:08:38Z", "level": "INFO", "message": "Moved Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T03:08:38Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpuuz41wfq.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:08:38Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:08:38Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T03:08:38Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T03:08:38Z", "level": "INFO", "message": " Size: 1134.42MB → 475.13MB (41.9% of original, 58.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T03:08:38Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T03:08:38Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T03:08:38Z", "level": "INFO", "message": "Processing: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": "Copied Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T03:08:48Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp9i7exetu.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:08:48Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T03:10:58Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T03:10:58Z", "level": "INFO", "message": " Original Size: 1039.16 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T03:10:58Z", "level": "INFO", "message": " Encoded Size: 373.16 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T03:10:58Z", "level": "INFO", "message": " Reduction: 35.9% of original (64.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T03:10:58Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T03:10:58Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T03:11:01Z", "level": "INFO", "message": "Moved Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T03:11:01Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpfbnyviyv.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:11:01Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:11:01Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T03:11:01Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T03:11:01Z", "level": "INFO", "message": " Size: 1039.16MB → 373.16MB (35.9% of original, 64.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T03:11:01Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T03:11:02Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T03:11:02Z", "level": "INFO", "message": "Processing: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": "Copied Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T03:11:12Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp5x45z7de.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:11:12Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T03:13:33Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T03:13:33Z", "level": "INFO", "message": " Original Size: 1135.33 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T03:13:33Z", "level": "INFO", "message": " Encoded Size: 462.15 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T03:13:33Z", "level": "INFO", "message": " Reduction: 40.7% of original (59.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T03:13:33Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T03:13:33Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T03:13:37Z", "level": "INFO", "message": "Moved Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T03:13:37Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpr755ml19.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:13:37Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:13:37Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T03:13:37Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T03:13:37Z", "level": "INFO", "message": " Size: 1135.33MB → 462.15MB (40.7% of original, 59.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T03:13:37Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T03:13:37Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T03:13:37Z", "level": "INFO", "message": "Processing: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": "Copied Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T03:13:47Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp4afjcp_k.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:13:47Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T03:15:59Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T03:15:59Z", "level": "INFO", "message": " Original Size: 1016.28 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T03:15:59Z", "level": "INFO", "message": " Encoded Size: 417.09 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T03:15:59Z", "level": "INFO", "message": " Reduction: 41.0% of original (59.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T03:15:59Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T03:15:59Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T03:16:02Z", "level": "INFO", "message": "Moved Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T03:16:02Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpqj573e22.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:16:02Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:16:02Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T03:16:02Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T03:16:02Z", "level": "INFO", "message": " Size: 1016.28MB → 417.09MB (41.0% of original, 59.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T03:16:02Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T03:16:03Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T03:16:03Z", "level": "INFO", "message": "Processing: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": "Copied Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T03:16:13Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpeugetqdh.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:16:13Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T03:18:27Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T03:18:27Z", "level": "INFO", "message": " Original Size: 1101.76 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T03:18:27Z", "level": "INFO", "message": " Encoded Size: 477.59 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T03:18:27Z", "level": "INFO", "message": " Reduction: 43.3% of original (56.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T03:18:27Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T03:18:27Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T03:18:31Z", "level": "INFO", "message": "Moved Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T03:18:32Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpdlb_jhdt.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:18:32Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:18:32Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T03:18:32Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T03:18:32Z", "level": "INFO", "message": " Size: 1101.76MB → 477.59MB (43.3% of original, 56.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T03:18:32Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T03:18:32Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T03:18:32Z", "level": "INFO", "message": "Processing: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T03:18:40Z", "level": "INFO", "message": "Copied Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T03:18:40Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T03:18:40Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T03:18:40Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T03:18:41Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmprvfg1wcq.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:18:41Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:18:41Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T03:18:41Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T03:18:41Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T03:18:41Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T03:18:41Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T03:18:41Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T03:18:41Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T03:18:41Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T03:18:41Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T03:18:41Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:18:41Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T03:18:41Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:18:41Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T03:20:51Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T03:20:51Z", "level": "INFO", "message": " Original Size: 942.74 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T03:20:51Z", "level": "INFO", "message": " Encoded Size: 337.79 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T03:20:51Z", "level": "INFO", "message": " Reduction: 35.8% of original (64.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T03:20:51Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T03:20:51Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T03:20:54Z", "level": "INFO", "message": "Moved Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T03:20:54Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmplxabv6qr.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:20:54Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:20:54Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T03:20:54Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T03:20:54Z", "level": "INFO", "message": " Size: 942.74MB → 337.79MB (35.8% of original, 64.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T03:20:54Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T03:20:55Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T03:20:55Z", "level": "INFO", "message": "Processing: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": "Copied Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T03:21:03Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpv9bms2z5.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:21:03Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T03:23:03Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T03:23:03Z", "level": "INFO", "message": " Original Size: 966.55 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T03:23:03Z", "level": "INFO", "message": " Encoded Size: 462.13 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T03:23:03Z", "level": "INFO", "message": " Reduction: 47.8% of original (52.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T03:23:03Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T03:23:03Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T03:23:07Z", "level": "INFO", "message": "Moved Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T03:23:07Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpb79dsux1.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:23:07Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:23:07Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T03:23:07Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T03:23:07Z", "level": "INFO", "message": " Size: 966.55MB → 462.13MB (47.8% of original, 52.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T03:23:07Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T03:23:07Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T03:23:07Z", "level": "INFO", "message": "Processing: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": "Copied Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T03:23:17Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpssk_p4qh.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:23:17Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T03:25:25Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T03:25:25Z", "level": "INFO", "message": " Original Size: 990.31 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T03:25:25Z", "level": "INFO", "message": " Encoded Size: 380.88 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T03:25:25Z", "level": "INFO", "message": " Reduction: 38.5% of original (61.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T03:25:25Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T03:25:25Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T03:25:28Z", "level": "INFO", "message": "Moved Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T03:25:28Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpx1q3z5jf.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:25:28Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:25:28Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T03:25:28Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T03:25:28Z", "level": "INFO", "message": " Size: 990.31MB → 380.88MB (38.5% of original, 61.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T03:25:28Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T03:25:28Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T03:25:28Z", "level": "INFO", "message": "Processing: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": "Copied Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T03:25:39Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpbgn9awmi.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:25:39Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T03:27:54Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T03:27:54Z", "level": "INFO", "message": " Original Size: 1091.07 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T03:27:54Z", "level": "INFO", "message": " Encoded Size: 496.70 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T03:27:54Z", "level": "INFO", "message": " Reduction: 45.5% of original (54.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T03:27:54Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T03:27:54Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T03:27:59Z", "level": "INFO", "message": "Moved Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T03:27:59Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp95a7pjp7.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:27:59Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:27:59Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T03:27:59Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T03:27:59Z", "level": "INFO", "message": " Size: 1091.07MB → 496.7MB (45.5% of original, 54.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T03:27:59Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T03:27:59Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T03:27:59Z", "level": "INFO", "message": "Processing: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T03:28:09Z", "level": "INFO", "message": "Copied Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T03:28:09Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T03:28:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T03:28:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T03:28:10Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpsqxr6xf4.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:28:10Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:28:10Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T03:28:10Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T03:28:10Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T03:28:10Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T03:28:10Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T03:28:10Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T03:28:10Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T03:28:10Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T03:28:10Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T03:28:10Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:28:10Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T03:28:10Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:28:10Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T03:55:56Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T03:55:56Z", "level": "INFO", "message": " Original Size: 1009.92 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T03:55:56Z", "level": "INFO", "message": " Encoded Size: 383.02 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T03:55:56Z", "level": "INFO", "message": " Reduction: 37.9% of original (62.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T03:55:56Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T03:55:56Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T03:55:59Z", "level": "INFO", "message": "Moved Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T03:56:00Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpuiswxvl1.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:56:00Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:56:00Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T03:56:00Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T03:56:00Z", "level": "INFO", "message": " Size: 1009.92MB → 383.02MB (37.9% of original, 62.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T03:56:00Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T03:56:00Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T03:56:00Z", "level": "INFO", "message": "Processing: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": "Copied Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T03:56:10Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpwd9isk8e.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:56:10Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T03:57:58Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T03:57:58Z", "level": "INFO", "message": " Original Size: 1063.08 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T03:57:58Z", "level": "INFO", "message": " Encoded Size: 395.92 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T03:57:58Z", "level": "INFO", "message": " Reduction: 37.2% of original (62.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T03:57:58Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T03:57:58Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T03:58:01Z", "level": "INFO", "message": "Moved Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T03:58:01Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpq0rgipdk.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:58:01Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:58:01Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T03:58:01Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T03:58:01Z", "level": "INFO", "message": " Size: 1063.08MB → 395.92MB (37.2% of original, 62.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T03:58:01Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T03:58:02Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T03:58:02Z", "level": "INFO", "message": "Processing: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": "Copied Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T03:58:11Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmprl36cjf3.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T03:58:11Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:00:01Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:00:01Z", "level": "INFO", "message": " Original Size: 995.78 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:00:01Z", "level": "INFO", "message": " Encoded Size: 430.00 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:00:01Z", "level": "INFO", "message": " Reduction: 43.2% of original (56.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:00:01Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:00:01Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:00:05Z", "level": "INFO", "message": "Moved Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:00:05Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpcnxbwbd9.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:00:05Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:00:05Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:00:05Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:00:05Z", "level": "INFO", "message": " Size: 995.78MB → 430.0MB (43.2% of original, 56.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:00:05Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:00:05Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:00:05Z", "level": "INFO", "message": "Processing: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": "Copied Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:00:17Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp1mpkk_fk.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:00:17Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:02:05Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:02:05Z", "level": "INFO", "message": " Original Size: 1107.29 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:02:05Z", "level": "INFO", "message": " Encoded Size: 594.17 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:02:05Z", "level": "INFO", "message": " Reduction: 53.7% of original (46.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:02:05Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:02:05Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:02:10Z", "level": "INFO", "message": "Moved Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:02:10Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpy4sbhpap.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:02:10Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:02:10Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:02:10Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:02:10Z", "level": "INFO", "message": " Size: 1107.29MB → 594.17MB (53.7% of original, 46.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:02:10Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:02:10Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:02:10Z", "level": "INFO", "message": "Processing: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": "Copied Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:02:20Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpmora65n_.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:02:20Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:04:06Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:04:06Z", "level": "INFO", "message": " Original Size: 1061.47 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:04:06Z", "level": "INFO", "message": " Encoded Size: 469.90 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:04:06Z", "level": "INFO", "message": " Reduction: 44.3% of original (55.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:04:06Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:04:06Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:04:10Z", "level": "INFO", "message": "Moved Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:04:10Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpf6my39ei.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:04:10Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:04:10Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:04:10Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:04:10Z", "level": "INFO", "message": " Size: 1061.47MB → 469.9MB (44.3% of original, 55.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:04:10Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:04:10Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:04:10Z", "level": "INFO", "message": "Processing: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": "Copied Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:04:20Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp_7uba_16.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:04:20Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:06:04Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:06:04Z", "level": "INFO", "message": " Original Size: 1011.62 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:06:04Z", "level": "INFO", "message": " Encoded Size: 464.83 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:06:04Z", "level": "INFO", "message": " Reduction: 45.9% of original (54.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:06:04Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:06:04Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:06:08Z", "level": "INFO", "message": "Moved Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:06:08Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpaj2ffil4.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:06:08Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:06:08Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:06:08Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:06:08Z", "level": "INFO", "message": " Size: 1011.62MB → 464.83MB (45.9% of original, 54.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:06:08Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:06:09Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:06:09Z", "level": "INFO", "message": "Processing: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": "Copied Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:06:18Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpb8x2rofr.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:06:18Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:08:03Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:08:03Z", "level": "INFO", "message": " Original Size: 1007.38 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:08:03Z", "level": "INFO", "message": " Encoded Size: 405.25 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:08:03Z", "level": "INFO", "message": " Reduction: 40.2% of original (59.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:08:03Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:08:03Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:08:07Z", "level": "INFO", "message": "Moved Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:08:07Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpuj6pn8ev.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:08:07Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:08:07Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:08:07Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:08:07Z", "level": "INFO", "message": " Size: 1007.38MB → 405.25MB (40.2% of original, 59.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:08:07Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:08:07Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:08:07Z", "level": "INFO", "message": "Processing: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": "Copied Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:08:18Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp5_ijt8s4.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:08:18Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:10:03Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:10:03Z", "level": "INFO", "message": " Original Size: 1118.48 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:10:03Z", "level": "INFO", "message": " Encoded Size: 425.87 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:10:03Z", "level": "INFO", "message": " Reduction: 38.1% of original (61.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:10:03Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:10:03Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:10:07Z", "level": "INFO", "message": "Moved Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:10:07Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmph9b9whqd.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:10:07Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:10:07Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:10:07Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:10:07Z", "level": "INFO", "message": " Size: 1118.48MB → 425.87MB (38.1% of original, 61.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:10:07Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:10:07Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:10:07Z", "level": "INFO", "message": "Processing: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": "Copied Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:10:16Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpce0pnngt.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:10:16Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:12:02Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:12:02Z", "level": "INFO", "message": " Original Size: 1016.94 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:12:02Z", "level": "INFO", "message": " Encoded Size: 473.16 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:12:02Z", "level": "INFO", "message": " Reduction: 46.5% of original (53.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:12:02Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:12:02Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:12:06Z", "level": "INFO", "message": "Moved Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:12:06Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpiedv7i8n.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:12:06Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:12:06Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:12:06Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:12:06Z", "level": "INFO", "message": " Size: 1016.94MB → 473.16MB (46.5% of original, 53.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:12:06Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:12:06Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:12:06Z", "level": "INFO", "message": "Processing: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:12:15Z", "level": "INFO", "message": "Copied Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:12:15Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:12:15Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:12:15Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:12:16Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpx566m620.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:12:16Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:12:16Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:12:16Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:12:16Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:12:16Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:12:16Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:12:16Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:12:16Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:12:16Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:12:16Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:12:16Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:12:16Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:12:16Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:12:16Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:13:58Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:13:58Z", "level": "INFO", "message": " Original Size: 1068.60 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:13:58Z", "level": "INFO", "message": " Encoded Size: 431.55 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:13:58Z", "level": "INFO", "message": " Reduction: 40.4% of original (59.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:13:58Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:13:58Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:14:01Z", "level": "INFO", "message": "Moved Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:14:02Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmprv39ex87.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:14:02Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:14:02Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:14:02Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:14:02Z", "level": "INFO", "message": " Size: 1068.6MB → 431.55MB (40.4% of original, 59.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:14:02Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:14:02Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:14:02Z", "level": "INFO", "message": "Processing: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": "Copied Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:14:12Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp_dlhvbcy.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:14:12Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:15:58Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:15:58Z", "level": "INFO", "message": " Original Size: 1079.77 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:15:58Z", "level": "INFO", "message": " Encoded Size: 437.23 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:15:58Z", "level": "INFO", "message": " Reduction: 40.5% of original (59.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:15:58Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:15:58Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:16:01Z", "level": "INFO", "message": "Moved Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:16:01Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpoh894gzu.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:16:01Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:16:01Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:16:01Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:16:01Z", "level": "INFO", "message": " Size: 1079.77MB → 437.23MB (40.5% of original, 59.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:16:01Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:16:02Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:16:02Z", "level": "INFO", "message": "Processing: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": "Copied Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:16:12Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpzvdhkkmv.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:16:12Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:17:58Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:17:58Z", "level": "INFO", "message": " Original Size: 1137.78 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:17:58Z", "level": "INFO", "message": " Encoded Size: 468.17 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:17:58Z", "level": "INFO", "message": " Reduction: 41.1% of original (58.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:17:58Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:17:58Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:18:02Z", "level": "INFO", "message": "Moved Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:18:02Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpvycai6sr.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:18:02Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:18:02Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:18:02Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:18:02Z", "level": "INFO", "message": " Size: 1137.78MB → 468.17MB (41.1% of original, 58.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:18:02Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:18:02Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:18:02Z", "level": "INFO", "message": "Processing: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": "Copied Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:18:12Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpoyszu5jf.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:18:12Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:19:56Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:19:56Z", "level": "INFO", "message": " Original Size: 1028.23 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:19:56Z", "level": "INFO", "message": " Encoded Size: 437.09 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:19:56Z", "level": "INFO", "message": " Reduction: 42.5% of original (57.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:19:56Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:19:56Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:20:00Z", "level": "INFO", "message": "Moved Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:20:00Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpcbejq74d.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:20:00Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:20:00Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:20:00Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:20:00Z", "level": "INFO", "message": " Size: 1028.23MB → 437.09MB (42.5% of original, 57.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:20:00Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:20:00Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:20:00Z", "level": "INFO", "message": "Processing: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": "Copied Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:20:09Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp16y08cx2.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:20:09Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:21:54Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:21:54Z", "level": "INFO", "message": " Original Size: 996.51 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:21:54Z", "level": "INFO", "message": " Encoded Size: 405.17 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:21:54Z", "level": "INFO", "message": " Reduction: 40.7% of original (59.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:21:54Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:21:54Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:21:58Z", "level": "INFO", "message": "Moved Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:21:58Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp3vz2oofd.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:21:58Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:21:58Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:21:58Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:21:58Z", "level": "INFO", "message": " Size: 996.51MB → 405.17MB (40.7% of original, 59.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:21:58Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:21:58Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:21:58Z", "level": "INFO", "message": "Processing: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": "Copied Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:22:08Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpzrrk2wrf.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:22:08Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:23:55Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:23:55Z", "level": "INFO", "message": " Original Size: 1112.98 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:23:55Z", "level": "INFO", "message": " Encoded Size: 434.89 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:23:55Z", "level": "INFO", "message": " Reduction: 39.1% of original (60.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:23:55Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:23:55Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:23:59Z", "level": "INFO", "message": "Moved Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:23:59Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp10zn0tzt.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:23:59Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:23:59Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:23:59Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:23:59Z", "level": "INFO", "message": " Size: 1112.98MB → 434.89MB (39.1% of original, 60.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:23:59Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:23:59Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:23:59Z", "level": "INFO", "message": "Processing: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": "Copied Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:24:10Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp103wedw4.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:24:10Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:25:56Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:25:56Z", "level": "INFO", "message": " Original Size: 1161.83 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:25:56Z", "level": "INFO", "message": " Encoded Size: 502.78 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:25:56Z", "level": "INFO", "message": " Reduction: 43.3% of original (56.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:25:56Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:25:56Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:26:01Z", "level": "INFO", "message": "Moved Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:26:01Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp115z8be0.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:26:01Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:26:01Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:26:01Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:26:01Z", "level": "INFO", "message": " Size: 1161.83MB → 502.78MB (43.3% of original, 56.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:26:01Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:26:01Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:26:01Z", "level": "INFO", "message": "Processing: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": "Copied Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:26:11Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpww3nx9gy.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:26:11Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:27:55Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:27:55Z", "level": "INFO", "message": " Original Size: 1070.71 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:27:55Z", "level": "INFO", "message": " Encoded Size: 395.17 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:27:55Z", "level": "INFO", "message": " Reduction: 36.9% of original (63.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:27:55Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:27:55Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:27:59Z", "level": "INFO", "message": "Moved Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:27:59Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpv1fluck7.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:27:59Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:27:59Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:27:59Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:27:59Z", "level": "INFO", "message": " Size: 1070.71MB → 395.17MB (36.9% of original, 63.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:27:59Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:27:59Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:27:59Z", "level": "INFO", "message": "Processing: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": "Copied Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:28:09Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp6_crky_7.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:28:09Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:29:56Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:29:56Z", "level": "INFO", "message": " Original Size: 1030.23 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:29:56Z", "level": "INFO", "message": " Encoded Size: 404.72 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:29:56Z", "level": "INFO", "message": " Reduction: 39.3% of original (60.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:29:56Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:29:56Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:29:59Z", "level": "INFO", "message": "Moved Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:30:00Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpqjc3d35r.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:30:00Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:30:00Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:30:00Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:30:00Z", "level": "INFO", "message": " Size: 1030.23MB → 404.72MB (39.3% of original, 60.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:30:00Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:30:00Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:30:00Z", "level": "INFO", "message": "Processing: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": "Copied Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:30:09Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpu1p3n679.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:30:09Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:31:53Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:31:53Z", "level": "INFO", "message": " Original Size: 1063.59 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:31:53Z", "level": "INFO", "message": " Encoded Size: 411.96 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:31:53Z", "level": "INFO", "message": " Reduction: 38.7% of original (61.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:31:53Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:31:53Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:31:56Z", "level": "INFO", "message": "Moved Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:31:56Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpgrm2vd7o.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:31:56Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:31:56Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:31:56Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:31:56Z", "level": "INFO", "message": " Size: 1063.59MB → 411.96MB (38.7% of original, 61.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:31:56Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:31:57Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:31:57Z", "level": "INFO", "message": "Processing: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": "Copied Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:32:07Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpjpfgo4qa.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:32:07Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:33:51Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:33:51Z", "level": "INFO", "message": " Original Size: 1101.52 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:33:51Z", "level": "INFO", "message": " Encoded Size: 453.63 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:33:51Z", "level": "INFO", "message": " Reduction: 41.2% of original (58.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:33:51Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:33:51Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:33:55Z", "level": "INFO", "message": "Moved Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:33:55Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp41tzz6_6.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:33:55Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:33:55Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:33:55Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:33:55Z", "level": "INFO", "message": " Size: 1101.52MB → 453.63MB (41.2% of original, 58.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:33:55Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:33:55Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:33:55Z", "level": "INFO", "message": "Processing: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": "Copied Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:34:07Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpe8rzxhwr.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:34:07Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:35:54Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:35:54Z", "level": "INFO", "message": " Original Size: 1204.16 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:35:54Z", "level": "INFO", "message": " Encoded Size: 500.78 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:35:54Z", "level": "INFO", "message": " Reduction: 41.6% of original (58.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:35:54Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:35:54Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:35:59Z", "level": "INFO", "message": "Moved Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:35:59Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpk5xbs5t4.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:35:59Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:35:59Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:35:59Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:35:59Z", "level": "INFO", "message": " Size: 1204.16MB → 500.78MB (41.6% of original, 58.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:35:59Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:35:59Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:35:59Z", "level": "INFO", "message": "Processing: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": "Copied Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:36:09Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpr9zgwcg8.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:36:09Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:37:55Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:37:55Z", "level": "INFO", "message": " Original Size: 989.83 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:37:55Z", "level": "INFO", "message": " Encoded Size: 368.13 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:37:55Z", "level": "INFO", "message": " Reduction: 37.2% of original (62.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:37:55Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:37:55Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:37:58Z", "level": "INFO", "message": "Moved Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:37:58Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp9zq1cy74.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:37:58Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:37:58Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:37:58Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:37:58Z", "level": "INFO", "message": " Size: 989.83MB → 368.13MB (37.2% of original, 62.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:37:58Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:37:58Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:37:58Z", "level": "INFO", "message": "Processing: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:38:07Z", "level": "INFO", "message": "Copied Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:38:08Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpjifriw8k.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:38:08Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:39:52Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:39:52Z", "level": "INFO", "message": " Original Size: 1001.29 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:39:52Z", "level": "INFO", "message": " Encoded Size: 386.17 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:39:52Z", "level": "INFO", "message": " Reduction: 38.6% of original (61.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:39:52Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:39:52Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:39:56Z", "level": "INFO", "message": "Moved Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:39:56Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpsi_d2ari.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:39:56Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:39:56Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:39:56Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:39:56Z", "level": "INFO", "message": " Size: 1001.29MB → 386.17MB (38.6% of original, 61.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:39:56Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:39:56Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:39:56Z", "level": "INFO", "message": "Processing: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": "Copied Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:40:05Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpfxyed5pm.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:40:05Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:41:49Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:41:49Z", "level": "INFO", "message": " Original Size: 998.94 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:41:49Z", "level": "INFO", "message": " Encoded Size: 354.12 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:41:49Z", "level": "INFO", "message": " Reduction: 35.5% of original (64.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:41:49Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:41:49Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:41:52Z", "level": "INFO", "message": "Moved Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:41:52Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp3f981heo.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:41:52Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:41:52Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:41:52Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:41:52Z", "level": "INFO", "message": " Size: 998.94MB → 354.12MB (35.4% of original, 64.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:41:52Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:41:52Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:41:52Z", "level": "INFO", "message": "Processing: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": "Copied Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:42:02Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp976z82ox.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:42:02Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:43:47Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:43:47Z", "level": "INFO", "message": " Original Size: 1043.67 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:43:47Z", "level": "INFO", "message": " Encoded Size: 414.27 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:43:47Z", "level": "INFO", "message": " Reduction: 39.7% of original (60.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:43:47Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:43:47Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:43:51Z", "level": "INFO", "message": "Moved Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:43:51Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp5i3q436w.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:43:51Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:43:51Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:43:51Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:43:51Z", "level": "INFO", "message": " Size: 1043.67MB → 414.27MB (39.7% of original, 60.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:43:51Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:43:51Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:43:51Z", "level": "INFO", "message": "Processing: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:44:00Z", "level": "INFO", "message": "Copied Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:44:00Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:44:00Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:44:00Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:44:01Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpcfee0fgh.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:44:01Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:44:01Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:44:01Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:44:01Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:44:01Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:44:01Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:44:01Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:44:01Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:44:01Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:44:01Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:44:01Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:44:01Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:44:01Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:44:01Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:45:45Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:45:45Z", "level": "INFO", "message": " Original Size: 992.35 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:45:45Z", "level": "INFO", "message": " Encoded Size: 360.39 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:45:45Z", "level": "INFO", "message": " Reduction: 36.3% of original (63.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:45:45Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:45:45Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:45:48Z", "level": "INFO", "message": "Moved Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:45:49Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpnkx_hqba.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:45:49Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:45:49Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:45:49Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:45:49Z", "level": "INFO", "message": " Size: 992.35MB → 360.39MB (36.3% of original, 63.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:45:49Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:45:49Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:45:49Z", "level": "INFO", "message": "Processing: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": "Copied Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:45:59Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpqtuy_frq.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:45:59Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:47:44Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:47:44Z", "level": "INFO", "message": " Original Size: 1091.96 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:47:44Z", "level": "INFO", "message": " Encoded Size: 413.30 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:47:44Z", "level": "INFO", "message": " Reduction: 37.8% of original (62.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:47:44Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:47:44Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:47:48Z", "level": "INFO", "message": "Moved Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:47:48Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp0igx4ryk.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:47:48Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:47:48Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:47:48Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:47:48Z", "level": "INFO", "message": " Size: 1091.96MB → 413.3MB (37.8% of original, 62.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:47:48Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:47:48Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:47:48Z", "level": "INFO", "message": "Processing: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": "Copied Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:47:57Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmplenb81z5.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:47:57Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:49:41Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:49:41Z", "level": "INFO", "message": " Original Size: 986.84 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:49:41Z", "level": "INFO", "message": " Encoded Size: 415.30 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:49:41Z", "level": "INFO", "message": " Reduction: 42.1% of original (57.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:49:41Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:49:41Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:49:45Z", "level": "INFO", "message": "Moved Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:49:45Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpvzqrs08w.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:49:45Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:49:45Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:49:45Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:49:45Z", "level": "INFO", "message": " Size: 986.84MB → 415.3MB (42.1% of original, 57.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:49:45Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:49:45Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:49:45Z", "level": "INFO", "message": "Processing: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": "Copied Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:49:56Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpxbt376b0.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:49:56Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:51:43Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:51:43Z", "level": "INFO", "message": " Original Size: 1169.67 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:51:43Z", "level": "INFO", "message": " Encoded Size: 510.70 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:51:43Z", "level": "INFO", "message": " Reduction: 43.7% of original (56.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:51:43Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:51:43Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:51:48Z", "level": "INFO", "message": "Moved Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:51:48Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp4w0m2zty.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:51:48Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:51:48Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:51:48Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:51:48Z", "level": "INFO", "message": " Size: 1169.67MB → 510.7MB (43.7% of original, 56.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:51:48Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:51:48Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:51:48Z", "level": "INFO", "message": "Processing: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": "Copied Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:51:58Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp_u_qh7xs.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:51:58Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:53:42Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:53:42Z", "level": "INFO", "message": " Original Size: 1115.33 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:53:42Z", "level": "INFO", "message": " Encoded Size: 495.59 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:53:42Z", "level": "INFO", "message": " Reduction: 44.4% of original (55.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:53:42Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:53:42Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:53:46Z", "level": "INFO", "message": "Moved Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:53:46Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp93sugjvv.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:53:46Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:53:46Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:53:46Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:53:46Z", "level": "INFO", "message": " Size: 1115.33MB → 495.59MB (44.4% of original, 55.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:53:46Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:53:47Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:53:47Z", "level": "INFO", "message": "Processing: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:53:56Z", "level": "INFO", "message": "Copied Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:53:57Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp0t9t4fev.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:53:57Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:55:42Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:55:42Z", "level": "INFO", "message": " Original Size: 1105.25 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:55:42Z", "level": "INFO", "message": " Encoded Size: 457.97 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:55:42Z", "level": "INFO", "message": " Reduction: 41.4% of original (58.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:55:42Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:55:42Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:55:46Z", "level": "INFO", "message": "Moved Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:55:46Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpd5_c09vr.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:55:46Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:55:46Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:55:46Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:55:46Z", "level": "INFO", "message": " Size: 1105.25MB → 457.97MB (41.4% of original, 58.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:55:46Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:55:47Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:55:47Z", "level": "INFO", "message": "Processing: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:55:57Z", "level": "INFO", "message": "Copied Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:55:58Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpyoxpdjsd.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:55:58Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:57:44Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:57:44Z", "level": "INFO", "message": " Original Size: 1103.58 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:57:44Z", "level": "INFO", "message": " Encoded Size: 449.27 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:57:44Z", "level": "INFO", "message": " Reduction: 40.7% of original (59.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:57:44Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:57:44Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:57:48Z", "level": "INFO", "message": "Moved Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:57:48Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp79qzyor4.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:57:48Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:57:48Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:57:48Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:57:48Z", "level": "INFO", "message": " Size: 1103.58MB → 449.27MB (40.7% of original, 59.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:57:48Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:57:48Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:57:48Z", "level": "INFO", "message": "Processing: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": "Copied Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:57:58Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmptin42gb0.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:57:58Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T04:59:42Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T04:59:42Z", "level": "INFO", "message": " Original Size: 1071.81 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T04:59:42Z", "level": "INFO", "message": " Encoded Size: 443.95 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T04:59:42Z", "level": "INFO", "message": " Reduction: 41.4% of original (58.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T04:59:42Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T04:59:42Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T04:59:46Z", "level": "INFO", "message": "Moved Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T04:59:46Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp2spmgpr9.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:59:46Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:59:46Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T04:59:46Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T04:59:46Z", "level": "INFO", "message": " Size: 1071.81MB → 443.95MB (41.4% of original, 58.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T04:59:46Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T04:59:47Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T04:59:47Z", "level": "INFO", "message": "Processing: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": "Copied Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T04:59:56Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp4uq41tfj.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T04:59:56Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:01:42Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:01:42Z", "level": "INFO", "message": " Original Size: 982.71 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:01:42Z", "level": "INFO", "message": " Encoded Size: 382.99 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:01:42Z", "level": "INFO", "message": " Reduction: 39.0% of original (61.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:01:42Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:01:42Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:01:45Z", "level": "INFO", "message": "Moved Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:01:45Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpjc6xgxk0.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:01:45Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:01:45Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:01:45Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:01:45Z", "level": "INFO", "message": " Size: 982.71MB → 382.99MB (39.0% of original, 61.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:01:45Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:01:45Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:01:45Z", "level": "INFO", "message": "Processing: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": "Copied Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:01:55Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp896ufuk1.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:01:55Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:03:40Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:03:40Z", "level": "INFO", "message": " Original Size: 976.85 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:03:40Z", "level": "INFO", "message": " Encoded Size: 389.93 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:03:40Z", "level": "INFO", "message": " Reduction: 39.9% of original (60.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:03:40Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:03:40Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:03:43Z", "level": "INFO", "message": "Moved Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:03:43Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmphh6qw2md.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:03:43Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:03:43Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:03:43Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:03:43Z", "level": "INFO", "message": " Size: 976.85MB → 389.93MB (39.9% of original, 60.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:03:43Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:03:44Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:03:44Z", "level": "INFO", "message": "Processing: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": "Copied Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:03:53Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmphmtlh7y9.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:03:53Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:05:39Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:05:39Z", "level": "INFO", "message": " Original Size: 1025.92 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:05:39Z", "level": "INFO", "message": " Encoded Size: 410.37 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:05:39Z", "level": "INFO", "message": " Reduction: 40.0% of original (60.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:05:39Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:05:39Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:05:42Z", "level": "INFO", "message": "Moved Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:05:43Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpnp8so2zs.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:05:43Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:05:43Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:05:43Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:05:43Z", "level": "INFO", "message": " Size: 1025.92MB → 410.37MB (40.0% of original, 60.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:05:43Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:05:43Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:05:43Z", "level": "INFO", "message": "Processing: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": "Copied Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:05:52Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp059psy0w.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:05:52Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:07:39Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:07:39Z", "level": "INFO", "message": " Original Size: 986.23 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:07:39Z", "level": "INFO", "message": " Encoded Size: 369.38 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:07:39Z", "level": "INFO", "message": " Reduction: 37.5% of original (62.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:07:39Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:07:39Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:07:42Z", "level": "INFO", "message": "Moved Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:07:43Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpaxon_lhr.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:07:43Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:07:43Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:07:43Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:07:43Z", "level": "INFO", "message": " Size: 986.23MB → 369.38MB (37.5% of original, 62.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:07:43Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:07:43Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:07:43Z", "level": "INFO", "message": "Processing: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": "Copied Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:07:53Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp05qz9995.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:07:53Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:09:40Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:09:40Z", "level": "INFO", "message": " Original Size: 1092.43 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:09:40Z", "level": "INFO", "message": " Encoded Size: 423.97 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:09:40Z", "level": "INFO", "message": " Reduction: 38.8% of original (61.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:09:40Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:09:40Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:09:44Z", "level": "INFO", "message": "Moved Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:09:44Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpou3hb3a6.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:09:44Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:09:44Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:09:44Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:09:44Z", "level": "INFO", "message": " Size: 1092.43MB → 423.97MB (38.8% of original, 61.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:09:44Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:09:44Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:09:44Z", "level": "INFO", "message": "Processing: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": "Copied Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:09:56Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpyiym03sj.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:09:56Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:11:43Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:11:43Z", "level": "INFO", "message": " Original Size: 1121.00 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:11:43Z", "level": "INFO", "message": " Encoded Size: 427.51 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:11:43Z", "level": "INFO", "message": " Reduction: 38.1% of original (61.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:11:43Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:11:43Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:11:47Z", "level": "INFO", "message": "Moved Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:11:47Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpf7ir5yx0.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:11:47Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:11:47Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:11:47Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:11:47Z", "level": "INFO", "message": " Size: 1121.0MB → 427.51MB (38.1% of original, 61.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:11:47Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:11:47Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:11:47Z", "level": "INFO", "message": "Processing: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": "Copied Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:11:58Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmprk54gs2m.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:11:58Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:13:43Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:13:43Z", "level": "INFO", "message": " Original Size: 1098.16 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:13:43Z", "level": "INFO", "message": " Encoded Size: 431.16 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:13:43Z", "level": "INFO", "message": " Reduction: 39.3% of original (60.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:13:43Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:13:43Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:13:47Z", "level": "INFO", "message": "Moved Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:13:47Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpbst82dvv.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:13:47Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:13:47Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:13:47Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:13:47Z", "level": "INFO", "message": " Size: 1098.16MB → 431.16MB (39.3% of original, 60.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:13:47Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:13:47Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:13:47Z", "level": "INFO", "message": "Processing: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": "Copied Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:13:57Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmph79n2178.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:13:57Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:15:45Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:15:45Z", "level": "INFO", "message": " Original Size: 1115.15 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:15:45Z", "level": "INFO", "message": " Encoded Size: 455.98 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:15:45Z", "level": "INFO", "message": " Reduction: 40.9% of original (59.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:15:45Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:15:45Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:15:49Z", "level": "INFO", "message": "Moved Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:15:49Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpqxxsgbo2.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:15:49Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:15:49Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:15:49Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:15:49Z", "level": "INFO", "message": " Size: 1115.15MB → 455.98MB (40.9% of original, 59.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:15:49Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:15:49Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:15:49Z", "level": "INFO", "message": "Processing: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": "Copied Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:15:58Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp8nuw0xio.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:15:58Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:17:42Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:17:42Z", "level": "INFO", "message": " Original Size: 1015.03 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:17:42Z", "level": "INFO", "message": " Encoded Size: 364.67 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:17:42Z", "level": "INFO", "message": " Reduction: 35.9% of original (64.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:17:42Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:17:42Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:17:46Z", "level": "INFO", "message": "Moved Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:17:46Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpwu32bc3r.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:17:46Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:17:46Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:17:46Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:17:46Z", "level": "INFO", "message": " Size: 1015.03MB → 364.67MB (35.9% of original, 64.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:17:46Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:17:46Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:17:46Z", "level": "INFO", "message": "Processing: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": "Copied Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:17:56Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpilv7ojuq.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:17:56Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:19:43Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:19:43Z", "level": "INFO", "message": " Original Size: 1090.01 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:19:43Z", "level": "INFO", "message": " Encoded Size: 407.17 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:19:43Z", "level": "INFO", "message": " Reduction: 37.4% of original (62.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:19:43Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:19:43Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:19:47Z", "level": "INFO", "message": "Moved Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:19:47Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpqg3ya9a4.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:19:47Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:19:47Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:19:47Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:19:47Z", "level": "INFO", "message": " Size: 1090.01MB → 407.17MB (37.4% of original, 62.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:19:47Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:19:47Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:19:47Z", "level": "INFO", "message": "Processing: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": "Copied Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:19:57Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpegs6gp10.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:19:57Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:21:46Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:21:46Z", "level": "INFO", "message": " Original Size: 1054.37 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:21:46Z", "level": "INFO", "message": " Encoded Size: 422.14 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:21:46Z", "level": "INFO", "message": " Reduction: 40.0% of original (60.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:21:46Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:21:46Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:21:50Z", "level": "INFO", "message": "Moved Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:21:50Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpm3_t9lbs.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:21:50Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:21:50Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:21:50Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:21:50Z", "level": "INFO", "message": " Size: 1054.37MB → 422.14MB (40.0% of original, 60.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:21:50Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:21:50Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:21:50Z", "level": "INFO", "message": "Processing: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:21:59Z", "level": "INFO", "message": "Copied Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:21:59Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:21:59Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:21:59Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:22:00Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpa40qgrs6.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:22:00Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:22:00Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:22:00Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:22:00Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:22:00Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:22:00Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:22:00Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:22:00Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:22:00Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:22:00Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:22:00Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:22:00Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:22:00Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:22:00Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:23:46Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:23:46Z", "level": "INFO", "message": " Original Size: 969.34 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:23:46Z", "level": "INFO", "message": " Encoded Size: 368.19 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:23:46Z", "level": "INFO", "message": " Reduction: 38.0% of original (62.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:23:46Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:23:46Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:23:49Z", "level": "INFO", "message": "Moved Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:23:49Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp1grirxto.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:23:49Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:23:49Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:23:49Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:23:49Z", "level": "INFO", "message": " Size: 969.34MB → 368.19MB (38.0% of original, 62.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:23:49Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:23:49Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:23:49Z", "level": "INFO", "message": "Processing: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:23:58Z", "level": "INFO", "message": "Copied Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:23:58Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:23:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:23:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:23:59Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpgin9gmf6.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:23:59Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:23:59Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:23:59Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:23:59Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:23:59Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:23:59Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:23:59Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:23:59Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:23:59Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:23:59Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:23:59Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:23:59Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:23:59Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:23:59Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:25:45Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:25:45Z", "level": "INFO", "message": " Original Size: 995.09 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:25:45Z", "level": "INFO", "message": " Encoded Size: 377.65 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:25:45Z", "level": "INFO", "message": " Reduction: 38.0% of original (62.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:25:45Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:25:45Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:25:48Z", "level": "INFO", "message": "Moved Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:25:48Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpke2cu40y.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:25:48Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:25:48Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:25:48Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:25:48Z", "level": "INFO", "message": " Size: 995.09MB → 377.65MB (38.0% of original, 62.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:25:48Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:25:48Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:25:48Z", "level": "INFO", "message": "Processing: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": "Copied Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:25:58Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpmsca6hxg.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:25:58Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:27:43Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:27:43Z", "level": "INFO", "message": " Original Size: 1088.62 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:27:43Z", "level": "INFO", "message": " Encoded Size: 417.88 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:27:43Z", "level": "INFO", "message": " Reduction: 38.4% of original (61.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:27:43Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:27:43Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:27:46Z", "level": "INFO", "message": "Moved Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:27:47Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmppyr9y3q2.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:27:47Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:27:47Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:27:47Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:27:47Z", "level": "INFO", "message": " Size: 1088.62MB → 417.88MB (38.4% of original, 61.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:27:47Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:27:47Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:27:47Z", "level": "INFO", "message": "Processing: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:27:56Z", "level": "INFO", "message": "Copied Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:27:56Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:27:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:27:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:27:57Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp80jbrv6t.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:27:57Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:27:57Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:27:57Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:27:57Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:27:57Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:27:57Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:27:57Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:27:57Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:27:57Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:27:57Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:27:57Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:27:57Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:27:57Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:27:57Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:29:40Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:29:40Z", "level": "INFO", "message": " Original Size: 1065.41 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:29:40Z", "level": "INFO", "message": " Encoded Size: 419.02 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:29:40Z", "level": "INFO", "message": " Reduction: 39.3% of original (60.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:29:40Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:29:40Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:29:44Z", "level": "INFO", "message": "Moved Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:29:44Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpix3d8w_e.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:29:44Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:29:44Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:29:44Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:29:44Z", "level": "INFO", "message": " Size: 1065.41MB → 419.02MB (39.3% of original, 60.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:29:44Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:29:44Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:29:44Z", "level": "INFO", "message": "Processing: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": "Copied Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:29:54Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpwh_y53kk.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:29:54Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:31:38Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:31:38Z", "level": "INFO", "message": " Original Size: 1105.87 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:31:38Z", "level": "INFO", "message": " Encoded Size: 427.10 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:31:38Z", "level": "INFO", "message": " Reduction: 38.6% of original (61.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:31:38Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:31:38Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:31:41Z", "level": "INFO", "message": "Moved Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:31:41Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpywrst62u.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:31:41Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:31:41Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:31:41Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:31:41Z", "level": "INFO", "message": " Size: 1105.87MB → 427.1MB (38.6% of original, 61.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:31:41Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:31:42Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:31:42Z", "level": "INFO", "message": "Processing: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": "Copied Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:31:51Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmppmuen1ov.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:31:51Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:33:35Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:33:35Z", "level": "INFO", "message": " Original Size: 1083.40 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:33:35Z", "level": "INFO", "message": " Encoded Size: 437.15 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:33:35Z", "level": "INFO", "message": " Reduction: 40.3% of original (59.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:33:35Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:33:35Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:33:38Z", "level": "INFO", "message": "Moved Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:33:39Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmph3qrc0j9.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:33:39Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:33:39Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:33:39Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:33:39Z", "level": "INFO", "message": " Size: 1083.4MB → 437.15MB (40.3% of original, 59.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:33:39Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:33:39Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:33:39Z", "level": "INFO", "message": "Processing: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": "Copied Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:33:50Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp31mhk52h.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:33:50Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:35:35Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:35:35Z", "level": "INFO", "message": " Original Size: 1149.25 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:35:35Z", "level": "INFO", "message": " Encoded Size: 460.99 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:35:35Z", "level": "INFO", "message": " Reduction: 40.1% of original (59.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:35:35Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:35:35Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:35:39Z", "level": "INFO", "message": "Moved Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:35:39Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpm0av314a.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:35:39Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:35:39Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:35:39Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:35:39Z", "level": "INFO", "message": " Size: 1149.25MB → 460.99MB (40.1% of original, 59.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:35:39Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:35:39Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:35:39Z", "level": "INFO", "message": "Processing: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": "Copied Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:35:51Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp7wj31vcv.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:35:51Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:37:38Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:37:38Z", "level": "INFO", "message": " Original Size: 1272.40 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:37:38Z", "level": "INFO", "message": " Encoded Size: 516.99 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:37:38Z", "level": "INFO", "message": " Reduction: 40.6% of original (59.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:37:38Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:37:38Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:37:42Z", "level": "INFO", "message": "Moved Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:37:42Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpkdkw7ft8.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:37:42Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:37:42Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:37:42Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:37:42Z", "level": "INFO", "message": " Size: 1272.4MB → 516.99MB (40.6% of original, 59.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:37:42Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:37:43Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:37:43Z", "level": "INFO", "message": "Processing: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": "Copied Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:37:54Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp4m9_02t9.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:37:54Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:39:39Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:39:39Z", "level": "INFO", "message": " Original Size: 1237.25 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:39:39Z", "level": "INFO", "message": " Encoded Size: 538.63 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:39:39Z", "level": "INFO", "message": " Reduction: 43.5% of original (56.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:39:39Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:39:39Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:39:43Z", "level": "INFO", "message": "Moved Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:39:44Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp7v9jhl5c.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:39:44Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:39:44Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:39:44Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:39:44Z", "level": "INFO", "message": " Size: 1237.25MB → 538.63MB (43.5% of original, 56.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:39:44Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:39:44Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:39:44Z", "level": "INFO", "message": "Processing: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": "Copied Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:39:55Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpe6ft9mfd.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:39:55Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:41:39Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:41:39Z", "level": "INFO", "message": " Original Size: 1238.58 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:41:39Z", "level": "INFO", "message": " Encoded Size: 550.56 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:41:39Z", "level": "INFO", "message": " Reduction: 44.5% of original (55.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:41:39Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:41:39Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:41:44Z", "level": "INFO", "message": "Moved Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:41:44Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpqn5jrul6.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:41:44Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:41:44Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:41:44Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:41:44Z", "level": "INFO", "message": " Size: 1238.58MB → 550.56MB (44.5% of original, 55.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:41:44Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:41:44Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:41:44Z", "level": "INFO", "message": "Processing: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": "Copied Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:41:56Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpqp_8luf_.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:41:56Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:43:40Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:43:40Z", "level": "INFO", "message": " Original Size: 1242.46 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:43:40Z", "level": "INFO", "message": " Encoded Size: 498.66 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:43:40Z", "level": "INFO", "message": " Reduction: 40.1% of original (59.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:43:40Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:43:40Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:43:45Z", "level": "INFO", "message": "Moved Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:43:45Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpxs2jf440.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:43:45Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:43:45Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:43:45Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:43:45Z", "level": "INFO", "message": " Size: 1242.46MB → 498.66MB (40.1% of original, 59.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:43:45Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:43:45Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:43:45Z", "level": "INFO", "message": "Processing: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": "Copied Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:43:56Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpfkf4us1w.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:43:56Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:45:39Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:45:39Z", "level": "INFO", "message": " Original Size: 1235.03 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:45:39Z", "level": "INFO", "message": " Encoded Size: 556.46 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:45:39Z", "level": "INFO", "message": " Reduction: 45.1% of original (54.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:45:39Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:45:39Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:45:44Z", "level": "INFO", "message": "Moved Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:45:44Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmptz51dym9.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:45:44Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:45:44Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:45:44Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:45:44Z", "level": "INFO", "message": " Size: 1235.03MB → 556.46MB (45.1% of original, 54.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:45:44Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:45:44Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:45:44Z", "level": "INFO", "message": "Processing: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:45:55Z", "level": "INFO", "message": "Copied Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:45:55Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:45:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:45:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:45:56Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp75hnn4dw.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:45:56Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:45:56Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:45:56Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:45:56Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:45:56Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:45:56Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:45:56Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:45:56Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:45:56Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:45:56Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:45:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:45:56Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:45:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:45:56Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:47:41Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:47:41Z", "level": "INFO", "message": " Original Size: 1253.20 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:47:41Z", "level": "INFO", "message": " Encoded Size: 536.57 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:47:41Z", "level": "INFO", "message": " Reduction: 42.8% of original (57.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:47:41Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:47:41Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:47:45Z", "level": "INFO", "message": "Moved Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:47:45Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpts76c_05.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:47:45Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:47:45Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:47:45Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:47:45Z", "level": "INFO", "message": " Size: 1253.2MB → 536.57MB (42.8% of original, 57.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:47:45Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:47:46Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:47:46Z", "level": "INFO", "message": "Processing: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": "Copied Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:47:57Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpgz2s7vft.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:47:57Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:49:47Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:49:47Z", "level": "INFO", "message": " Original Size: 1276.06 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:49:47Z", "level": "INFO", "message": " Encoded Size: 588.42 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:49:47Z", "level": "INFO", "message": " Reduction: 46.1% of original (53.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:49:47Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:49:47Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:49:52Z", "level": "INFO", "message": "Moved Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:49:52Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp70h7_9fn.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:49:52Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:49:52Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:49:52Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:49:52Z", "level": "INFO", "message": " Size: 1276.06MB → 588.42MB (46.1% of original, 53.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:49:52Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:49:53Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:49:53Z", "level": "INFO", "message": "Processing: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:50:05Z", "level": "INFO", "message": "Copied Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:50:06Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpmgssr1kk.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:50:06Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:52:00Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:52:00Z", "level": "INFO", "message": " Original Size: 1295.19 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:52:00Z", "level": "INFO", "message": " Encoded Size: 583.00 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:52:00Z", "level": "INFO", "message": " Reduction: 45.0% of original (55.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:52:00Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:52:00Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:52:05Z", "level": "INFO", "message": "Moved Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:52:05Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpw7nth394.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:52:05Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:52:05Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:52:05Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:52:05Z", "level": "INFO", "message": " Size: 1295.19MB → 583.0MB (45.0% of original, 55.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:52:05Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:52:06Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:52:06Z", "level": "INFO", "message": "Processing: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": "Copied Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:52:16Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpw7hx24xl.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:52:16Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:54:06Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:54:06Z", "level": "INFO", "message": " Original Size: 1192.28 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:54:06Z", "level": "INFO", "message": " Encoded Size: 508.04 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:54:06Z", "level": "INFO", "message": " Reduction: 42.6% of original (57.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:54:06Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:54:06Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:54:11Z", "level": "INFO", "message": "Moved Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:54:11Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp30oyhiz9.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:54:11Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:54:11Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:54:11Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:54:11Z", "level": "INFO", "message": " Size: 1192.28MB → 508.04MB (42.6% of original, 57.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:54:11Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:54:11Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:54:11Z", "level": "INFO", "message": "Processing: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": "Copied Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:54:22Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpxu0_cdpa.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:54:22Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:56:44Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:56:44Z", "level": "INFO", "message": " Original Size: 1250.57 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:56:44Z", "level": "INFO", "message": " Encoded Size: 512.81 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:56:44Z", "level": "INFO", "message": " Reduction: 41.0% of original (59.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:56:44Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:56:44Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:56:48Z", "level": "INFO", "message": "Moved Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:56:48Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpmm52owma.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:56:48Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:56:48Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:56:48Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:56:48Z", "level": "INFO", "message": " Size: 1250.57MB → 512.81MB (41.0% of original, 59.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:56:48Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:56:49Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:56:49Z", "level": "INFO", "message": "Processing: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": "Copied Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:57:00Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp0g_t86da.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:57:00Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T05:59:25Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T05:59:25Z", "level": "INFO", "message": " Original Size: 1224.81 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T05:59:25Z", "level": "INFO", "message": " Encoded Size: 479.53 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T05:59:25Z", "level": "INFO", "message": " Reduction: 39.2% of original (60.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T05:59:25Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T05:59:25Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T05:59:29Z", "level": "INFO", "message": "Moved Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T05:59:29Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpn1mb2_1n.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:59:29Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:59:29Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T05:59:29Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T05:59:29Z", "level": "INFO", "message": " Size: 1224.81MB → 479.53MB (39.2% of original, 60.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T05:59:29Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T05:59:29Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T05:59:29Z", "level": "INFO", "message": "Processing: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": "Copied Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T05:59:40Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmpkjqod8ck.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 173} +{"timestamp": "2026-01-01T05:59:40Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:02:09Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T06:02:09Z", "level": "INFO", "message": " Original Size: 1230.21 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T06:02:09Z", "level": "INFO", "message": " Encoded Size: 462.75 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T06:02:09Z", "level": "INFO", "message": " Reduction: 37.6% of original (62.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T06:02:09Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T06:02:09Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T06:02:13Z", "level": "INFO", "message": "Moved Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 346} +{"timestamp": "2026-01-01T06:02:13Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\AppData\\\\Local\\\\Temp\\\\tmp5knt63cc.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 74} +{"timestamp": "2026-01-01T06:02:13Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 113} +{"timestamp": "2026-01-01T06:02:13Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 386} +{"timestamp": "2026-01-01T06:02:13Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 387} +{"timestamp": "2026-01-01T06:02:13Z", "level": "INFO", "message": " Size: 1230.21MB → 462.75MB (37.6% of original, 62.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 388} +{"timestamp": "2026-01-01T06:02:13Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 389} +{"timestamp": "2026-01-01T06:02:14Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T06:02:14Z", "level": "INFO", "message": "Processing: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Supernatural -> P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 41} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:02:42Z", "level": "INFO", "message": "Processing: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 102} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": "Copied Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 107} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 128} +{"timestamp": "2026-01-01T06:02:53Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\tmp0ctaadvc.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 78} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 117} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 177} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 177} +{"timestamp": "2026-01-01T06:02:53Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:05:12Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T06:05:12Z", "level": "INFO", "message": " Original Size: 1203.35 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T06:05:12Z", "level": "INFO", "message": " Encoded Size: 461.29 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T06:05:12Z", "level": "INFO", "message": " Reduction: 38.3% of original (61.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T06:05:12Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T06:05:12Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T06:05:16Z", "level": "INFO", "message": "Moved Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 347} +{"timestamp": "2026-01-01T06:05:16Z", "level": "WARNING", "message": "Error querying Sonarr: 404 Client Error: Not Found for url: http://10.0.0.10:8989/api/v3/api/v3/episode", "module": "sonarr_radarr_helper", "funcName": "get_sonarr_file_info", "line": 89} +{"timestamp": "2026-01-01T06:05:16Z", "level": "WARNING", "message": "Error querying Radarr: 404 Client Error: Not Found for url: http://10.0.0.10:7878/api/v3/api/v3/movie", "module": "sonarr_radarr_helper", "funcName": "get_radarr_file_info", "line": 126} +{"timestamp": "2026-01-01T06:05:16Z", "level": "INFO", "message": "File not found in Sonarr/Radarr, skipping rename: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "rename_output_file", "line": 244} +{"timestamp": "2026-01-01T06:05:16Z", "level": "INFO", "message": "Applied Sonarr/Radarr naming convention and release group update", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 368} +{"timestamp": "2026-01-01T06:05:17Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\tmptbjijt4y.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 78} +{"timestamp": "2026-01-01T06:05:17Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 117} +{"timestamp": "2026-01-01T06:05:17Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 410} +{"timestamp": "2026-01-01T06:05:17Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 411} +{"timestamp": "2026-01-01T06:05:17Z", "level": "INFO", "message": " Size: 1203.35MB → 461.29MB (38.3% of original, 61.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 412} +{"timestamp": "2026-01-01T06:05:17Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 413} +{"timestamp": "2026-01-01T06:05:17Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 419} +{"timestamp": "2026-01-01T06:05:17Z", "level": "INFO", "message": "Processing: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 102} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": "Copied Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 107} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 128} +{"timestamp": "2026-01-01T06:05:29Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\tmpy84ldue9.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 78} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 117} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 177} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 177} +{"timestamp": "2026-01-01T06:05:29Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:07:32Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T06:07:32Z", "level": "INFO", "message": " Original Size: 1257.37 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T06:07:32Z", "level": "INFO", "message": " Encoded Size: 643.97 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T06:07:32Z", "level": "INFO", "message": " Reduction: 51.2% of original (48.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T06:07:32Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T06:07:32Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T06:07:37Z", "level": "INFO", "message": "Moved Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 347} +{"timestamp": "2026-01-01T06:07:37Z", "level": "WARNING", "message": "Error querying Sonarr: 404 Client Error: Not Found for url: http://10.0.0.10:8989/api/v3/api/v3/episode", "module": "sonarr_radarr_helper", "funcName": "get_sonarr_file_info", "line": 89} +{"timestamp": "2026-01-01T06:07:37Z", "level": "WARNING", "message": "Error querying Radarr: 404 Client Error: Not Found for url: http://10.0.0.10:7878/api/v3/api/v3/movie", "module": "sonarr_radarr_helper", "funcName": "get_radarr_file_info", "line": 126} +{"timestamp": "2026-01-01T06:07:37Z", "level": "INFO", "message": "File not found in Sonarr/Radarr, skipping rename: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "rename_output_file", "line": 244} +{"timestamp": "2026-01-01T06:07:37Z", "level": "INFO", "message": "Applied Sonarr/Radarr naming convention and release group update", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 368} +{"timestamp": "2026-01-01T06:07:37Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', \"processing\\\\Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE.mkv\", '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\tmpqac6u8j9.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 78} +{"timestamp": "2026-01-01T06:07:37Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 117} +{"timestamp": "2026-01-01T06:07:37Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 410} +{"timestamp": "2026-01-01T06:07:37Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 411} +{"timestamp": "2026-01-01T06:07:37Z", "level": "INFO", "message": " Size: 1257.37MB → 643.97MB (51.2% of original, 48.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 412} +{"timestamp": "2026-01-01T06:07:37Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 413} +{"timestamp": "2026-01-01T06:07:38Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 419} +{"timestamp": "2026-01-01T06:07:38Z", "level": "INFO", "message": "Processing: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 102} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Supernatural -> P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 41} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:09:47Z", "level": "INFO", "message": "Processing: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 102} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": "Copied Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 107} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 128} +{"timestamp": "2026-01-01T06:09:58Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'processing\\\\Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\tmphgfoppkr.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 78} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 117} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 177} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 177} +{"timestamp": "2026-01-01T06:09:58Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Supernatural -> P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 41} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 98} +{"timestamp": "2026-01-01T06:10:59Z", "level": "INFO", "message": "Processing: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 102} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": "Copied Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 107} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 128} +{"timestamp": "2026-01-01T06:11:09Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\tmptqnnidky.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 78} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 117} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 177} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 177} +{"timestamp": "2026-01-01T06:11:09Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:13:03Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T06:13:03Z", "level": "INFO", "message": " Original Size: 1145.45 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T06:13:03Z", "level": "INFO", "message": " Encoded Size: 447.79 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T06:13:03Z", "level": "INFO", "message": " Reduction: 39.1% of original (60.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T06:13:03Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T06:13:03Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T06:13:07Z", "level": "INFO", "message": "Moved Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 347} +{"timestamp": "2026-01-01T06:13:07Z", "level": "WARNING", "message": "Error querying Sonarr: 'str' object has no attribute 'get'", "module": "sonarr_radarr_helper", "funcName": "get_sonarr_file_info", "line": 121} +{"timestamp": "2026-01-01T06:13:07Z", "level": "WARNING", "message": "Error querying Radarr: 'str' object has no attribute 'get'", "module": "sonarr_radarr_helper", "funcName": "get_radarr_file_info", "line": 164} +{"timestamp": "2026-01-01T06:13:07Z", "level": "INFO", "message": "File not found in Sonarr/Radarr, skipping rename: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "rename_output_file", "line": 282} +{"timestamp": "2026-01-01T06:13:07Z", "level": "INFO", "message": "Applied Sonarr/Radarr naming convention and release group update", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 370} +{"timestamp": "2026-01-01T06:13:07Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\tmpnhmnfb0b.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 78} +{"timestamp": "2026-01-01T06:13:07Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 117} +{"timestamp": "2026-01-01T06:13:07Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 412} +{"timestamp": "2026-01-01T06:13:07Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 413} +{"timestamp": "2026-01-01T06:13:07Z", "level": "INFO", "message": " Size: 1145.45MB → 447.79MB (39.1% of original, 60.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 414} +{"timestamp": "2026-01-01T06:13:07Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 415} +{"timestamp": "2026-01-01T06:13:08Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 421} +{"timestamp": "2026-01-01T06:13:08Z", "level": "INFO", "message": "Processing: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 102} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": "Copied Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 107} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 128} +{"timestamp": "2026-01-01T06:13:20Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\tmpwbqczp5o.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 78} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 117} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 177} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 177} +{"timestamp": "2026-01-01T06:13:20Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Supernatural -> P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 41} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Skipping: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:16:05Z", "level": "INFO", "message": "Processing: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": "Copied Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 137} +{"timestamp": "2026-01-01T06:16:16Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\tmp3ueknvrp.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 88} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 131} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 191} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 191} +{"timestamp": "2026-01-01T06:16:16Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:18:39Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T06:18:39Z", "level": "INFO", "message": " Original Size: 1243.23 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T06:18:39Z", "level": "INFO", "message": " Encoded Size: 531.93 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T06:18:39Z", "level": "INFO", "message": " Reduction: 42.8% of original (57.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T06:18:39Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T06:18:39Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T06:18:43Z", "level": "INFO", "message": "Moved Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 356} +{"timestamp": "2026-01-01T06:18:43Z", "level": "WARNING", "message": "Error querying Sonarr: 'str' object has no attribute 'get'", "module": "sonarr_radarr_helper", "funcName": "get_sonarr_file_info", "line": 121} +{"timestamp": "2026-01-01T06:18:43Z", "level": "WARNING", "message": "Error querying Radarr: 'str' object has no attribute 'get'", "module": "sonarr_radarr_helper", "funcName": "get_radarr_file_info", "line": 164} +{"timestamp": "2026-01-01T06:18:43Z", "level": "INFO", "message": "File not found in Sonarr/Radarr, skipping rename: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "rename_output_file", "line": 282} +{"timestamp": "2026-01-01T06:18:43Z", "level": "INFO", "message": "Applied Sonarr/Radarr naming convention and release group update", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 379} +{"timestamp": "2026-01-01T06:18:43Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\tmp4h1hlu1r.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 88} +{"timestamp": "2026-01-01T06:18:43Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 131} +{"timestamp": "2026-01-01T06:18:43Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 421} +{"timestamp": "2026-01-01T06:18:43Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 422} +{"timestamp": "2026-01-01T06:18:43Z", "level": "INFO", "message": " Size: 1243.23MB → 531.93MB (42.8% of original, 57.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 423} +{"timestamp": "2026-01-01T06:18:43Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 424} +{"timestamp": "2026-01-01T06:18:44Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 430} +{"timestamp": "2026-01-01T06:18:44Z", "level": "INFO", "message": "Processing: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": "Copied Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 137} +{"timestamp": "2026-01-01T06:18:54Z", "level": "WARNING", "message": "Failed to calculate bitrate for stream 0: Command '['ffmpeg', '-y', '-i', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE.mkv', '-map', '0:a:0', '-c', 'copy', 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\tmp1pkl9eve.aac']' returned non-zero exit status 4294967274.. Will fall back to metadata.", "module": "audio_handler", "funcName": "calculate_stream_bitrate", "line": 88} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": "Stream 1: Using fallback bitrate 256 kbps", "module": "audio_handler", "funcName": "get_audio_streams", "line": 131} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 191} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 191} +{"timestamp": "2026-01-01T06:18:54Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Supernatural -> P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 41} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Skipping: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:22:56Z", "level": "INFO", "message": "Processing: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T06:23:07Z", "level": "INFO", "message": "Copied Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T06:23:07Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:23:07Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:23:07Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 137} +{"timestamp": "2026-01-01T06:23:08Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:23:08Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:23:08Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:23:08Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:23:08Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:23:08Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:23:08Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:23:08Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:23:08Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:23:08Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 219} +{"timestamp": "2026-01-01T06:23:08Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:23:08Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 219} +{"timestamp": "2026-01-01T06:23:08Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:26:40Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 64} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Skipping: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:26:41Z", "level": "INFO", "message": "Processing: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T06:26:51Z", "level": "INFO", "message": "Copied Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T06:26:51Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:26:51Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:26:51Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 137} +{"timestamp": "2026-01-01T06:26:53Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:26:53Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:26:53Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:26:53Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:26:53Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:26:53Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:26:53Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:26:53Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:26:53Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:26:53Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:26:53Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 257kbps | Action: COPY (preserve) | Target: 257kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:26:53Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:26:53Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:29:16Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T06:29:16Z", "level": "INFO", "message": " Original Size: 1200.72 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T06:29:16Z", "level": "INFO", "message": " Encoded Size: 465.67 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T06:29:16Z", "level": "INFO", "message": " Reduction: 38.8% of original (61.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T06:29:16Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T06:29:16Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T06:29:20Z", "level": "INFO", "message": "Moved Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 356} +{"timestamp": "2026-01-01T06:29:20Z", "level": "WARNING", "message": "Error querying Sonarr: 404 Client Error: Not Found for url: http://10.0.0.10:8989/api/v3/api/v3/episode", "module": "sonarr_radarr_helper", "funcName": "get_sonarr_file_info", "line": 135} +{"timestamp": "2026-01-01T06:29:20Z", "level": "WARNING", "message": "Error querying Radarr: 404 Client Error: Not Found for url: http://10.0.0.10:7878/api/v3/api/v3/movie", "module": "sonarr_radarr_helper", "funcName": "get_radarr_file_info", "line": 178} +{"timestamp": "2026-01-01T06:29:20Z", "level": "INFO", "message": "File not found in Sonarr/Radarr, skipping rename: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "rename_output_file", "line": 296} +{"timestamp": "2026-01-01T06:29:20Z", "level": "INFO", "message": "Applied Sonarr/Radarr naming convention and release group update", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 379} +{"timestamp": "2026-01-01T06:29:22Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 421} +{"timestamp": "2026-01-01T06:29:22Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 422} +{"timestamp": "2026-01-01T06:29:22Z", "level": "INFO", "message": " Size: 1200.72MB → 465.67MB (38.8% of original, 61.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 423} +{"timestamp": "2026-01-01T06:29:22Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 424} +{"timestamp": "2026-01-01T06:29:22Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 430} +{"timestamp": "2026-01-01T06:29:22Z", "level": "INFO", "message": "Processing: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T06:29:34Z", "level": "INFO", "message": "Copied Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T06:29:34Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:29:34Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:29:34Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 137} +{"timestamp": "2026-01-01T06:29:36Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:29:36Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:29:36Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:29:36Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:29:36Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:29:36Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:29:36Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:29:36Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:29:36Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:29:36Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:29:36Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:29:36Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:29:36Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 64} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Skipping: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:32:58Z", "level": "INFO", "message": "Processing: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T06:33:09Z", "level": "INFO", "message": "Copied Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T06:33:09Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:33:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:33:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 137} +{"timestamp": "2026-01-01T06:33:10Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:33:10Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:33:10Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:33:10Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:33:10Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:33:10Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:33:10Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:33:10Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:33:10Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:33:10Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:33:10Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 257kbps | Action: COPY (preserve) | Target: 257kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:33:10Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:33:10Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:35:35Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T06:35:35Z", "level": "INFO", "message": " Original Size: 1206.39 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T06:35:35Z", "level": "INFO", "message": " Encoded Size: 476.78 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T06:35:35Z", "level": "INFO", "message": " Reduction: 39.5% of original (60.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T06:35:35Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T06:35:35Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T06:35:39Z", "level": "INFO", "message": "Moved Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 356} +{"timestamp": "2026-01-01T06:35:39Z", "level": "WARNING", "message": "Error querying Sonarr: 400 Client Error: Bad Request for url: http://10.0.0.10:8989/api/v3/episode", "module": "sonarr_radarr_helper", "funcName": "get_sonarr_file_info", "line": 135} +{"timestamp": "2026-01-01T06:35:42Z", "level": "INFO", "message": "File not found in Sonarr/Radarr, skipping rename: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "rename_output_file", "line": 296} +{"timestamp": "2026-01-01T06:35:42Z", "level": "INFO", "message": "Applied Sonarr/Radarr naming convention and release group update", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 379} +{"timestamp": "2026-01-01T06:35:44Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 421} +{"timestamp": "2026-01-01T06:35:44Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 422} +{"timestamp": "2026-01-01T06:35:44Z", "level": "INFO", "message": " Size: 1206.39MB → 476.78MB (39.5% of original, 60.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 423} +{"timestamp": "2026-01-01T06:35:44Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 424} +{"timestamp": "2026-01-01T06:35:44Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 430} +{"timestamp": "2026-01-01T06:35:44Z", "level": "INFO", "message": "Processing: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T06:35:55Z", "level": "INFO", "message": "Copied Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T06:35:55Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:35:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:35:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 137} +{"timestamp": "2026-01-01T06:35:56Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:35:56Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:35:56Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:35:56Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:35:56Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:35:56Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:35:56Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:35:56Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:35:56Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:35:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:35:56Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:35:56Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:35:56Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 64} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Skipping: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:41:44Z", "level": "INFO", "message": "Processing: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T06:41:54Z", "level": "INFO", "message": "Copied Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T06:41:54Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:41:54Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:41:54Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 137} +{"timestamp": "2026-01-01T06:41:55Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:41:55Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:41:55Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:41:55Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:41:55Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:41:55Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:41:55Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:41:55Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:41:55Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:41:55Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:41:55Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:41:55Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:41:55Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:44:22Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T06:44:22Z", "level": "INFO", "message": " Original Size: 1155.55 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T06:44:22Z", "level": "INFO", "message": " Encoded Size: 406.48 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T06:44:22Z", "level": "INFO", "message": " Reduction: 35.2% of original (64.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T06:44:22Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T06:44:22Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T06:44:26Z", "level": "INFO", "message": "Moved Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 356} +{"timestamp": "2026-01-01T06:44:44Z", "level": "INFO", "message": "File not found in Sonarr/Radarr, skipping rename: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "rename_output_file", "line": 317} +{"timestamp": "2026-01-01T06:44:44Z", "level": "INFO", "message": "Applied Sonarr/Radarr naming convention and release group update", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 379} +{"timestamp": "2026-01-01T06:44:45Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 421} +{"timestamp": "2026-01-01T06:44:45Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 422} +{"timestamp": "2026-01-01T06:44:45Z", "level": "INFO", "message": " Size: 1155.55MB → 406.48MB (35.2% of original, 64.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 423} +{"timestamp": "2026-01-01T06:44:45Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 424} +{"timestamp": "2026-01-01T06:44:46Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 430} +{"timestamp": "2026-01-01T06:44:46Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T06:44:57Z", "level": "INFO", "message": "Copied Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T06:44:57Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:44:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:44:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 137} +{"timestamp": "2026-01-01T06:44:59Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:44:59Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:44:59Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:44:59Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:44:59Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:44:59Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:44:59Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:44:59Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:44:59Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:44:59Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:44:59Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:44:59Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:44:59Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 64} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Skipping: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:45:14Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T06:45:25Z", "level": "INFO", "message": "Copied Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T06:45:25Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:45:25Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:45:25Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 137} +{"timestamp": "2026-01-01T06:45:27Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:45:27Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:45:27Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:45:27Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:45:27Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:45:27Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:45:27Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:45:27Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:45:27Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:45:27Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:45:27Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 255kbps | Action: COPY (preserve) | Target: 255kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:45:27Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:45:27Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 64} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:14Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Skipping: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:48:15Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T06:48:25Z", "level": "INFO", "message": "Copied Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T06:48:44Z", "level": "INFO", "message": "Pre-check: File not found in Sonarr/Radarr. Continuing with encoding.", "module": "process_manager", "funcName": "process_folder", "line": 147} +{"timestamp": "2026-01-01T06:48:44Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:48:44Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:48:44Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 170} +{"timestamp": "2026-01-01T06:48:45Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:48:45Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:48:45Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:48:45Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:48:45Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:48:45Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:48:45Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:48:45Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:48:45Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:48:45Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:48:45Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 255kbps | Action: COPY (preserve) | Target: 255kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:48:45Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:48:45Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 64} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:51:59Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T06:52:00Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T06:52:10Z", "level": "INFO", "message": "Copied Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T06:52:28Z", "level": "INFO", "message": "Pre-check: File not found in Sonarr/Radarr. Continuing with encoding.", "module": "process_manager", "funcName": "process_folder", "line": 147} +{"timestamp": "2026-01-01T06:52:28Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T06:52:28Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T06:52:28Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 170} +{"timestamp": "2026-01-01T06:52:30Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T06:52:30Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T06:52:30Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T06:52:30Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T06:52:30Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T06:52:30Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T06:52:30Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T06:52:30Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T06:52:30Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T06:52:30Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:52:30Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 255kbps | Action: COPY (preserve) | Target: 255kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T06:52:30Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T06:52:30Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T07:04:36Z", "level": "INFO", "message": "Sonarr cache loaded: 0 episodes from 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 136} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 185} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:38Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Skipping: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:04:39Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T07:04:50Z", "level": "INFO", "message": "Copied Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T07:05:08Z", "level": "INFO", "message": "Pre-check: File not found in Sonarr/Radarr. Continuing with encoding.", "module": "process_manager", "funcName": "process_folder", "line": 128} +{"timestamp": "2026-01-01T07:05:09Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T07:05:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T07:05:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 151} +{"timestamp": "2026-01-01T07:05:10Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T07:05:10Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T07:05:10Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T07:05:10Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T07:05:10Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T07:05:10Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T07:05:10Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T07:05:10Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T07:05:10Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T07:05:10Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:05:10Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 255kbps | Action: COPY (preserve) | Target: 255kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T07:05:10Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:05:10Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T07:07:50Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:53Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Skipping: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:07:54Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T07:08:05Z", "level": "INFO", "message": "Copied Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T07:08:23Z", "level": "INFO", "message": "Pre-check: File not found in Sonarr/Radarr. Continuing with encoding.", "module": "process_manager", "funcName": "process_folder", "line": 128} +{"timestamp": "2026-01-01T07:08:23Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T07:08:23Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T07:08:23Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 151} +{"timestamp": "2026-01-01T07:10:40Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Skipping: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 100} +{"timestamp": "2026-01-01T07:10:43Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T07:10:55Z", "level": "INFO", "message": "Copied Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 129} +{"timestamp": "2026-01-01T07:10:55Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T07:10:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T07:10:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 156} +{"timestamp": "2026-01-01T07:10:56Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T07:10:56Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T07:10:56Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T07:10:56Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T07:10:56Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T07:10:56Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T07:10:56Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T07:10:56Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T07:10:56Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T07:10:56Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:10:56Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 257kbps | Action: COPY (preserve) | Target: 257kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T07:10:56Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:10:56Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T07:12:54Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Skipping: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:12:57Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T07:13:09Z", "level": "INFO", "message": "Copied Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 134} +{"timestamp": "2026-01-01T07:13:09Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T07:13:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T07:13:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 161} +{"timestamp": "2026-01-01T07:13:10Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T07:13:10Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T07:13:10Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T07:13:10Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T07:13:10Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T07:13:10Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T07:13:10Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T07:13:10Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T07:13:10Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T07:13:10Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:13:10Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 257kbps | Action: COPY (preserve) | Target: 257kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T07:13:10Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:13:10Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T07:13:57Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipping: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Skipped 149 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T07:14:00Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T07:14:12Z", "level": "INFO", "message": "Copied Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 135} +{"timestamp": "2026-01-01T07:14:12Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T07:14:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T07:14:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 162} +{"timestamp": "2026-01-01T07:14:13Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T07:14:13Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T07:14:13Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T07:14:13Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T07:14:13Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T07:14:13Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T07:14:13Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T07:14:13Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T07:14:13Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T07:14:13Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:14:13Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T07:14:13Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:14:13Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T07:15:32Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipping: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Skipped 149 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Looking for file: C:/mnt/plex/tv/Supernatural/Season 7/Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 183} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Servamp (path: /mnt/plex/anime/Servamp (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: 1883 (path: /mnt/plex/tv/1883)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: 1923 (path: /mnt/plex/tv/1923)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: 30 Rock (path: /mnt/plex/tv/30 Rock (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Abbott Elementary (path: /mnt/plex/tv/Abbott Elementary (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: American Gods (path: /mnt/plex/tv/American Gods (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Assembly Required (path: /mnt/plex/tv/Assembly Required (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Avenue 5 (path: /mnt/plex/tv/Avenue 5)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Ballers (path: /mnt/plex/tv/Ballers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Band of Brothers (path: /mnt/plex/tv/Band of Brothers (2001))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Barry (path: /mnt/plex/tv/Barry)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Being Human (US) (path: /mnt/plex/tv/Being Human (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Belgravia: The Next Chapter (path: /mnt/plex/tv/Belgravia - The Next Chapter)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Better Call Saul (path: /mnt/plex/tv/Better Call Saul)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Billions (path: /mnt/plex/tv/Billions)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Black Bird (path: /mnt/plex/tv/Black Bird (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Brooklyn Nine-Nine (path: /mnt/plex/tv/Brooklyn Nine Nine)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Bupkis (path: /mnt/plex/tv/Bupkis)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Canada's Drag Race (path: /mnt/plex/tv/Canada's Drag Race)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Canada's Drag Race: Canada vs. The World (path: /mnt/plex/tv/Canada's Drag Race vs The World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Chuck (path: /mnt/plex/tv/Chuck)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Citadel (path: /mnt/plex/tv/Citadel)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Counterpart (path: /mnt/plex/tv/Counterpart)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Dark Side of the Ring (path: /mnt/plex/tv/Dark Side of the Ring)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Dopesick (path: /mnt/plex/tv/Dopesick)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Extraordinary (path: /mnt/plex/tv/Extraordinary)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Face Off (path: /mnt/plex/tv/Face Off (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Fargo (path: /mnt/plex/tv/Fargo (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Father Brown (2013) (path: /mnt/plex/tv/Father Brown)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Fired on Mars (path: /mnt/plex/tv/Fired on Mars (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Firefly (path: /mnt/plex/tv/Firefly (2002))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Game of Thrones (path: /mnt/plex/tv/Game Of Thrones)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Ghosts (US) (path: /mnt/plex/tv/Ghosts (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Gordon Ramsay's Food Stars (path: /mnt/plex/tv/Gordon Ramsay's Food Stars (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Halo (path: /mnt/plex/tv/Halo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Harley Quinn (path: /mnt/plex/tv/Harley Quinn)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Hawkeye (2021) (path: /mnt/plex/tv/Hawkeye)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Home Improvement (path: /mnt/plex/tv/Home Improvement 1991)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: House of the Dragon (path: /mnt/plex/tv/House of the Dragon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: iCarly (2021) (path: /mnt/plex/tv/iCarly (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Impractical Jokers (path: /mnt/plex/tv/Impractical Jokers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Ink Master (path: /mnt/plex/tv/Ink Master)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Invincible (path: /mnt/plex/tv/Invincible (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: It's Always Sunny in Philadelphia (path: /mnt/plex/tv/Its Always Sunny in Philadelphia)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Jury Duty (path: /mnt/plex/tv/Jury Duty)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Kim's Convenience (path: /mnt/plex/tv/Kim's Convenience)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Kitchen Nightmares (US) (path: /mnt/plex/tv/Kitchen Nightmares US)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Last Man Standing (2011) (path: /mnt/plex/tv/Last Man Standing)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Loki (path: /mnt/plex/tv/Loki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Lucky Hank (path: /mnt/plex/tv/Lucky Hank)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Married at First Sight (path: /mnt/plex/tv/Married at First Sight (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Monarch: Legacy of Monsters (path: /mnt/plex/tv/Monarch Legacy of Monsters)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Moon Knight (path: /mnt/plex/tv/Moon Knight)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Murder, She Wrote (path: /mnt/plex/tv/Murder She Wrote)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Mythic Quest (path: /mnt/plex/tv/Mythic Quest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Obi-Wan Kenobi (path: /mnt/plex/tv/Obi-Wan Kenobi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Our Flag Means Death (path: /mnt/plex/tv/Our Flag Means Death)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Outlander (path: /mnt/plex/tv/Outlander)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Over the Garden Wall (path: /mnt/plex/tv/Over the Garden Wall)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Pantheon (path: /mnt/plex/tv/Pantheon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Passion for Punchlines (path: /mnt/plex/tv/Passion for punchlines)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Peacemaker (path: /mnt/plex/tv/Peacemaker (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Percy Jackson and the Olympians (path: /mnt/plex/tv/Percy Jackson and the Olympians)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Quantum Leap (path: /mnt/plex/tv/Quantum Leap (1989))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Quantum Leap (2022) (path: /mnt/plex/tv/Quantum Leap 2022)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Raised by Wolves (2020) (path: /mnt/plex/tv/Raised by wolves)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Reacher (path: /mnt/plex/tv/Reacher (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Resident Alien (path: /mnt/plex/tv/Resident Alien (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Rick and Morty (path: /mnt/plex/tv/Rick and Morty)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Running Man (path: /mnt/plex/tv/Running Man)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race (path: /mnt/plex/tv/Rupaul's Drag Race)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race All Stars (path: /mnt/plex/tv/Rupaul's Drag Race All Stars)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Drag Race Down Under (path: /mnt/plex/tv/RuPaul's Drag Race Down Under)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race UK (path: /mnt/plex/tv/Rupaul's Drag Race UK)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race: Vegas Revue (path: /mnt/plex/tv/Rupaul's Drag Race Vegas Revue)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: RuPaul’s Drag Race UK vs the World (path: /mnt/plex/tv/Rupauls Drag Race UK vs The World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Schmigadoon! (path: /mnt/plex/tv/Schmigadoon!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Scorpion (path: /mnt/plex/tv/SCORPION)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: RuPaul's Secret Celebrity Drag Race (path: /mnt/plex/tv/Secret Celebrity RuPaul's Drag Race)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: See (path: /mnt/plex/tv/See)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Severance (path: /mnt/plex/tv/Severance)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: She-Hulk: Attorney at Law (path: /mnt/plex/tv/She-Hulk Attorney at Law)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Shrinking (path: /mnt/plex/tv/Shrinking (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Smiling Friends (path: /mnt/plex/tv/Smiling Friends)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Solar Opposites (path: /mnt/plex/tv/Solar Opposites)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Lioness (path: /mnt/plex/tv/Special Ops Lioness)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Star Trek: Strange New Worlds (path: /mnt/plex/tv/Star Strek Strange New Worlds)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Star Trek: Lower Decks (path: /mnt/plex/tv/Star Trek Lower Decks)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Stargirl (path: /mnt/plex/tv/Stargirl)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Station Eleven (path: /mnt/plex/tv/Station Eleven)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Superman & Lois (path: /mnt/plex/tv/Superman and Lois)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Supernatural (path: /mnt/plex/tv/Supernatural)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Taskmaster (path: /mnt/plex/tv/Taskmaster)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Taskmaster (AU) (path: /mnt/plex/tv/Taskmaster AU)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: ted (path: /mnt/plex/tv/Ted (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Ted Lasso (path: /mnt/plex/tv/Ted Lasso (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: The Big Door Prize (path: /mnt/plex/tv/The Big Door Prize)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: The Book of Boba Fett (path: /mnt/plex/tv/The Book of Boba Fett)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: The Boys (path: /mnt/plex/tv/The Boys)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: The Continental (2023) (path: /mnt/plex/tv/The Continental (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: The Falcon and The Winter Soldier (path: /mnt/plex/tv/The Falcon and The Winter Soldier (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: The Fall of the House of Usher (path: /mnt/plex/tv/The Fall of the House of Usher (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: The Gilded Age (path: /mnt/plex/tv/The Gilded Age)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: The Goes Wrong Show (path: /mnt/plex/tv/The Goes Wrong Show (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: The Last of Us (path: /mnt/plex/tv/The Last of Us)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: The Mandalorian (path: /mnt/plex/tv/The Mandalorian)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: The Now (path: /mnt/plex/tv/The Now)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: The Offer (path: /mnt/plex/tv/The Offer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: The Santa Clauses (path: /mnt/plex/tv/The Santa Clauses (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: The Split (path: /mnt/plex/tv/The Split)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Titans (2018) (path: /mnt/plex/tv/Titans (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Tulsa King (path: /mnt/plex/tv/Tulsa King)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Twisted Metal (path: /mnt/plex/tv/Twisted Metal (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Villainous (path: /mnt/plex/tv/Villainous (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Walker (path: /mnt/plex/tv/Walker)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: WandaVision (path: /mnt/plex/tv/Wandavision)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Welcome to Chippendales (path: /mnt/plex/tv/Welcome to Chippendales (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Welcome to Wrexham (path: /mnt/plex/tv/Welcome to Wrexham)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Wolf Pack (path: /mnt/plex/tv/Wolf Pack)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Young Sheldon (path: /mnt/plex/tv/Young Sheldon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: 4 Cut Hero (path: /mnt/plex/anime/4 Cut Hero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: 86: Eighty Six (path: /mnt/plex/anime/86 - Eighty Six (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Shimoneta: A Boring World Where the Concept of Dirty Jokes Doesn't Exist (path: /mnt/plex/anime/A Boring World Where the Concept of Dirty Jokes Doesn't Exist)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: A Returner's Magic Should Be Special (path: /mnt/plex/anime/A Returner's Magic Should Be Special)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Aesthetica of a Rogue Hero (path: /mnt/plex/anime/Aesthetica of a Rogue Hero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Air Gear (path: /mnt/plex/anime/Air Gear (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Akame ga Kill! (path: /mnt/plex/anime/Akame ga Kill!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Akudama Drive (path: /mnt/plex/anime/Akudama Drive)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Am I Actually the Strongest? (path: /mnt/plex/anime/Am I Actually the Strongest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Amagi Brilliant Park (path: /mnt/plex/anime/Amagi Brilliant Park)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: And You Thought There Is Never a Girl Online? (path: /mnt/plex/anime/And You Thought There Is Never a Girl Online)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Arknights (path: /mnt/plex/anime/Arknights)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Armed Girl's Machiavellism (path: /mnt/plex/anime/Armed Girl's Machiavellism)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Assassins Pride (path: /mnt/plex/anime/Assassins Pride)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: B: The Beginning (path: /mnt/plex/anime/B The Beginning)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Beast Tamer (path: /mnt/plex/anime/Beast Tamer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Black Clover (path: /mnt/plex/anime/Black Clover)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Black Lagoon (path: /mnt/plex/anime/Black Lagoon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Black Summoner (path: /mnt/plex/anime/Black Summoner)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Blast of Tempest (path: /mnt/plex/anime/Blast of Tempest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Blood Lad (path: /mnt/plex/anime/Blood Lad (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Bloodivores (path: /mnt/plex/anime/Bloodivores)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Boogiepop Phantom (path: /mnt/plex/anime/Boogiepop Phantom)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Brave Bang Bravern! (path: /mnt/plex/anime/Brave Bang Bravern!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Broken Blade (path: /mnt/plex/anime/Broken Blade)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: BTOOOM! (path: /mnt/plex/anime/Btooom!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Buddy Daddies (path: /mnt/plex/anime/Buddy Daddies)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: By the Grace of the Gods (path: /mnt/plex/anime/By the Grace of the Gods)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Captain Earth (path: /mnt/plex/anime/Captain Earth)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Casshern Sins (path: /mnt/plex/anime/Casshern Sins (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Chained Soldier (path: /mnt/plex/anime/Chained Soldier)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Chainsaw Man (path: /mnt/plex/anime/Chainsaw Man (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Chobits (path: /mnt/plex/anime/Chobits)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Classroom of the Elite (path: /mnt/plex/anime/Classroom of the elite)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Combatants Will Be Dispatched! (path: /mnt/plex/anime/Combatants Will Be Dispatched)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Cop Craft (path: /mnt/plex/anime/Cop Craft)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Cowboy Bebop (path: /mnt/plex/anime/Cowboy Bebop)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: D.Gray-man (path: /mnt/plex/anime/D.Gray-man)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: DARLING in the FRANXX (path: /mnt/plex/anime/Darling in the FranXX)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Darwin's Game (path: /mnt/plex/anime/Darwin's Game)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Dead Mount Death Play (path: /mnt/plex/anime/Dead Mount Death Play (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Deadman Wonderland (path: /mnt/plex/anime/Deadman Wonderland)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Battle Game in 5 Seconds (path: /mnt/plex/anime/Battle Game in 5 Seconds)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Deca-Dence (path: /mnt/plex/anime/Deca-Dence)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Deep Insanity: The Lost Child (path: /mnt/plex/anime/Deepy Insanity The Lost Child)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Demon King Daimao (path: /mnt/plex/anime/Demon King Daimao)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Dimension W (path: /mnt/plex/anime/Dimension W)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: D.N.Angel (path: /mnt/plex/anime/DNAngel)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Dog & Scissors (path: /mnt/plex/anime/Dog & Scissors)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Domestic Girlfriend (path: /mnt/plex/anime/Domestic Girlfriend)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Don't Toy With Me, Miss Nagatoro (path: /mnt/plex/anime/Don't Toy With Me Miss Nagatoro)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Dr. STONE (path: /mnt/plex/anime/Dr.Stone)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Dragonar Academy (path: /mnt/plex/anime/Dragonar Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Edens Zero (path: /mnt/plex/anime/Edens Zero (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Etotama (path: /mnt/plex/anime/Etotama)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Fairy gone (path: /mnt/plex/anime/Fairy Gone)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: FLCL (path: /mnt/plex/anime/FLCL)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Fractale (path: /mnt/plex/anime/Fractale)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Frieren: Beyond Journey's End (path: /mnt/plex/anime/Frieren - Beyond Journey's End)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: GATE (path: /mnt/plex/anime/GATE)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Gibiate (path: /mnt/plex/anime/Gibiate)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Girls Bravo (path: /mnt/plex/anime/Girls Bravo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Gleipnir (path: /mnt/plex/anime/Gleipnir)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Gosick (path: /mnt/plex/anime/Gosick)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Great Pretender (path: /mnt/plex/anime/Great Pretender)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Green Green (path: /mnt/plex/anime/Green Green)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:35Z", "level": "INFO", "message": "Checking series: Grenadier (path: /mnt/plex/anime/Grenadier)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Guilty Crown (path: /mnt/plex/anime/Guilty Crown)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Hamatora (path: /mnt/plex/anime/Hamatora)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Heavenly Delusion (path: /mnt/plex/anime/Heavenly Delusion)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Hero Return (path: /mnt/plex/anime/Hero Return)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Heroic Age (path: /mnt/plex/anime/Heroic Age)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: High School D×D (path: /mnt/plex/anime/High School D×D (2012))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Highschool of the Dead (path: /mnt/plex/anime/High School of the Dead)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Horimiya (path: /mnt/plex/anime/Horimiya)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Hortensia Saga (path: /mnt/plex/anime/Hortensia Saga)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: How Not to Summon a Demon Lord (path: /mnt/plex/anime/How Not to Summon a Demon Lord)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Hunter x Hunter (2011) (path: /mnt/plex/anime/Hunter x Hunter (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: I'm Standing on a Million Lives (path: /mnt/plex/anime/I'm Standing on a Million Lives)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: ID: INVADED (path: /mnt/plex/anime/ID Invaded)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Ikebukuro West Gate Park (path: /mnt/plex/anime/Ikebukuro West Gate Park)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Infinite Dendrogram (path: /mnt/plex/anime/Infinite Dendrogram)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Is It Wrong to Try to Pick Up Girls in a Dungeon? (path: /mnt/plex/anime/Is It Wrong to Try to Pick Up Girls in a Dungeon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Isekai Cheat Magician (path: /mnt/plex/anime/Isekai Cheat Magician)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: JUJUTSU KAISEN (path: /mnt/plex/anime/Jujutsu Kaisen)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Maria the Virgin Witch (path: /mnt/plex/anime/Junketsu no Maria (Maria the Virgin Witch))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Redo of Healer (path: /mnt/plex/anime/Kaifuku Jutsushi no Yarinaoshi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Kemono Jihen (path: /mnt/plex/anime/Kemono Jihen)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: King's Raid: Successors of the Will (path: /mnt/plex/anime/King's Raid)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Vermeil in Gold (path: /mnt/plex/anime/Vermeil in Gold (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Knight's & Magic (path: /mnt/plex/anime/Knight's & Magic)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: KonoSuba – God’s blessing on this wonderful world!! (path: /mnt/plex/anime/KonoSuba)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Onmyou Taisenki (path: /mnt/plex/anime/Kyoukai Senki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Lapis Re:LiGHTs (path: /mnt/plex/anime/Lapis ReLights)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Liar, Liar (path: /mnt/plex/anime/Liar Liar (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Listeners (path: /mnt/plex/anime/Listeners)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Log Horizon (path: /mnt/plex/anime/Log Horizon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Lord Marksman and Vanadis (path: /mnt/plex/anime/Lord Marksman and Vanadis)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Love Tyrant (path: /mnt/plex/anime/Love Tyrant)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Maburaho (path: /mnt/plex/anime/Maburaho)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Magi: Adventure of Sinbad (path: /mnt/plex/anime/Magi Adventure of Sinbad)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Magical Sempai (path: /mnt/plex/anime/Magical Senpai)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Magical Warfare (path: /mnt/plex/anime/Magical Warfare)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: MASHLE: MAGIC AND MUSCLES (path: /mnt/plex/anime/Mashle)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Medaka Box (path: /mnt/plex/anime/Medaka Box)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Mob Psycho 100 (path: /mnt/plex/anime/Mob Psycho 100)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tsukimichi -Moonlit Fantasy- (path: /mnt/plex/anime/Tsukimichi - Moonlit Fantasy (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Mr. Villain's Day Off (path: /mnt/plex/anime/Mr. Villain's Day Off)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Seton Academy: Join the Pack! (path: /mnt/plex/anime/Murenase! Seton Gakuen)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Mushoku Tensei: Jobless Reincarnation (path: /mnt/plex/anime/Mushoku Tensei - Jobless Reincarnation (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Muv-Luv Alternative (path: /mnt/plex/anime/Muv-Luv Alternative)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: My Girlfriend Is Shobitch (path: /mnt/plex/anime/My Girlfriend is Shobitch)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: My Hero Academia (path: /mnt/plex/anime/My Hero Academia)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: My Home Hero (path: /mnt/plex/anime/My Home Hero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: My Instant Death Ability Is Overpowered (path: /mnt/plex/anime/My Instant Death Ability Is So Overpowered, No One in This Other World Stands a Chance Against Me!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: My Isekai Life (path: /mnt/plex/anime/My Isekai Life (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: My Senpai Is Annoying (path: /mnt/plex/anime/My Senpai is Annoying)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: No Game No Life (path: /mnt/plex/anime/No Game No Life)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: No Guns Life (path: /mnt/plex/anime/No Guns Life (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Noblesse (path: /mnt/plex/anime/Noblesse)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Noragami (path: /mnt/plex/anime/Noragami)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: One-Punch Man (path: /mnt/plex/anime/One-Punch Man (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Orient (path: /mnt/plex/anime/Orient)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Oshi no Ko (path: /mnt/plex/anime/Oshi No Ko)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Trapped in a Dating Sim: The World of Otome Games Is Tough for Mobs (path: /mnt/plex/anime/Otomege Sekai wa Mob ni Kibishii Sekai desu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Outbreak Company (path: /mnt/plex/anime/Outbreak Company)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Overflow (path: /mnt/plex/anime/Overflow)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Peach Boy Riverside (path: /mnt/plex/anime/Peach Boy Riverside)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Platinum End (path: /mnt/plex/anime/Platinum End)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Plunderer (path: /mnt/plex/anime/Plunderer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Prison School (path: /mnt/plex/anime/Prison School)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Punch Line (path: /mnt/plex/anime/Punch Line)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Radiant (path: /mnt/plex/anime/Radiant (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Ragna Crimson (path: /mnt/plex/anime/Ragna Crimson)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Ranking of Kings (path: /mnt/plex/anime/Ranking of Kings)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Record of Ragnarok (path: /mnt/plex/anime/Record of Ragnarok)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Recovery of an MMO Junkie (path: /mnt/plex/anime/Recovery of an MMO Junkie)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Reign of the Seven Spellblades (path: /mnt/plex/anime/Reign of the Seven Spellblades)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: ReLIFE (path: /mnt/plex/anime/ReLife)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Rent-a-Girlfriend (path: /mnt/plex/anime/Rent a girlfriend)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Re: ZERO, Starting Life in Another World (path: /mnt/plex/anime/ReZERO -Starting Life in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Robotics;Notes (path: /mnt/plex/anime/Robotics;Notes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Rokka: Braves of the Six Flowers (path: /mnt/plex/anime/Rokka Braves of the Six Flowers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Rosario + Vampire (path: /mnt/plex/anime/Rosario + Vampire (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Sabikui Bisco (path: /mnt/plex/anime/Sabikui Bisco)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: SAKUGAN (path: /mnt/plex/anime/Sakugan)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Seirei Gensouki: Spirit Chronicles (path: /mnt/plex/anime/Seirei Gensouki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Sekirei (path: /mnt/plex/anime/Sekirei (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Seraph of the End (path: /mnt/plex/anime/Seraph of the End)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Seven Mortal Sins (path: /mnt/plex/anime/Seven Mortal Sins)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Shachibato! President, It's Time for Battle! (path: /mnt/plex/anime/Shachou Battle No Jikan Desu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Shikizakura (path: /mnt/plex/anime/Shikizakura)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Cautious Hero: The Hero Is Overpowered but Overly Cautious (path: /mnt/plex/anime/Shinchou Yuusha)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Shinobi no Ittoki (path: /mnt/plex/anime/Shinobi no Ittoki (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Skeleton Knight in Another World (path: /mnt/plex/anime/Skeleton Knight in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Solo Leveling (path: /mnt/plex/anime/Solo Leveling)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Spice and Wolf (path: /mnt/plex/anime/Spice and Wolf (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: SPY x FAMILY (path: /mnt/plex/anime/SPY x FAMILY (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Steins;Gate (path: /mnt/plex/anime/Steins;Gate)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Summer Time Rendering (path: /mnt/plex/anime/Summer Time Render (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Sunday Without God (path: /mnt/plex/anime/Sunday Without God)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Sword Art Online (path: /mnt/plex/anime/Sword Art Online (2012))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Taboo Tattoo (path: /mnt/plex/anime/Taboo Tattoo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tales of Wedding Rings (path: /mnt/plex/anime/Tales of Wedding Rings)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tears to Tiara (path: /mnt/plex/anime/Tears to Tiara)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tenchi Muyo! War on Geminar (path: /mnt/plex/anime/Tenchi Muyo! War on Geminar)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Daily Life of the Immortal King (path: /mnt/plex/anime/The Daily Life of the Immortal King)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Devil Is a Part-Timer! (path: /mnt/plex/anime/The Devil Is a Part-Timer! (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Faraway Paladin (path: /mnt/plex/anime/The Faraway Paladin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Foolish Angel Dances With the Devil (path: /mnt/plex/anime/The Foolish Angel Dances With the Devil)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The God of High School (path: /mnt/plex/anime/The God of High School)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Great Cleric (path: /mnt/plex/anime/The Great Cleric)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Greatest Demon Lord Is Reborn as a Typical Nobody (path: /mnt/plex/anime/The Greatest Demon Lord Is Reborn as a Typical Nobody)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Iceblade Sorcerer Shall Rule the World (path: /mnt/plex/anime/The Iceblade Sorcerer Shall Rule the World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The King's Avatar (path: /mnt/plex/anime/The Kings Avatar)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Legend of the Legendary Heroes (path: /mnt/plex/anime/The Legend of the Legendary Heroes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Misfit of Demon King Academy (path: /mnt/plex/anime/The Misfit of Demon King Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Quintessential Quintuplets (path: /mnt/plex/anime/The Quintessential Quintuplets)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Saint's Magic Power Is Omnipotent (path: /mnt/plex/anime/The Saint's Magic Power is Omnipotent)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Testament of Sister New Devil (path: /mnt/plex/anime/The Testament of Sister New Devil)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Wrong Way to Use Healing Magic (path: /mnt/plex/anime/The Wrong Way To Use Healing Magic (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: To LOVE-Ru (path: /mnt/plex/anime/To LOVE-Ru (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tokyo Ghoul (path: /mnt/plex/anime/Tokyo Ghoul)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tokyo Majin (path: /mnt/plex/anime/Tokyo Majin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tokyo Ravens (path: /mnt/plex/anime/Tokyo Ravens)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tokyo Revengers (path: /mnt/plex/anime/Tokyo Revengers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Toradora! (path: /mnt/plex/anime/Toradora!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tower of God (path: /mnt/plex/anime/Tower of God)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Triage X (path: /mnt/plex/anime/Triage X)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tribe Nine (path: /mnt/plex/anime/Tribe Nine)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Trigun (path: /mnt/plex/anime/Trigun)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: TRIGUN STAMPEDE (path: /mnt/plex/anime/Trigun Stampede)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tsugumomo (path: /mnt/plex/anime/Tsugumomo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Undead Murder Farce (path: /mnt/plex/anime/Undead Girl Murder Farce)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Undead Unluck (path: /mnt/plex/anime/Undead Unluck)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Urusei Yatsura (2022) (path: /mnt/plex/anime/Urusei Yatsura (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Val x Love (path: /mnt/plex/anime/Val x Love (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: VanDread (path: /mnt/plex/anime/VanDread (2000))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Villainess Level 99: I May Be the Hidden Boss but I'm Not the Demon Lord (path: /mnt/plex/anime/Villainess Level 99 - I May Be the Hidden Boss but I'm Not the Demon Lord (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Vinland Saga (path: /mnt/plex/anime/Vinland Saga (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Welcome to the N.H.K. (path: /mnt/plex/anime/Welcome to the N.H.K. (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Why the Hell Are You Here, Teacher!? (path: /mnt/plex/anime/Why the Hell are You Here, Teacher!! (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Wise Man's Grandchild (path: /mnt/plex/anime/Wise Man's Grandchild (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: World Break: Aria of Curse for a Holy Swordsman (path: /mnt/plex/anime/World Break - Aria of Curse for a Holy Swordsman (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: World's End Harem (path: /mnt/plex/anime/World's End Harem (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Xam'd: Lost Memories (path: /mnt/plex/anime/Xam'd - Lost Memories (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Your Lie in April (path: /mnt/plex/anime/Your Lie in April (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Familiar of Zero (path: /mnt/plex/anime/The Familiar of Zero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Zom 100: Bucket List of the Dead (path: /mnt/plex/anime/Zom 100 - Bucket List of the Dead (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: My One-Hit Kill Sister (path: /mnt/plex/anime/My One-Hit Kill Sister)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Ramsay's Kitchen Nightmares (path: /mnt/plex/tv/Kitchen Nightmares UK)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Mobile Suit Gundam: The Witch from Mercury (path: /mnt/plex/anime/Mobile Suit Gundam The Witch from Mercury)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: I'm the Villainess, So I'm Taming the Final Boss (path: /mnt/plex/anime/I'm the Villainess, So I'm Taming the Final Boss)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Arifureta: From Commonplace to World's Strongest (path: /mnt/plex/anime/Arifureta - From Commonplace to World's Strongest (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Monogatari (path: /mnt/plex/anime/Bakemonogatari)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Handyman Saitou in Another World (path: /mnt/plex/anime/Handyman Saitou in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Beyond the Boundary (path: /mnt/plex/anime/Beyond the Boundary (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Remake Our Life! (path: /mnt/plex/anime/Bokutachi no Remake)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Build-Divide (path: /mnt/plex/anime/Build Divide Code Black)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Chiikawa (path: /mnt/plex/anime/Chiikawa)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: So, I Can't Play H! (path: /mnt/plex/anime/So, I Can't Play H!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Danganronpa: The Animation (path: /mnt/plex/anime/Danganronpa)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Fire Force (path: /mnt/plex/anime/Enen no Shouboutai)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout (path: /mnt/plex/anime/Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: To Your Eternity (path: /mnt/plex/anime/Fumetsu no Anata e)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: How a Realist Hero Rebuilt the Kingdom (path: /mnt/plex/anime/Genjitsu Shugi Yuusha no Oukoku Saikenki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Fantasia Sango - Realm of Legends (path: /mnt/plex/anime/Fantasia Sango - Realm of Legends)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Brynhildr in the Darkness (path: /mnt/plex/anime/Gokukoku no Brynhildr)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Golden Boy (path: /mnt/plex/anime/Golden Boy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Fruit of Grisaia (path: /mnt/plex/anime/Grisaia no Kajitsu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Our Last Crusade or the Rise of a New World (path: /mnt/plex/anime/Our Last Crusade or the Rise of a New World (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: YU-NO: A Girl Who Chants Love at the Bound of This World (path: /mnt/plex/anime/YU-NO - A Girl Who Chants Love at the Bound of This World (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: So I'm a Spider, So What? (path: /mnt/plex/anime/So I'm a Spider, So What?)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Full Dive: This Ultimate Next-Gen Full Dive RPG Is Even Shittier Than Real Life! (path: /mnt/plex/anime/Kyuukyoku Shinka Shita Full Dive RPG ga Genjitsu yori mo Kusogee Dattara)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: In the Land of Leadale (path: /mnt/plex/anime/Leadale no Daichi nite)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Level 1 Demon Lord and One Room Hero (path: /mnt/plex/anime/Lv1 Maou to One Room Yuusha)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Demon Girl Next Door (path: /mnt/plex/anime/Machikado Mazoku)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Honor Student at Magic High School (2021) (path: /mnt/plex/anime/Mahouka Koukou no Rettousei)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Sorcerous Stabber Orphen (path: /mnt/plex/anime/Majutsushi Orphen Hagure Tabi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Makai Ouji: Devils and Realist (path: /mnt/plex/anime/Devils and Realist)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Masamune-kun's Revenge (path: /mnt/plex/anime/Masamune-kun no Revenge)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Hybrid x Heart Magias Academy Ataraxia (path: /mnt/plex/anime/Masou Gakuen HxH)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Mother of the Goddess' Dormitory (path: /mnt/plex/anime/Megami-ryou no Ryoubo-kun)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Dungeon of Black Company (path: /mnt/plex/anime/Meikyuu Black Company)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: I've Somehow Gotten Stronger When I Improved My Farm-Related Skills (path: /mnt/plex/anime/Noumin Kanren no Skill bakka Agetetara Nazeka Tsuyoku Natta)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Hidden Dungeon Only I Can Enter (path: /mnt/plex/anime/Ore dake Haireru Kakushi Dungeon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Sukisho! (path: /mnt/plex/anime/Ore wo Suki nano wa Omae dake ka yo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Ya Boy Kongming! (path: /mnt/plex/anime/Ya Boy Kongming! (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Princess Connect! Re:Dive (path: /mnt/plex/anime/Princess Connect)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Dances with the Dragons (path: /mnt/plex/anime/Saredo Tsumibito wa Ryuu to Odoru)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Strongest Sage With the Weakest Crest (path: /mnt/plex/anime/Shikkakumon no Saikyou Kenja)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Rage of Bahamut (path: /mnt/plex/anime/Shokei Shoujo no Virgin Road)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Somali and the Forest Spirit (path: /mnt/plex/anime/Somali to Mori no Kamisama)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Koikimo (path: /mnt/plex/anime/Sono Bisque Doll wa Koi o Suru)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Otoboku: Maidens are Falling for Me! (path: /mnt/plex/anime/Tantei wa Mou, Shindeiru)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: A Certain Scientific Railgun (path: /mnt/plex/anime/Toaru Kagaku no Accelerator)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Campfire Cooking in Another World with My Absurd Skill (path: /mnt/plex/anime/Tondemo Skill de Isekai Hourou Meshi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: If It's for My Daughter, I'd Even Defeat a Demon Lord (path: /mnt/plex/anime/UchiMusume)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Hokkaido Gals Are Super Adorable! (path: /mnt/plex/anime/Hokkaido Gals Are Super Adorable!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Food Wars! (path: /mnt/plex/anime/Food Wars)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Grimgar, Ashes and Illusions (path: /mnt/plex/anime/Hai to Gensou no Grimgar)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: My Next Life as a Villainess: All Routes Lead to Doom! (path: /mnt/plex/anime/Hamefura)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Kingdoms of Ruin (path: /mnt/plex/anime/The Kingdoms of Ruin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Idaten Deities Know Only Peace (path: /mnt/plex/anime/Heion Sedai no Idaten-tachi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Lucifer and the Biscuit Hammer (path: /mnt/plex/anime/Hoshi no Samidare)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: BattleBots (path: /mnt/plex/tv/BattleBots)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Dimension 20 (path: /mnt/plex/tv/Dimension 20)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Mr. & Mrs. Smith (2024) (path: /mnt/plex/tv/Mr. & Mrs. Smith (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Welcome to Demon School! Iruma-kun (path: /mnt/plex/anime/Welcome to Demon School! Iruma-kun (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Death and Other Details (path: /mnt/plex/tv/Death and Other Details)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Great British Bake Off (path: /mnt/plex/tv/The Great British Bake Off)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: BattleBots (2015) (path: /mnt/plex/tv/BattleBots (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Go! Go! Loser Ranger! (path: /mnt/plex/anime/Go! Go! Loser Ranger! (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Unwanted Undead Adventurer (path: /mnt/plex/anime/The Unwanted Undead Adventurer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Attack on Titan (path: /mnt/plex/anime/Attack on Titan)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Good Night World (path: /mnt/plex/anime/Good Night World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Eminence in Shadow (path: /mnt/plex/anime/The Eminence in Shadow)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: High School Prodigies Have It Easy Even in Another World! (path: /mnt/plex/anime/Choyoyu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Death March to the Parallel World Rhapsody (path: /mnt/plex/anime/Death March)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Dolls' Frontline (2022) (path: /mnt/plex/anime/Dolls' Frontline)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Classroom for Heroes (path: /mnt/plex/anime/Classroom for Heroes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The 8th son? Are you kidding me? (path: /mnt/plex/anime/The 8th son! Are you kidding me! (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: I Got a Cheat Skill in Another World and Became Unrivaled in the Real World, Too (path: /mnt/plex/anime/Isekai de Cheat Skill)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Harem in the Labyrinth of Another World (path: /mnt/plex/anime/Harem in the Labyrinth of Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat (path: /mnt/plex/anime/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Overlord (path: /mnt/plex/anime/Overlord)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Ninja Kamui (path: /mnt/plex/anime/Ninja Kamui)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Bachelor (path: /mnt/plex/tv/The Bachelor)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Fallout (path: /mnt/plex/tv/Fallout)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Chillin' in Another World With Level 2 Super Cheat Powers (path: /mnt/plex/anime/Chillin' in Another World with Level 2 Super Cheat Powers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells (path: /mnt/plex/anime/Failure Frame - I Became the Strongest and Annihilated Everything with Low-Level Spells (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Wistoria: Wand and Sword (path: /mnt/plex/anime/Wistoria - Wand and Sword (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Quiet on Set: The Dark Side of Kids TV (path: /mnt/plex/tv/Quiet On Set - The Dark Side Of Kids TV)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Bachelorette (path: /mnt/plex/tv/The Bachelorette)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Strongest Magician in the Demon Lord's Army Was a Human (path: /mnt/plex/anime/The Strongest Magician in the Demon Lord's Army was a Human)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Grendizer U (path: /mnt/plex/anime/Grendizer U)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability (path: /mnt/plex/anime/I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Mission: Yozakura Family (path: /mnt/plex/anime/Mission - Yozakura Family)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Shōgun (path: /mnt/plex/tv/Shōgun)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Amazing Stories (path: /mnt/plex/tv/Amazing Stories (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Modern Family (path: /mnt/plex/tv/Modern Family)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Knuckles (path: /mnt/plex/tv/Knuckles)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Viral Hit (path: /mnt/plex/anime/Viral Hit (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Unnamed Memory (path: /mnt/plex/anime/Unnamed Memory)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: An Archdemon's Dilemma: How To Love Your Elf Bride (path: /mnt/plex/anime/An Archdemon's Dilemma - How To Love Your Elf Bride)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Kaiju No. 8 (path: /mnt/plex/anime/Kaiju No. 8)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Fable (path: /mnt/plex/anime/The Fable)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Spice and Wolf: MERCHANT MEETS THE WISE WOLF (path: /mnt/plex/anime/Spice and Wolf - MERCHANT MEETS THE WISE WOLF)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Gods' Games We Play (path: /mnt/plex/anime/Gods' Games We Play)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: THE NEW GATE (path: /mnt/plex/anime/THE NEW GATE (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Fantasy × Hunter (path: /mnt/plex/anime/Fantasy × Hunter (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Euphoria (US) (path: /mnt/plex/tv/Euphoria)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Galavant (path: /mnt/plex/tv/Galavant)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Married... with Children (path: /mnt/plex/tv/Married... with Children (1987))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Power (path: /mnt/plex/tv/Power (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Silicon Valley (path: /mnt/plex/tv/Silicon Valley (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Son of Zorn (path: /mnt/plex/tv/Son of Zorn (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The 10th Kingdom (path: /mnt/plex/tv/The 10th Kingdom (2000))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Bear (path: /mnt/plex/tv/The Bear (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Drew Carey Show (path: /mnt/plex/tv/The Drew Carey Show (1995))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Gentlemen (path: /mnt/plex/tv/The Gentlemen (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The IT Crowd (path: /mnt/plex/tv/The IT Crowd (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Office (US) (path: /mnt/plex/tv/The Office (US))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Vice Principals (path: /mnt/plex/tv/Vice Principals (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Amazing Digital Circus (path: /mnt/plex/tv/The Amazing Digital Circus (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: American Horror Story (path: /mnt/plex/tv/American Horror Story)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Sword Art Online Alternative: Gun Gale Online (path: /mnt/plex/anime/Sword Art Online Alternative - Gun Gale Online)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Catch-22 (path: /mnt/plex/tv/Catch-22)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Game Changer (path: /mnt/plex/tv/Game Changer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Hazbin Hotel (path: /mnt/plex/tv/Hazbin Hotel (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Lessons in Chemistry (path: /mnt/plex/tv/Lessons in Chemistry (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Make Some Noise (path: /mnt/plex/tv/Make Some Noise)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Pretender (path: /mnt/plex/tv/The Pretender)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: What If…? (path: /mnt/plex/tv/What If)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Billy the Kid (path: /mnt/plex/tv/Billy the Kid)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Shetland (path: /mnt/plex/tv/Shetland)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World (path: /mnt/plex/anime/As a Reincarnated Aristocrat, I'll Use My Appraisal Skill To Rise in the World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Below Deck (path: /mnt/plex/tv/Below Deck)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Umbrella Academy (path: /mnt/plex/tv/The Umbrella Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: New Girl (path: /mnt/plex/tv/New Girl)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Parks and Recreation (path: /mnt/plex/tv/Parks and Recreation)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Below Deck Mediterranean (path: /mnt/plex/tv/Below Deck Mediterranean)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Dwight in Shining Armor (path: /mnt/plex/tv/Dwight in Shining Armor)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Schitt's Creek (path: /mnt/plex/tv/Schitt's Creek)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Unstable (path: /mnt/plex/tv/Unstable)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Closer (path: /mnt/plex/tv/The Closer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Why Does Nobody Remember Me in This World? (path: /mnt/plex/anime/Why Does Nobody Remember Me in This World! (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Code Geass: Rozé of the Recapture (path: /mnt/plex/anime/Code Geass - Rozé of the Recapture)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: 3 Body Problem (path: /mnt/plex/tv/3 Body Problem)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: South Park (path: /mnt/plex/tv/South Park)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible (path: /mnt/plex/anime/The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: I Parry Everything (path: /mnt/plex/anime/I Parry Everything)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: SAKAMOTO DAYS (path: /mnt/plex/anime/SAKAMOTO DAYS (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Healer Who Was Banished From His Party, Is, in Fact, the Strongest (path: /mnt/plex/anime/The Healer who Was Banished From His Party, Is, In Fact, The Strongest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Bye Bye, Earth (path: /mnt/plex/anime/Bye Bye, Earth (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Good Bye, Dragon Life (path: /mnt/plex/anime/Good Bye, Dragon Life (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Alya Sometimes Hides Her Feelings in Russian (path: /mnt/plex/anime/Alya Sometimes Hides Her Feelings in Russian)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: DOTA: Dragon's Blood (path: /mnt/plex/tv/DOTA - Dragon's Blood (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Pseudo Harem (path: /mnt/plex/anime/Pseudo Harem)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Strike the Blood (path: /mnt/plex/anime/Strike the Blood)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Demon Sword Master of Excalibur Academy (path: /mnt/plex/anime/The Demon Sword Master of Excalibur Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: DEAD DEAD DEMONS DEDEDEDE DESTRUCTION (path: /mnt/plex/anime/DEAD DEAD DEMONS DEDEDEDE DESTRUCTION)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: 2.5 Dimensional Seduction (path: /mnt/plex/anime/2.5 Dimensional Seduction (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Shoresy (path: /mnt/plex/tv/Shoresy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Letterkenny (path: /mnt/plex/tv/Letterkenny)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: DAN DA DAN (path: /mnt/plex/anime/DAN DA DAN (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: 'Tis Time for \"Torture,\" Princess (path: /mnt/plex/anime/'Tis Time for Torture, Princess)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Quality Assurance in Another World (path: /mnt/plex/anime/Quality Assurance in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: SHOSHIMIN: How to Become Ordinary (path: /mnt/plex/anime/SHOSHIMIN - How to Become Ordinary)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Consultant (2023) (path: /mnt/plex/tv/The Consultant (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: No Longer Allowed in Another World (path: /mnt/plex/anime/No Longer Allowed in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: WondLa (path: /mnt/plex/tv/WondLa)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Suicide Squad Isekai (path: /mnt/plex/anime/Suicide Squad Isekai (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Harley and the Davidsons (path: /mnt/plex/tv/Harley and the Davidsons)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Gravity Falls (path: /mnt/plex/tv/Gravity Falls)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Bad Monkey (path: /mnt/plex/tv/Bad Monkey)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Terminator Zero (path: /mnt/plex/tv/Terminator Zero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Cobra Kai (path: /mnt/plex/tv/Cobra Kai)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Taboo (2017) (path: /mnt/plex/tv/Taboo (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: English Teacher (path: /mnt/plex/tv/English Teacher)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Kevin Can F**k Himself (path: /mnt/plex/tv/Kevin Can F-k Himself)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Shomin Sample (path: /mnt/plex/anime/Shomin Sample)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Extrapolations (path: /mnt/plex/tv/Extrapolations)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: KAOS (path: /mnt/plex/tv/Kaos)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Dragon Dentist (path: /mnt/plex/tv/The Dragon Dentist)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Bucchigiri?! (path: /mnt/plex/anime/Bucchigiri!!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Home Economics (path: /mnt/plex/tv/Home Economics)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Penguin (path: /mnt/plex/tv/The Penguin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Agatha All Along (path: /mnt/plex/tv/Agatha All Along)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: High Potential (path: /mnt/plex/tv/High Potential)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Nobody Wants This (path: /mnt/plex/tv/Nobody Wants This)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: One More Time (2024) (path: /mnt/plex/tv/One More Time (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Swimming with Sharks (path: /mnt/plex/tv/Swimming with Sharks)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Loner Life in Another World (path: /mnt/plex/anime/Loner Life in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: You are Ms. Servant (path: /mnt/plex/anime/You are Ms. Servant (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Let This Grieving Soul Retire! (path: /mnt/plex/anime/Let This Grieving Soul Retire!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Adam's Sweet Agony (path: /mnt/plex/anime/Adam's Sweet Agony)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Legend of Vox Machina (path: /mnt/plex/tv/The Legend of Vox Machina)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Most Notorious \"Talker\" Runs the World's Greatest Clan (path: /mnt/plex/anime/The Most Notorious Talker Runs the World's Greatest Clan)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Killer Cakes (path: /mnt/plex/tv/Killer Cakes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: I Left my A-Rank Party to Help My Former Students Reach the Dungeon Depths! (path: /mnt/plex/anime/I Left my A-Rank Party to Help My Former Students Reach the Dungeon Depths!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Journal of the Mysterious Creatures (path: /mnt/plex/tv/The Journal of the Mysterious Creatures (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Below Deck Sailing Yacht (path: /mnt/plex/tv/Below Deck Sailing Yacht)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Wandering Witch: The Journey of Elaina (path: /mnt/plex/anime/Wandering Witch - The Journey of Elaina (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Reincarnation of the Strongest Exorcist in Another World (path: /mnt/plex/anime/The Reincarnation of the Strongest Exorcist in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Franchise (2024) (path: /mnt/plex/tv/The Franchise (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Lord of the Rings: The Rings of Power (path: /mnt/plex/tv/The Lord of the Rings - The Rings of Power)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Spartacus (path: /mnt/plex/tv/Spartacus)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Citadel: Diana (path: /mnt/plex/tv/Citadel - Diana)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tomb Raider: The Legend of Lara Croft (path: /mnt/plex/tv/Tomb Raider - The Legend of Lara Croft)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Sweetpea (path: /mnt/plex/tv/Sweetpea)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Taskmaster (NZ) (path: /mnt/plex/tv/Taskmaster (NZ))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Taskmaster: Champion of Champions (path: /mnt/plex/tv/Taskmaster - Champion of Champions)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Utopia (AU) (path: /mnt/plex/tv/Utopia (AU))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: PLUTO (path: /mnt/plex/anime/PLUTO (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Scenes From A Marriage (US) (path: /mnt/plex/tv/Scenes from a Marriage (US))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Mecha-Ude: Mechanical Arms (path: /mnt/plex/anime/Mecha-Ude - Mechanical Arms)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Nozo X Kimi (path: /mnt/plex/anime/Nozo X Kimi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Demon Lord 2099 (path: /mnt/plex/anime/Demon Lord 2099 (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Revenger (path: /mnt/plex/anime/Revenger)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Secret Level (path: /mnt/plex/tv/Secret Level)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: A Terrified Teacher at Ghoul School! (path: /mnt/plex/anime/A Terrified Teacher at Ghoul School!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Ascendance of a Bookworm (path: /mnt/plex/anime/Ascendance of a Bookworm)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Edge of Sleep (path: /mnt/plex/tv/The Edge of Sleep)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Poppa’s House (path: /mnt/plex/tv/Poppa’s House)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Queen's Gambit (path: /mnt/plex/tv/The Queen's Gambit)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Interior Chinatown (path: /mnt/plex/tv/Interior Chinatown)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Mobile Suit Gundam: Iron-Blooded Orphans (path: /mnt/plex/anime/Mobile Suit Gundam - Iron-Blooded Orphans)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Selfie (path: /mnt/plex/tv/Selfie)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Newsroom (2012) (path: /mnt/plex/tv/The Newsroom)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Morning Show (path: /mnt/plex/tv/The Morning Show)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Take (path: /mnt/plex/tv/The Take)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Saving Hope (path: /mnt/plex/tv/Saving Hope)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Dungeons & Dragons (path: /mnt/plex/tv/Dungeons & Dragons)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Dune: Prophecy (path: /mnt/plex/tv/Dune - Prophecy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Star Wars: Skeleton Crew (path: /mnt/plex/tv/Star Wars - Skeleton Crew (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Time Bandits (path: /mnt/plex/tv/Time Bandits (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: St. Denis Medical (path: /mnt/plex/tv/St. Denis Medical (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Doctor Who (2005) (path: /mnt/plex/tv/Doctor Who (2005))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Eternaut (path: /mnt/plex/tv/The Eternaut)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Arcane (path: /mnt/plex/tv/Arcane (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Giant Beasts of Ars (path: /mnt/plex/anime/Giant Beasts of Ars (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Your Honor (path: /mnt/plex/tv/Your Honor (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Junior Taskmaster (path: /mnt/plex/tv/Junior Taskmaster (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Taskmaster (QC) (path: /mnt/plex/tv/Taskmaster (CA) (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Game Changers (2024) (path: /mnt/plex/tv/Game Changers (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Yellowstone (2018) (path: /mnt/plex/tv/Yellowstone (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Below Deck Down Under (path: /mnt/plex/tv/Below Deck Down Under (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Ludwig (2024) (path: /mnt/plex/tv/Ludwig (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Brilliant Healer's New Life in the Shadows (path: /mnt/plex/anime/The Brilliant Healer's New Life in the Shadows)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: In the Dark (2019) (path: /mnt/plex/tv/In the Dark (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Marvel's The Punisher (path: /mnt/plex/tv/Marvel's The Punisher (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tokyo Override (path: /mnt/plex/tv/Tokyo Override (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Cyberpunk: Edgerunners (path: /mnt/plex/tv/Cyberpunk - Edgerunners (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Man Down (path: /mnt/plex/tv/Man Down (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Hitmen (path: /mnt/plex/tv/Hitmen (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Silo (path: /mnt/plex/tv/Silo (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Landman (path: /mnt/plex/tv/Landman (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Mayor of Kingstown (path: /mnt/plex/tv/Mayor of Kingstown (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Lawmen: Bass Reeves (path: /mnt/plex/tv/Lawmen - Bass Reeves (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Royal Pains (path: /mnt/plex/tv/Royal Pains (2009))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Matlock (2024) (path: /mnt/plex/tv/Matlock (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Continuum (path: /mnt/plex/tv/Continuum (2012))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Trunk (path: /mnt/plex/tv/The Trunk (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Harry Potter: Wizards of Baking (path: /mnt/plex/tv/Harry Potter - Wizards of Baking (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Jentry Chau vs. the Underworld (path: /mnt/plex/tv/Jentry Chau vs. the Underworld (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Hero Inside (path: /mnt/plex/tv/Hero Inside (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Shifting Gears (path: /mnt/plex/tv/Shifting Gears (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Old Man (path: /mnt/plex/tv/The Old Man (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Squid Game (path: /mnt/plex/tv/Squid Game (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Creature Commandos (path: /mnt/plex/tv/Creature Commandos (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Daily Life of a Middle-Aged Online Shopper in Another World (path: /mnt/plex/anime/The Daily Life of a Middle-Aged Online Shopper in Another World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: I May Be a Guild Receptionist, But I'll Solo Any Boss to Clock Out on Time (path: /mnt/plex/anime/I May Be a Guild Receptionist, But I'll Solo Any Boss to Clock Out on Time (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Beheneko: The Elf-Girl's Cat Is Secretly an S-Ranked Monster! (path: /mnt/plex/anime/Beheneko - The Elf-Girl's Cat Is Secretly an S-Ranked Monster! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: I'm Living with an Otaku NEET Kunoichi!? (path: /mnt/plex/anime/I'm Living with an Otaku NEET Kunoichi!! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Yoasobi Gurashi! (path: /mnt/plex/anime/Yoasobi Gurashi! (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: THE RED RANGER Becomes an Adventurer in Another World (path: /mnt/plex/anime/THE RED RANGER Becomes an Adventurer in Another World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Traitors (US) (path: /mnt/plex/tv/The Traitors (US) (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Übel Blatt (path: /mnt/plex/anime/Übel Blatt (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Worst Cooks in America (path: /mnt/plex/tv/Worst Cooks in America (2010))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Originals (path: /mnt/plex/tv/The Originals (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Even Given the Worthless \"Appraiser\" Class, I'm Actually the Strongest (path: /mnt/plex/anime/Even Given the Worthless Appraiser Class, I'm Actually the Strongest (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Studio (2025) (path: /mnt/plex/tv/The Studio (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Chaos Dragon (path: /mnt/plex/anime/Chaos Dragon (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Dimension 20's Adventuring Party (path: /mnt/plex/tv/Dimension 20's Adventuring Party)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Dirty Laundry (2022) (path: /mnt/plex/tv/Dirty Laundry)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Very Important People (2023) (path: /mnt/plex/tv/Very Important People)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Legendary Hero Is Dead! (path: /mnt/plex/anime/The Legendary Hero Is Dead! (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Yandere Dark Elf: She Chased Me All the Way From Another World! (path: /mnt/plex/anime/Yandere Dark Elf - She Chased Me All the Way From Another World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Fall of Diddy (path: /mnt/plex/tv/The Fall of Diddy (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Suits LA (path: /mnt/plex/tv/Suits LA (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Gen V (path: /mnt/plex/tv/Gen V (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Paradise (2025) (path: /mnt/plex/tv/Paradise (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Divine Gate (path: /mnt/plex/anime/Divine Gate (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Black Sails (path: /mnt/plex/tv/Black Sails (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Dirk Gently's Holistic Detective Agency (path: /mnt/plex/tv/Dirk Gently's Holistic Detective Agency (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Pokémon Concierge (path: /mnt/plex/tv/Pokémon Concierge (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Goosebumps (2023) (path: /mnt/plex/tv/Goosebumps (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Adventuring Academy (path: /mnt/plex/tv/Adventuring Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Astra Lost in Space (path: /mnt/plex/anime/Astra Lost in Space (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Banished From the Hero's Party, I Decided To Live a Quiet Life in the Countryside (path: /mnt/plex/anime/Banished from the Hero's Party, I Decided to Live a Quiet Life in the Countryside (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Bofuri: I Don't Want to Get Hurt, so I'll Max Out My Defense (path: /mnt/plex/anime/BOFURI I Don't Want to Get Hurt, so I'll Max Out My Defense. (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Call of the Night (path: /mnt/plex/anime/Call of the Night (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: I'm Quitting Heroing (path: /mnt/plex/anime/I'm Quitting Heroing (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Kemono Michi: Rise Up (path: /mnt/plex/anime/Kemono Michi Rise Up (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Maken-Ki! Battling Venus (path: /mnt/plex/anime/Maken-Ki! Battling Venus (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: My Daughter Left the Nest and Returned an S-Rank Adventurer (path: /mnt/plex/anime/My Daughter Left the Nest and Returned an S-Rank Adventurer (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Nura: Rise of the Yokai Clan (path: /mnt/plex/anime/Nura Rise of the Yokai Clan (2010))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Saga of Tanya the Evil (path: /mnt/plex/anime/Saga of Tanya the Evil (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Summoned to Another World for a Second Time (path: /mnt/plex/anime/Summoned to Another World for a Second Time (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Great Jahy Will Not Be Defeated! (path: /mnt/plex/anime/The Great Jahy Will Not Be Defeated! (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Toilet-bound Hanako-kun (path: /mnt/plex/anime/Toilet-Bound Hanako-kun (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Joran: The Princess of Snow and Blood (path: /mnt/plex/anime/Joran - The Princess of Snow and Blood (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: That Time I Got Reincarnated as a Slime (path: /mnt/plex/anime/That Time I Got Reincarnated as a Slime (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Chillin' in My 30s after Getting Fired from the Demon King's Army (path: /mnt/plex/anime/Chillin' in My 30s after Getting Fired from the Demon King's Army (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: KamiKatsu: Working for God in a Godless World (path: /mnt/plex/anime/KamiKatsu - Working for God in a Godless World (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Our Dating Story: The Experienced You and The Inexperienced Me (path: /mnt/plex/anime/Keikenzumi na Kimi to)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Demon Slayer: Kimetsu no Yaiba (path: /mnt/plex/anime/Demon Slayer - Kimetsu no Yaiba (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Miss Kuroitsu From the Monster Development Department (path: /mnt/plex/anime/Kaijin Kaihatsu-bu no Kuroitsu-san)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Kino's Journey: The Beautiful World (path: /mnt/plex/anime/Kino no Tabi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Love After World Domination (path: /mnt/plex/anime/Koi wa Sekai Seifuku no Ato de)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: In/Spectre (path: /mnt/plex/anime/Kyokou Suiri)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Dawn of the Witch (path: /mnt/plex/anime/The Dawn of the Witch (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Do You Love Your Mom and Her Two-Hit Multi-Target Attacks? (path: /mnt/plex/anime/Do You Love Your Mom and Her Two-Hit Multi-Target Attacks! (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Rascal Does Not Dream of Bunny Girl Senpai (path: /mnt/plex/anime/Rascal Does Not Dream of Bunny Girl Senpai (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Rising of the Shield Hero (path: /mnt/plex/anime/Tate no Yuusha no Nariagari)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Suppose a Kid From the Last Dungeon Boonies Moved to a Starter Town? (path: /mnt/plex/anime/Tatoeba Last Dungeon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Genius Prince's Guide to Raising a Nation Out of Debt (path: /mnt/plex/anime/Tensai Ouji no Akaji Kokka Saisei Jutsu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: I Couldn't Become a Hero, so I Reluctantly Decided To Get a Job (path: /mnt/plex/anime/I Couldn't Become a Hero, so I Reluctantly Decided To Get a Job (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Day of the Jackal (path: /mnt/plex/tv/The Day of the Jackal (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Pokémon (path: /mnt/plex/anime/Pokémon (1997))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Chilling Adventures of Sabrina (path: /mnt/plex/tv/Chilling Adventures of Sabrina (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Mobile Suit Gundam GQuuuuuuX (path: /mnt/plex/anime/Mobile Suit Gundam GQuuuuuuX (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Daredevil: Born Again (path: /mnt/plex/tv/Daredevil - Born Again (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Great (path: /mnt/plex/tv/The Great (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Smartypants (path: /mnt/plex/tv/Smartypants)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Um, Actually... (path: /mnt/plex/tv/Um, Actually)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Winning Time: The Rise of the Lakers Dynasty (path: /mnt/plex/tv/Winning Time - The Rise of the Lakers Dynasty (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: To Be Hero X (path: /mnt/plex/anime/To be Hero X (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Liverspots and Astronots (path: /mnt/plex/tv/Liverspots and Astronots (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Platonic (2023) (path: /mnt/plex/tv/Platonic (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Workaholics (path: /mnt/plex/tv/Workaholics (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: SAS Rogue Heroes (path: /mnt/plex/tv/SAS Rogue Heroes (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Bondsman (path: /mnt/plex/tv/The Bondsman (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Made For Love (path: /mnt/plex/tv/Made For Love (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: I'm the Evil Lord of an Intergalactic Empire! (path: /mnt/plex/anime/I'm the Evil Lord of an Intergalactic Empire! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Workin' Moms (path: /mnt/plex/tv/Workin' Moms (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Lazarus (path: /mnt/plex/anime/Lazarus (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Devil May Cry (2025) (path: /mnt/plex/anime/Devil May Cry (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: From Old Country Bumpkin to Master Swordsman (path: /mnt/plex/anime/From Old Country Bumpkin to Master Swordsman (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tojima Wants to Be a Kamen Rider (path: /mnt/plex/anime/Tojima Tanzaburo Wants to Be a Kamen Rider)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Murderbot (path: /mnt/plex/tv/Murderbot (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Apocalypse Hotel (path: /mnt/plex/anime/Apocalypse Hotel (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Moonrise (path: /mnt/plex/anime/Moonrise (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: WITCH WATCH (path: /mnt/plex/anime/WITCH WATCH (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Government Cheese (path: /mnt/plex/tv/Government Cheese (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Andor (path: /mnt/plex/tv/Andor (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Adults (2025) (path: /mnt/plex/tv/Adults (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Good Lord Bird (path: /mnt/plex/tv/The Good Lord Bird (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Apothecary Diaries (path: /mnt/plex/anime/The Apothecary Diaries (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: From Dusk Till Dawn: The Series (path: /mnt/plex/tv/From Dusk Till Dawn - The Series (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Krypton (path: /mnt/plex/tv/Krypton (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Love, Death & Robots (path: /mnt/plex/tv/Love, Death & Robots (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Dorohedoro (path: /mnt/plex/anime/Dorohedoro (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Second Best Hospital in the Galaxy (path: /mnt/plex/tv/The Second Best Hospital in the Galaxy (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Paper (2025) (path: /mnt/plex/tv/The Paper (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Ghosts (2019) (path: /mnt/plex/tv/Ghosts (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Sirens (2025) (path: /mnt/plex/tv/Sirens (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tires (path: /mnt/plex/tv/Tires (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: MobLand (path: /mnt/plex/tv/MobLand (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Terror in Resonance (path: /mnt/plex/anime/Terror in Resonance (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Fallen (2007) (path: /mnt/plex/tv/Fallen (2007))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Fallen (path: /mnt/plex/tv/Fallen (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Love Island USA (path: /mnt/plex/tv/Love Island (US) (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Countdown (2025) (path: /mnt/plex/tv/Countdown (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Parlor Room (path: /mnt/plex/tv/Parlor Room)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Ironheart (path: /mnt/plex/tv/Ironheart (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Dateline NBC (path: /mnt/plex/tv/Dateline NBC (1992))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Gachiakuta (path: /mnt/plex/anime/Gachiakuta (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Sword of the Demon Hunter: Kijin Gentosho (path: /mnt/plex/anime/Sword of the Demon Hunter - Kijin Gentosho (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Life After People (path: /mnt/plex/tv/Life After People (2009))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Vikings (path: /mnt/plex/tv/Vikings (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Detroiters (path: /mnt/plex/tv/Detroiters (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: ZENSHU (path: /mnt/plex/anime/ZENSHU (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Chad Powers (path: /mnt/plex/tv/Chad Powers (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Dusk Beyond the End of the World (path: /mnt/plex/anime/Dusk Beyond the End of the World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: New Saga (path: /mnt/plex/anime/New Saga (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Aristocrat’s Otherworldly Adventure: Serving Gods Who Go Too Far (path: /mnt/plex/anime/The Aristocrat’s Otherworldly Adventure - Serving Gods Who Go Too Far (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Wildemount Wildlings (path: /mnt/plex/tv/Wildemount Wildlings (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Rain (path: /mnt/plex/tv/The Rain (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Chosen (path: /mnt/plex/tv/The Chosen (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Hero Without a Class: Who Even Needs Skills?! (path: /mnt/plex/anime/Hero Without a Class - Who Even Needs Skills!! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Alien: Earth (path: /mnt/plex/tv/Alien - Earth (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Terminal List: Dark Wolf (path: /mnt/plex/tv/The Terminal List - Dark Wolf (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: First Lady (2025) (path: /mnt/plex/tv/First Lady (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Only Murders in the Building (path: /mnt/plex/tv/Only Murders in the Building (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Stranger Things (path: /mnt/plex/tv/Stranger Things (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Haunted Hotel (path: /mnt/plex/tv/Haunted Hotel (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: House of Guinness (path: /mnt/plex/tv/House of Guinness (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: SANDA (path: /mnt/plex/anime/SANDA (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Critical Role (path: /mnt/plex/tv/Critical Role (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Banshee (path: /mnt/plex/tv/Banshee (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Tatsuki Fujimoto 17-26 (path: /mnt/plex/anime/Tatsuki Fujimoto 17-26 (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: My Hero Academia: Vigilantes (path: /mnt/plex/anime/My Hero Academia - Vigilantes (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Mighty Nein (path: /mnt/plex/tv/Mighty Nein (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Dracula (path: /mnt/plex/tv/Dracula (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: A Knight of the Seven Kingdoms (path: /mnt/plex/tv/A Knight of the Seven Kingdoms (2026))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Case Study of Vanitas (path: /mnt/plex/anime/The Case Study of Vanitas (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: Taylor (path: /mnt/plex/tv/Taylor (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: My Life as Inukai-san's Dog (path: /mnt/plex/anime/My Life as Inukai-san's Dog (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "Checking series: The Forsytes (path: /mnt/plex/tv/The Forsytes (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 192} +{"timestamp": "2026-01-01T07:15:36Z", "level": "INFO", "message": "File not found: C:/mnt/plex/tv/Supernatural/Season 7/Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 246} +{"timestamp": "2026-01-01T07:15:47Z", "level": "INFO", "message": "Copied Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 135} +{"timestamp": "2026-01-01T07:15:47Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T07:15:47Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T07:15:47Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 162} +{"timestamp": "2026-01-01T07:15:49Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T07:15:49Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T07:15:49Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T07:15:49Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T07:15:49Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T07:15:49Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T07:15:49Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T07:15:49Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T07:15:49Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T07:15:49Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:15:49Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T07:15:49Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:15:49Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T07:17:23Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E02 - The Kids Are Alright x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E03 - Bad Day at Black Rock x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E04 - Sin City x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E05 - Bedtime Stories x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E06 - Red Sky at Morning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E07 - Fresh Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E08 - A Very Supernatural Christmas x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E09 - Malleus Maleficarum x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E10 - Dream a Little Dream of Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E11 - Mystery Spot x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E12 - Jus in Bello x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E13 - Ghostfacers! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E14 - Long-Distance Call x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E15 - Time is on My Side x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S03E16 - No Rest For the Wicked x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E01 - Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E02 - Reichenbach x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E03 - Soul Survivor x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E04 - Paper Moon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E05 - Fan Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E06 - Ask Jeeves x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E07 - Girls, Girls, Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E08 - Hibbing 911 x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E09 - The Things We Left Behind x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E10 - The Hunter Games x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E11 - There's No Place Like Home x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E12 - About a Boy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E13 - Halt & Catch Fire x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E14 - The Executioner's Song x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E15 - The Things They Carried x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E16 - Paint It Black x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E17 - Inside Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E18 - Book of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E19 - The Werther Project x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E20 - Angel Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E21 - Dark Dynasty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E22 - The Prisoner x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S10E23 - Brother's Keeper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E01 - In My Time of Dying x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E02 - Everybody Loves a Clown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E03 - Bloodlust x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E04 - Children Shouldn't Play With Dead Things x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E05 - Simon Said x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E06 - No Exit x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E07 - The Usual Suspects x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E08 - Crossroad Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E09 - Croatoan x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E10 - Hunted x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E11 - Playthings x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E12 - Nightshifter x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E13 - Houses of the Holy x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E14 - Born Under a Bad Sign x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E15 - Tall Tales x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E16 - Roadkill x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E17 - Heart x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E18 - Hollywood Babylon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E19 - Folsom Prison Blues x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E20 - What Is and What Should Never Be x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E21 - All Hell Breaks Loose (1) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S02E22 - All Hell Breaks Loose (2) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E01 - Lost and Found x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E02 - The Rising Son x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E03 - Patience x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E04 - The Big Empty x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E05 - Advanced Thanatology x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E06 - Tombstone x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E07 - War of the Worlds x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E08 - The Scorpion and the Frog x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E09 - The Bad Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E10 - Wayward Sisters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E11 - Breakdown x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E12 - Various & Sundry Villains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E13 - Devil's Bargain x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E14 - Good Intentions x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E15 - A Most Holy Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E16 - ScoobyNatural x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E17 - The Thing x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E18 - Bring 'Em Back Alive x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E19 - Funeralia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E20 - Unfinished Business x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E21 - Beat the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E22 - Exodus x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S13E23 - Let the Good Times Roll x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E01 - Keep Calm and Carry On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E02 - Mamma Mia x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E03 - The Foundry x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E04 - American Nightmare x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E05 - The One You've Been Waiting For x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E06 - Celebrating The Life Of Asa Fox x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E07 - Rock Never Dies x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E08 - LOTUS x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E09 - First Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E10 - Lily Sunder Has Some Regrets x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E11 - Regarding Dean x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E12 - Stuck in the Middle (With You) x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E13 - Family Feud x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E14 - The Raid x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E15 - Somewhere Between Heaven and Hell x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E16 - Ladies Drink Free x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E17 - The British Invasion x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E18 - The Memory Remains x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E19 - The Future x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E20 - Twigs and Twine and Tasha Banes x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E21 - There's Something About Mary x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E22 - Who We Are x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S12E23 - All Along the Watchtower x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E01 - I Think I'm Gonna Like It Here x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E02 - Devil May Care x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E03 - I'm No Angel x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E04 - Slumber Party x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E05 - Dog Dean Afternoon x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E06 - Heaven Can't Wait x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E07 - Bad Boys x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E08 - Rock and a Hard Place x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E09 - Holy Terror x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E10 - Road Trip x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E11 - First Born x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E12 - Sharp Teeth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E13 - The Purge x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E14 - Captives x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E15 - #THINMAN x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E16 - Blade Runners x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E17 - Mother's Little Helper x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E18 - Meta Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E19 - Alex Annie Alexis Ann x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E20 - Bloodlines x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E21 - King of the Damned x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E22 - Stairway to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S09E23 - Do You Believe in Miracles x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E01 - Meet the New Boss x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E02 - Hello, Cruel World x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E03 - The Girl Next Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E04 - Defending Your Life x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E05 - Shut Up, Dr. Phil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E06 - Slash Fiction x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E07 - The Mentalists x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E08 - Season Seven, Time for a Wedding! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E09 - How to Win Friends and Influence Monsters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E10 - Death's Door x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E11 - Adventures in Babysitting x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E12 - Time After Time x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E13 - The Slice Girls x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E14 - Plucky Pennywhistle's Magical Menagerie x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E15 - Repo Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E16 - Out With the Old x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E18 - Party On, Garth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipping: Supernatural - S07E19 - Of Grave Importance x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "process_folder", "line": 101} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Skipped 149 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Input file: P:\\tv\\Supernatural\\Season 7\\Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 184} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Converted to: C:/mnt/plex/tv/Supernatural/Season 7/Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 185} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Path mappings: [{'from': 'P:\\\\tv', 'to': '/mnt/plex/tv'}, {'from': 'P:\\\\anime', 'to': '/mnt/plex/anime'}, {'from': 'P:\\\\movies', 'to': '/mnt/plex/movies'}]", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 186} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Servamp (path: /mnt/plex/anime/Servamp (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: 1883 (path: /mnt/plex/tv/1883)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: 1923 (path: /mnt/plex/tv/1923)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: 30 Rock (path: /mnt/plex/tv/30 Rock (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Abbott Elementary (path: /mnt/plex/tv/Abbott Elementary (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: American Gods (path: /mnt/plex/tv/American Gods (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Assembly Required (path: /mnt/plex/tv/Assembly Required (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Avenue 5 (path: /mnt/plex/tv/Avenue 5)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Ballers (path: /mnt/plex/tv/Ballers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Band of Brothers (path: /mnt/plex/tv/Band of Brothers (2001))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Barry (path: /mnt/plex/tv/Barry)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Being Human (US) (path: /mnt/plex/tv/Being Human (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Belgravia: The Next Chapter (path: /mnt/plex/tv/Belgravia - The Next Chapter)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Better Call Saul (path: /mnt/plex/tv/Better Call Saul)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Billions (path: /mnt/plex/tv/Billions)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Black Bird (path: /mnt/plex/tv/Black Bird (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Brooklyn Nine-Nine (path: /mnt/plex/tv/Brooklyn Nine Nine)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Bupkis (path: /mnt/plex/tv/Bupkis)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Canada's Drag Race (path: /mnt/plex/tv/Canada's Drag Race)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Canada's Drag Race: Canada vs. The World (path: /mnt/plex/tv/Canada's Drag Race vs The World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Chuck (path: /mnt/plex/tv/Chuck)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Citadel (path: /mnt/plex/tv/Citadel)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Counterpart (path: /mnt/plex/tv/Counterpart)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dark Side of the Ring (path: /mnt/plex/tv/Dark Side of the Ring)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dopesick (path: /mnt/plex/tv/Dopesick)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Extraordinary (path: /mnt/plex/tv/Extraordinary)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Face Off (path: /mnt/plex/tv/Face Off (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Fargo (path: /mnt/plex/tv/Fargo (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Father Brown (2013) (path: /mnt/plex/tv/Father Brown)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Fired on Mars (path: /mnt/plex/tv/Fired on Mars (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Firefly (path: /mnt/plex/tv/Firefly (2002))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Game of Thrones (path: /mnt/plex/tv/Game Of Thrones)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Ghosts (US) (path: /mnt/plex/tv/Ghosts (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Gordon Ramsay's Food Stars (path: /mnt/plex/tv/Gordon Ramsay's Food Stars (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Halo (path: /mnt/plex/tv/Halo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Harley Quinn (path: /mnt/plex/tv/Harley Quinn)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Hawkeye (2021) (path: /mnt/plex/tv/Hawkeye)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Home Improvement (path: /mnt/plex/tv/Home Improvement 1991)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: House of the Dragon (path: /mnt/plex/tv/House of the Dragon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: iCarly (2021) (path: /mnt/plex/tv/iCarly (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Impractical Jokers (path: /mnt/plex/tv/Impractical Jokers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Ink Master (path: /mnt/plex/tv/Ink Master)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Invincible (path: /mnt/plex/tv/Invincible (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: It's Always Sunny in Philadelphia (path: /mnt/plex/tv/Its Always Sunny in Philadelphia)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Jury Duty (path: /mnt/plex/tv/Jury Duty)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Kim's Convenience (path: /mnt/plex/tv/Kim's Convenience)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Kitchen Nightmares (US) (path: /mnt/plex/tv/Kitchen Nightmares US)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Last Man Standing (2011) (path: /mnt/plex/tv/Last Man Standing)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Loki (path: /mnt/plex/tv/Loki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Lucky Hank (path: /mnt/plex/tv/Lucky Hank)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Married at First Sight (path: /mnt/plex/tv/Married at First Sight (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Monarch: Legacy of Monsters (path: /mnt/plex/tv/Monarch Legacy of Monsters)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Moon Knight (path: /mnt/plex/tv/Moon Knight)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Murder, She Wrote (path: /mnt/plex/tv/Murder She Wrote)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Mythic Quest (path: /mnt/plex/tv/Mythic Quest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Obi-Wan Kenobi (path: /mnt/plex/tv/Obi-Wan Kenobi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Our Flag Means Death (path: /mnt/plex/tv/Our Flag Means Death)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Outlander (path: /mnt/plex/tv/Outlander)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Over the Garden Wall (path: /mnt/plex/tv/Over the Garden Wall)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Pantheon (path: /mnt/plex/tv/Pantheon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Passion for Punchlines (path: /mnt/plex/tv/Passion for punchlines)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Peacemaker (path: /mnt/plex/tv/Peacemaker (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Percy Jackson and the Olympians (path: /mnt/plex/tv/Percy Jackson and the Olympians)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Quantum Leap (path: /mnt/plex/tv/Quantum Leap (1989))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Quantum Leap (2022) (path: /mnt/plex/tv/Quantum Leap 2022)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Raised by Wolves (2020) (path: /mnt/plex/tv/Raised by wolves)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Reacher (path: /mnt/plex/tv/Reacher (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Resident Alien (path: /mnt/plex/tv/Resident Alien (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Rick and Morty (path: /mnt/plex/tv/Rick and Morty)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Running Man (path: /mnt/plex/tv/Running Man)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race (path: /mnt/plex/tv/Rupaul's Drag Race)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race All Stars (path: /mnt/plex/tv/Rupaul's Drag Race All Stars)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Drag Race Down Under (path: /mnt/plex/tv/RuPaul's Drag Race Down Under)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race UK (path: /mnt/plex/tv/Rupaul's Drag Race UK)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race: Vegas Revue (path: /mnt/plex/tv/Rupaul's Drag Race Vegas Revue)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: RuPaul’s Drag Race UK vs the World (path: /mnt/plex/tv/Rupauls Drag Race UK vs The World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Schmigadoon! (path: /mnt/plex/tv/Schmigadoon!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Scorpion (path: /mnt/plex/tv/SCORPION)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: RuPaul's Secret Celebrity Drag Race (path: /mnt/plex/tv/Secret Celebrity RuPaul's Drag Race)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: See (path: /mnt/plex/tv/See)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Severance (path: /mnt/plex/tv/Severance)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: She-Hulk: Attorney at Law (path: /mnt/plex/tv/She-Hulk Attorney at Law)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Shrinking (path: /mnt/plex/tv/Shrinking (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Smiling Friends (path: /mnt/plex/tv/Smiling Friends)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Solar Opposites (path: /mnt/plex/tv/Solar Opposites)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Lioness (path: /mnt/plex/tv/Special Ops Lioness)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Star Trek: Strange New Worlds (path: /mnt/plex/tv/Star Strek Strange New Worlds)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Star Trek: Lower Decks (path: /mnt/plex/tv/Star Trek Lower Decks)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Stargirl (path: /mnt/plex/tv/Stargirl)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Station Eleven (path: /mnt/plex/tv/Station Eleven)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Superman & Lois (path: /mnt/plex/tv/Superman and Lois)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Supernatural (path: /mnt/plex/tv/Supernatural)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Taskmaster (path: /mnt/plex/tv/Taskmaster)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Taskmaster (AU) (path: /mnt/plex/tv/Taskmaster AU)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: ted (path: /mnt/plex/tv/Ted (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Ted Lasso (path: /mnt/plex/tv/Ted Lasso (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Big Door Prize (path: /mnt/plex/tv/The Big Door Prize)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Book of Boba Fett (path: /mnt/plex/tv/The Book of Boba Fett)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Boys (path: /mnt/plex/tv/The Boys)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Continental (2023) (path: /mnt/plex/tv/The Continental (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Falcon and The Winter Soldier (path: /mnt/plex/tv/The Falcon and The Winter Soldier (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Fall of the House of Usher (path: /mnt/plex/tv/The Fall of the House of Usher (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Gilded Age (path: /mnt/plex/tv/The Gilded Age)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Goes Wrong Show (path: /mnt/plex/tv/The Goes Wrong Show (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Last of Us (path: /mnt/plex/tv/The Last of Us)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Mandalorian (path: /mnt/plex/tv/The Mandalorian)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Now (path: /mnt/plex/tv/The Now)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Offer (path: /mnt/plex/tv/The Offer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Santa Clauses (path: /mnt/plex/tv/The Santa Clauses (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Split (path: /mnt/plex/tv/The Split)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Titans (2018) (path: /mnt/plex/tv/Titans (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tulsa King (path: /mnt/plex/tv/Tulsa King)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Twisted Metal (path: /mnt/plex/tv/Twisted Metal (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Villainous (path: /mnt/plex/tv/Villainous (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Walker (path: /mnt/plex/tv/Walker)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: WandaVision (path: /mnt/plex/tv/Wandavision)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Welcome to Chippendales (path: /mnt/plex/tv/Welcome to Chippendales (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Welcome to Wrexham (path: /mnt/plex/tv/Welcome to Wrexham)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Wolf Pack (path: /mnt/plex/tv/Wolf Pack)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Young Sheldon (path: /mnt/plex/tv/Young Sheldon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: 4 Cut Hero (path: /mnt/plex/anime/4 Cut Hero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: 86: Eighty Six (path: /mnt/plex/anime/86 - Eighty Six (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Shimoneta: A Boring World Where the Concept of Dirty Jokes Doesn't Exist (path: /mnt/plex/anime/A Boring World Where the Concept of Dirty Jokes Doesn't Exist)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: A Returner's Magic Should Be Special (path: /mnt/plex/anime/A Returner's Magic Should Be Special)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Aesthetica of a Rogue Hero (path: /mnt/plex/anime/Aesthetica of a Rogue Hero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Air Gear (path: /mnt/plex/anime/Air Gear (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Akame ga Kill! (path: /mnt/plex/anime/Akame ga Kill!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Akudama Drive (path: /mnt/plex/anime/Akudama Drive)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Am I Actually the Strongest? (path: /mnt/plex/anime/Am I Actually the Strongest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Amagi Brilliant Park (path: /mnt/plex/anime/Amagi Brilliant Park)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: And You Thought There Is Never a Girl Online? (path: /mnt/plex/anime/And You Thought There Is Never a Girl Online)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Arknights (path: /mnt/plex/anime/Arknights)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Armed Girl's Machiavellism (path: /mnt/plex/anime/Armed Girl's Machiavellism)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Assassins Pride (path: /mnt/plex/anime/Assassins Pride)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: B: The Beginning (path: /mnt/plex/anime/B The Beginning)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Beast Tamer (path: /mnt/plex/anime/Beast Tamer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Black Clover (path: /mnt/plex/anime/Black Clover)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Black Lagoon (path: /mnt/plex/anime/Black Lagoon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Black Summoner (path: /mnt/plex/anime/Black Summoner)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Blast of Tempest (path: /mnt/plex/anime/Blast of Tempest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Blood Lad (path: /mnt/plex/anime/Blood Lad (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Bloodivores (path: /mnt/plex/anime/Bloodivores)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Boogiepop Phantom (path: /mnt/plex/anime/Boogiepop Phantom)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Brave Bang Bravern! (path: /mnt/plex/anime/Brave Bang Bravern!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Broken Blade (path: /mnt/plex/anime/Broken Blade)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: BTOOOM! (path: /mnt/plex/anime/Btooom!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Buddy Daddies (path: /mnt/plex/anime/Buddy Daddies)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: By the Grace of the Gods (path: /mnt/plex/anime/By the Grace of the Gods)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Captain Earth (path: /mnt/plex/anime/Captain Earth)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Casshern Sins (path: /mnt/plex/anime/Casshern Sins (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Chained Soldier (path: /mnt/plex/anime/Chained Soldier)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Chainsaw Man (path: /mnt/plex/anime/Chainsaw Man (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Chobits (path: /mnt/plex/anime/Chobits)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Classroom of the Elite (path: /mnt/plex/anime/Classroom of the elite)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Combatants Will Be Dispatched! (path: /mnt/plex/anime/Combatants Will Be Dispatched)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Cop Craft (path: /mnt/plex/anime/Cop Craft)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Cowboy Bebop (path: /mnt/plex/anime/Cowboy Bebop)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: D.Gray-man (path: /mnt/plex/anime/D.Gray-man)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: DARLING in the FRANXX (path: /mnt/plex/anime/Darling in the FranXX)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Darwin's Game (path: /mnt/plex/anime/Darwin's Game)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dead Mount Death Play (path: /mnt/plex/anime/Dead Mount Death Play (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Deadman Wonderland (path: /mnt/plex/anime/Deadman Wonderland)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Battle Game in 5 Seconds (path: /mnt/plex/anime/Battle Game in 5 Seconds)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Deca-Dence (path: /mnt/plex/anime/Deca-Dence)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Deep Insanity: The Lost Child (path: /mnt/plex/anime/Deepy Insanity The Lost Child)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Demon King Daimao (path: /mnt/plex/anime/Demon King Daimao)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dimension W (path: /mnt/plex/anime/Dimension W)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: D.N.Angel (path: /mnt/plex/anime/DNAngel)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dog & Scissors (path: /mnt/plex/anime/Dog & Scissors)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Domestic Girlfriend (path: /mnt/plex/anime/Domestic Girlfriend)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Don't Toy With Me, Miss Nagatoro (path: /mnt/plex/anime/Don't Toy With Me Miss Nagatoro)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dr. STONE (path: /mnt/plex/anime/Dr.Stone)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dragonar Academy (path: /mnt/plex/anime/Dragonar Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Edens Zero (path: /mnt/plex/anime/Edens Zero (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Etotama (path: /mnt/plex/anime/Etotama)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Fairy gone (path: /mnt/plex/anime/Fairy Gone)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: FLCL (path: /mnt/plex/anime/FLCL)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Fractale (path: /mnt/plex/anime/Fractale)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Frieren: Beyond Journey's End (path: /mnt/plex/anime/Frieren - Beyond Journey's End)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: GATE (path: /mnt/plex/anime/GATE)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Gibiate (path: /mnt/plex/anime/Gibiate)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Girls Bravo (path: /mnt/plex/anime/Girls Bravo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Gleipnir (path: /mnt/plex/anime/Gleipnir)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Gosick (path: /mnt/plex/anime/Gosick)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Great Pretender (path: /mnt/plex/anime/Great Pretender)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Green Green (path: /mnt/plex/anime/Green Green)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Grenadier (path: /mnt/plex/anime/Grenadier)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Guilty Crown (path: /mnt/plex/anime/Guilty Crown)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Hamatora (path: /mnt/plex/anime/Hamatora)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Heavenly Delusion (path: /mnt/plex/anime/Heavenly Delusion)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Hero Return (path: /mnt/plex/anime/Hero Return)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Heroic Age (path: /mnt/plex/anime/Heroic Age)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: High School D×D (path: /mnt/plex/anime/High School D×D (2012))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Highschool of the Dead (path: /mnt/plex/anime/High School of the Dead)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Horimiya (path: /mnt/plex/anime/Horimiya)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Hortensia Saga (path: /mnt/plex/anime/Hortensia Saga)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: How Not to Summon a Demon Lord (path: /mnt/plex/anime/How Not to Summon a Demon Lord)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Hunter x Hunter (2011) (path: /mnt/plex/anime/Hunter x Hunter (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: I'm Standing on a Million Lives (path: /mnt/plex/anime/I'm Standing on a Million Lives)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: ID: INVADED (path: /mnt/plex/anime/ID Invaded)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Ikebukuro West Gate Park (path: /mnt/plex/anime/Ikebukuro West Gate Park)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Infinite Dendrogram (path: /mnt/plex/anime/Infinite Dendrogram)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Is It Wrong to Try to Pick Up Girls in a Dungeon? (path: /mnt/plex/anime/Is It Wrong to Try to Pick Up Girls in a Dungeon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Isekai Cheat Magician (path: /mnt/plex/anime/Isekai Cheat Magician)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: JUJUTSU KAISEN (path: /mnt/plex/anime/Jujutsu Kaisen)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Maria the Virgin Witch (path: /mnt/plex/anime/Junketsu no Maria (Maria the Virgin Witch))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Redo of Healer (path: /mnt/plex/anime/Kaifuku Jutsushi no Yarinaoshi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Kemono Jihen (path: /mnt/plex/anime/Kemono Jihen)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: King's Raid: Successors of the Will (path: /mnt/plex/anime/King's Raid)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Vermeil in Gold (path: /mnt/plex/anime/Vermeil in Gold (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Knight's & Magic (path: /mnt/plex/anime/Knight's & Magic)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: KonoSuba – God’s blessing on this wonderful world!! (path: /mnt/plex/anime/KonoSuba)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Onmyou Taisenki (path: /mnt/plex/anime/Kyoukai Senki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Lapis Re:LiGHTs (path: /mnt/plex/anime/Lapis ReLights)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Liar, Liar (path: /mnt/plex/anime/Liar Liar (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Listeners (path: /mnt/plex/anime/Listeners)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Log Horizon (path: /mnt/plex/anime/Log Horizon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Lord Marksman and Vanadis (path: /mnt/plex/anime/Lord Marksman and Vanadis)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Love Tyrant (path: /mnt/plex/anime/Love Tyrant)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Maburaho (path: /mnt/plex/anime/Maburaho)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Magi: Adventure of Sinbad (path: /mnt/plex/anime/Magi Adventure of Sinbad)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Magical Sempai (path: /mnt/plex/anime/Magical Senpai)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Magical Warfare (path: /mnt/plex/anime/Magical Warfare)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: MASHLE: MAGIC AND MUSCLES (path: /mnt/plex/anime/Mashle)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Medaka Box (path: /mnt/plex/anime/Medaka Box)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Mob Psycho 100 (path: /mnt/plex/anime/Mob Psycho 100)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tsukimichi -Moonlit Fantasy- (path: /mnt/plex/anime/Tsukimichi - Moonlit Fantasy (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Mr. Villain's Day Off (path: /mnt/plex/anime/Mr. Villain's Day Off)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Seton Academy: Join the Pack! (path: /mnt/plex/anime/Murenase! Seton Gakuen)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Mushoku Tensei: Jobless Reincarnation (path: /mnt/plex/anime/Mushoku Tensei - Jobless Reincarnation (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Muv-Luv Alternative (path: /mnt/plex/anime/Muv-Luv Alternative)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: My Girlfriend Is Shobitch (path: /mnt/plex/anime/My Girlfriend is Shobitch)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: My Hero Academia (path: /mnt/plex/anime/My Hero Academia)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: My Home Hero (path: /mnt/plex/anime/My Home Hero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: My Instant Death Ability Is Overpowered (path: /mnt/plex/anime/My Instant Death Ability Is So Overpowered, No One in This Other World Stands a Chance Against Me!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: My Isekai Life (path: /mnt/plex/anime/My Isekai Life (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: My Senpai Is Annoying (path: /mnt/plex/anime/My Senpai is Annoying)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: No Game No Life (path: /mnt/plex/anime/No Game No Life)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: No Guns Life (path: /mnt/plex/anime/No Guns Life (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Noblesse (path: /mnt/plex/anime/Noblesse)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Noragami (path: /mnt/plex/anime/Noragami)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: One-Punch Man (path: /mnt/plex/anime/One-Punch Man (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Orient (path: /mnt/plex/anime/Orient)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Oshi no Ko (path: /mnt/plex/anime/Oshi No Ko)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Trapped in a Dating Sim: The World of Otome Games Is Tough for Mobs (path: /mnt/plex/anime/Otomege Sekai wa Mob ni Kibishii Sekai desu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Outbreak Company (path: /mnt/plex/anime/Outbreak Company)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Overflow (path: /mnt/plex/anime/Overflow)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Peach Boy Riverside (path: /mnt/plex/anime/Peach Boy Riverside)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Platinum End (path: /mnt/plex/anime/Platinum End)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Plunderer (path: /mnt/plex/anime/Plunderer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Prison School (path: /mnt/plex/anime/Prison School)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Punch Line (path: /mnt/plex/anime/Punch Line)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Radiant (path: /mnt/plex/anime/Radiant (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Ragna Crimson (path: /mnt/plex/anime/Ragna Crimson)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Ranking of Kings (path: /mnt/plex/anime/Ranking of Kings)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Record of Ragnarok (path: /mnt/plex/anime/Record of Ragnarok)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Recovery of an MMO Junkie (path: /mnt/plex/anime/Recovery of an MMO Junkie)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Reign of the Seven Spellblades (path: /mnt/plex/anime/Reign of the Seven Spellblades)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: ReLIFE (path: /mnt/plex/anime/ReLife)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Rent-a-Girlfriend (path: /mnt/plex/anime/Rent a girlfriend)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Re: ZERO, Starting Life in Another World (path: /mnt/plex/anime/ReZERO -Starting Life in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Robotics;Notes (path: /mnt/plex/anime/Robotics;Notes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Rokka: Braves of the Six Flowers (path: /mnt/plex/anime/Rokka Braves of the Six Flowers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Rosario + Vampire (path: /mnt/plex/anime/Rosario + Vampire (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Sabikui Bisco (path: /mnt/plex/anime/Sabikui Bisco)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: SAKUGAN (path: /mnt/plex/anime/Sakugan)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Seirei Gensouki: Spirit Chronicles (path: /mnt/plex/anime/Seirei Gensouki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Sekirei (path: /mnt/plex/anime/Sekirei (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Seraph of the End (path: /mnt/plex/anime/Seraph of the End)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Seven Mortal Sins (path: /mnt/plex/anime/Seven Mortal Sins)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Shachibato! President, It's Time for Battle! (path: /mnt/plex/anime/Shachou Battle No Jikan Desu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Shikizakura (path: /mnt/plex/anime/Shikizakura)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Cautious Hero: The Hero Is Overpowered but Overly Cautious (path: /mnt/plex/anime/Shinchou Yuusha)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Shinobi no Ittoki (path: /mnt/plex/anime/Shinobi no Ittoki (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Skeleton Knight in Another World (path: /mnt/plex/anime/Skeleton Knight in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Solo Leveling (path: /mnt/plex/anime/Solo Leveling)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Spice and Wolf (path: /mnt/plex/anime/Spice and Wolf (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: SPY x FAMILY (path: /mnt/plex/anime/SPY x FAMILY (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Steins;Gate (path: /mnt/plex/anime/Steins;Gate)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Summer Time Rendering (path: /mnt/plex/anime/Summer Time Render (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Sunday Without God (path: /mnt/plex/anime/Sunday Without God)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Sword Art Online (path: /mnt/plex/anime/Sword Art Online (2012))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Taboo Tattoo (path: /mnt/plex/anime/Taboo Tattoo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tales of Wedding Rings (path: /mnt/plex/anime/Tales of Wedding Rings)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tears to Tiara (path: /mnt/plex/anime/Tears to Tiara)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tenchi Muyo! War on Geminar (path: /mnt/plex/anime/Tenchi Muyo! War on Geminar)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Daily Life of the Immortal King (path: /mnt/plex/anime/The Daily Life of the Immortal King)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Devil Is a Part-Timer! (path: /mnt/plex/anime/The Devil Is a Part-Timer! (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Faraway Paladin (path: /mnt/plex/anime/The Faraway Paladin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Foolish Angel Dances With the Devil (path: /mnt/plex/anime/The Foolish Angel Dances With the Devil)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The God of High School (path: /mnt/plex/anime/The God of High School)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Great Cleric (path: /mnt/plex/anime/The Great Cleric)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Greatest Demon Lord Is Reborn as a Typical Nobody (path: /mnt/plex/anime/The Greatest Demon Lord Is Reborn as a Typical Nobody)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Iceblade Sorcerer Shall Rule the World (path: /mnt/plex/anime/The Iceblade Sorcerer Shall Rule the World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The King's Avatar (path: /mnt/plex/anime/The Kings Avatar)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Legend of the Legendary Heroes (path: /mnt/plex/anime/The Legend of the Legendary Heroes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Misfit of Demon King Academy (path: /mnt/plex/anime/The Misfit of Demon King Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Quintessential Quintuplets (path: /mnt/plex/anime/The Quintessential Quintuplets)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Saint's Magic Power Is Omnipotent (path: /mnt/plex/anime/The Saint's Magic Power is Omnipotent)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Testament of Sister New Devil (path: /mnt/plex/anime/The Testament of Sister New Devil)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Wrong Way to Use Healing Magic (path: /mnt/plex/anime/The Wrong Way To Use Healing Magic (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: To LOVE-Ru (path: /mnt/plex/anime/To LOVE-Ru (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tokyo Ghoul (path: /mnt/plex/anime/Tokyo Ghoul)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tokyo Majin (path: /mnt/plex/anime/Tokyo Majin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tokyo Ravens (path: /mnt/plex/anime/Tokyo Ravens)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tokyo Revengers (path: /mnt/plex/anime/Tokyo Revengers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Toradora! (path: /mnt/plex/anime/Toradora!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tower of God (path: /mnt/plex/anime/Tower of God)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Triage X (path: /mnt/plex/anime/Triage X)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tribe Nine (path: /mnt/plex/anime/Tribe Nine)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Trigun (path: /mnt/plex/anime/Trigun)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: TRIGUN STAMPEDE (path: /mnt/plex/anime/Trigun Stampede)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tsugumomo (path: /mnt/plex/anime/Tsugumomo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Undead Murder Farce (path: /mnt/plex/anime/Undead Girl Murder Farce)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Undead Unluck (path: /mnt/plex/anime/Undead Unluck)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Urusei Yatsura (2022) (path: /mnt/plex/anime/Urusei Yatsura (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Val x Love (path: /mnt/plex/anime/Val x Love (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: VanDread (path: /mnt/plex/anime/VanDread (2000))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Villainess Level 99: I May Be the Hidden Boss but I'm Not the Demon Lord (path: /mnt/plex/anime/Villainess Level 99 - I May Be the Hidden Boss but I'm Not the Demon Lord (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Vinland Saga (path: /mnt/plex/anime/Vinland Saga (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Welcome to the N.H.K. (path: /mnt/plex/anime/Welcome to the N.H.K. (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Why the Hell Are You Here, Teacher!? (path: /mnt/plex/anime/Why the Hell are You Here, Teacher!! (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Wise Man's Grandchild (path: /mnt/plex/anime/Wise Man's Grandchild (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: World Break: Aria of Curse for a Holy Swordsman (path: /mnt/plex/anime/World Break - Aria of Curse for a Holy Swordsman (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: World's End Harem (path: /mnt/plex/anime/World's End Harem (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Xam'd: Lost Memories (path: /mnt/plex/anime/Xam'd - Lost Memories (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Your Lie in April (path: /mnt/plex/anime/Your Lie in April (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Familiar of Zero (path: /mnt/plex/anime/The Familiar of Zero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Zom 100: Bucket List of the Dead (path: /mnt/plex/anime/Zom 100 - Bucket List of the Dead (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: My One-Hit Kill Sister (path: /mnt/plex/anime/My One-Hit Kill Sister)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Ramsay's Kitchen Nightmares (path: /mnt/plex/tv/Kitchen Nightmares UK)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Mobile Suit Gundam: The Witch from Mercury (path: /mnt/plex/anime/Mobile Suit Gundam The Witch from Mercury)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: I'm the Villainess, So I'm Taming the Final Boss (path: /mnt/plex/anime/I'm the Villainess, So I'm Taming the Final Boss)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Arifureta: From Commonplace to World's Strongest (path: /mnt/plex/anime/Arifureta - From Commonplace to World's Strongest (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Monogatari (path: /mnt/plex/anime/Bakemonogatari)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Handyman Saitou in Another World (path: /mnt/plex/anime/Handyman Saitou in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Beyond the Boundary (path: /mnt/plex/anime/Beyond the Boundary (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Remake Our Life! (path: /mnt/plex/anime/Bokutachi no Remake)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Build-Divide (path: /mnt/plex/anime/Build Divide Code Black)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Chiikawa (path: /mnt/plex/anime/Chiikawa)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: So, I Can't Play H! (path: /mnt/plex/anime/So, I Can't Play H!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Danganronpa: The Animation (path: /mnt/plex/anime/Danganronpa)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Fire Force (path: /mnt/plex/anime/Enen no Shouboutai)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout (path: /mnt/plex/anime/Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: To Your Eternity (path: /mnt/plex/anime/Fumetsu no Anata e)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: How a Realist Hero Rebuilt the Kingdom (path: /mnt/plex/anime/Genjitsu Shugi Yuusha no Oukoku Saikenki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Fantasia Sango - Realm of Legends (path: /mnt/plex/anime/Fantasia Sango - Realm of Legends)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Brynhildr in the Darkness (path: /mnt/plex/anime/Gokukoku no Brynhildr)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Golden Boy (path: /mnt/plex/anime/Golden Boy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Fruit of Grisaia (path: /mnt/plex/anime/Grisaia no Kajitsu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Our Last Crusade or the Rise of a New World (path: /mnt/plex/anime/Our Last Crusade or the Rise of a New World (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: YU-NO: A Girl Who Chants Love at the Bound of This World (path: /mnt/plex/anime/YU-NO - A Girl Who Chants Love at the Bound of This World (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: So I'm a Spider, So What? (path: /mnt/plex/anime/So I'm a Spider, So What?)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Full Dive: This Ultimate Next-Gen Full Dive RPG Is Even Shittier Than Real Life! (path: /mnt/plex/anime/Kyuukyoku Shinka Shita Full Dive RPG ga Genjitsu yori mo Kusogee Dattara)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: In the Land of Leadale (path: /mnt/plex/anime/Leadale no Daichi nite)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Level 1 Demon Lord and One Room Hero (path: /mnt/plex/anime/Lv1 Maou to One Room Yuusha)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Demon Girl Next Door (path: /mnt/plex/anime/Machikado Mazoku)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Honor Student at Magic High School (2021) (path: /mnt/plex/anime/Mahouka Koukou no Rettousei)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Sorcerous Stabber Orphen (path: /mnt/plex/anime/Majutsushi Orphen Hagure Tabi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Makai Ouji: Devils and Realist (path: /mnt/plex/anime/Devils and Realist)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Masamune-kun's Revenge (path: /mnt/plex/anime/Masamune-kun no Revenge)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Hybrid x Heart Magias Academy Ataraxia (path: /mnt/plex/anime/Masou Gakuen HxH)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Mother of the Goddess' Dormitory (path: /mnt/plex/anime/Megami-ryou no Ryoubo-kun)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Dungeon of Black Company (path: /mnt/plex/anime/Meikyuu Black Company)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: I've Somehow Gotten Stronger When I Improved My Farm-Related Skills (path: /mnt/plex/anime/Noumin Kanren no Skill bakka Agetetara Nazeka Tsuyoku Natta)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Hidden Dungeon Only I Can Enter (path: /mnt/plex/anime/Ore dake Haireru Kakushi Dungeon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Sukisho! (path: /mnt/plex/anime/Ore wo Suki nano wa Omae dake ka yo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Ya Boy Kongming! (path: /mnt/plex/anime/Ya Boy Kongming! (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Princess Connect! Re:Dive (path: /mnt/plex/anime/Princess Connect)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dances with the Dragons (path: /mnt/plex/anime/Saredo Tsumibito wa Ryuu to Odoru)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Strongest Sage With the Weakest Crest (path: /mnt/plex/anime/Shikkakumon no Saikyou Kenja)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Rage of Bahamut (path: /mnt/plex/anime/Shokei Shoujo no Virgin Road)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Somali and the Forest Spirit (path: /mnt/plex/anime/Somali to Mori no Kamisama)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Koikimo (path: /mnt/plex/anime/Sono Bisque Doll wa Koi o Suru)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Otoboku: Maidens are Falling for Me! (path: /mnt/plex/anime/Tantei wa Mou, Shindeiru)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: A Certain Scientific Railgun (path: /mnt/plex/anime/Toaru Kagaku no Accelerator)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Campfire Cooking in Another World with My Absurd Skill (path: /mnt/plex/anime/Tondemo Skill de Isekai Hourou Meshi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: If It's for My Daughter, I'd Even Defeat a Demon Lord (path: /mnt/plex/anime/UchiMusume)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Hokkaido Gals Are Super Adorable! (path: /mnt/plex/anime/Hokkaido Gals Are Super Adorable!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Food Wars! (path: /mnt/plex/anime/Food Wars)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Grimgar, Ashes and Illusions (path: /mnt/plex/anime/Hai to Gensou no Grimgar)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: My Next Life as a Villainess: All Routes Lead to Doom! (path: /mnt/plex/anime/Hamefura)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Kingdoms of Ruin (path: /mnt/plex/anime/The Kingdoms of Ruin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Idaten Deities Know Only Peace (path: /mnt/plex/anime/Heion Sedai no Idaten-tachi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Lucifer and the Biscuit Hammer (path: /mnt/plex/anime/Hoshi no Samidare)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: BattleBots (path: /mnt/plex/tv/BattleBots)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dimension 20 (path: /mnt/plex/tv/Dimension 20)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Mr. & Mrs. Smith (2024) (path: /mnt/plex/tv/Mr. & Mrs. Smith (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Welcome to Demon School! Iruma-kun (path: /mnt/plex/anime/Welcome to Demon School! Iruma-kun (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Death and Other Details (path: /mnt/plex/tv/Death and Other Details)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Great British Bake Off (path: /mnt/plex/tv/The Great British Bake Off)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: BattleBots (2015) (path: /mnt/plex/tv/BattleBots (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Go! Go! Loser Ranger! (path: /mnt/plex/anime/Go! Go! Loser Ranger! (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Unwanted Undead Adventurer (path: /mnt/plex/anime/The Unwanted Undead Adventurer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Attack on Titan (path: /mnt/plex/anime/Attack on Titan)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Good Night World (path: /mnt/plex/anime/Good Night World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Eminence in Shadow (path: /mnt/plex/anime/The Eminence in Shadow)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: High School Prodigies Have It Easy Even in Another World! (path: /mnt/plex/anime/Choyoyu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Death March to the Parallel World Rhapsody (path: /mnt/plex/anime/Death March)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dolls' Frontline (2022) (path: /mnt/plex/anime/Dolls' Frontline)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Classroom for Heroes (path: /mnt/plex/anime/Classroom for Heroes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The 8th son? Are you kidding me? (path: /mnt/plex/anime/The 8th son! Are you kidding me! (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: I Got a Cheat Skill in Another World and Became Unrivaled in the Real World, Too (path: /mnt/plex/anime/Isekai de Cheat Skill)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Harem in the Labyrinth of Another World (path: /mnt/plex/anime/Harem in the Labyrinth of Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat (path: /mnt/plex/anime/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Overlord (path: /mnt/plex/anime/Overlord)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Ninja Kamui (path: /mnt/plex/anime/Ninja Kamui)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Bachelor (path: /mnt/plex/tv/The Bachelor)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Fallout (path: /mnt/plex/tv/Fallout)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Chillin' in Another World With Level 2 Super Cheat Powers (path: /mnt/plex/anime/Chillin' in Another World with Level 2 Super Cheat Powers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells (path: /mnt/plex/anime/Failure Frame - I Became the Strongest and Annihilated Everything with Low-Level Spells (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Wistoria: Wand and Sword (path: /mnt/plex/anime/Wistoria - Wand and Sword (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Quiet on Set: The Dark Side of Kids TV (path: /mnt/plex/tv/Quiet On Set - The Dark Side Of Kids TV)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Bachelorette (path: /mnt/plex/tv/The Bachelorette)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Strongest Magician in the Demon Lord's Army Was a Human (path: /mnt/plex/anime/The Strongest Magician in the Demon Lord's Army was a Human)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Grendizer U (path: /mnt/plex/anime/Grendizer U)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability (path: /mnt/plex/anime/I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Mission: Yozakura Family (path: /mnt/plex/anime/Mission - Yozakura Family)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Shōgun (path: /mnt/plex/tv/Shōgun)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Amazing Stories (path: /mnt/plex/tv/Amazing Stories (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Modern Family (path: /mnt/plex/tv/Modern Family)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Knuckles (path: /mnt/plex/tv/Knuckles)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Viral Hit (path: /mnt/plex/anime/Viral Hit (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Unnamed Memory (path: /mnt/plex/anime/Unnamed Memory)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: An Archdemon's Dilemma: How To Love Your Elf Bride (path: /mnt/plex/anime/An Archdemon's Dilemma - How To Love Your Elf Bride)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Kaiju No. 8 (path: /mnt/plex/anime/Kaiju No. 8)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Fable (path: /mnt/plex/anime/The Fable)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Spice and Wolf: MERCHANT MEETS THE WISE WOLF (path: /mnt/plex/anime/Spice and Wolf - MERCHANT MEETS THE WISE WOLF)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Gods' Games We Play (path: /mnt/plex/anime/Gods' Games We Play)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: THE NEW GATE (path: /mnt/plex/anime/THE NEW GATE (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Fantasy × Hunter (path: /mnt/plex/anime/Fantasy × Hunter (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Euphoria (US) (path: /mnt/plex/tv/Euphoria)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Galavant (path: /mnt/plex/tv/Galavant)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Married... with Children (path: /mnt/plex/tv/Married... with Children (1987))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Power (path: /mnt/plex/tv/Power (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Silicon Valley (path: /mnt/plex/tv/Silicon Valley (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Son of Zorn (path: /mnt/plex/tv/Son of Zorn (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The 10th Kingdom (path: /mnt/plex/tv/The 10th Kingdom (2000))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Bear (path: /mnt/plex/tv/The Bear (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Drew Carey Show (path: /mnt/plex/tv/The Drew Carey Show (1995))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Gentlemen (path: /mnt/plex/tv/The Gentlemen (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The IT Crowd (path: /mnt/plex/tv/The IT Crowd (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Office (US) (path: /mnt/plex/tv/The Office (US))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Vice Principals (path: /mnt/plex/tv/Vice Principals (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Amazing Digital Circus (path: /mnt/plex/tv/The Amazing Digital Circus (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: American Horror Story (path: /mnt/plex/tv/American Horror Story)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Sword Art Online Alternative: Gun Gale Online (path: /mnt/plex/anime/Sword Art Online Alternative - Gun Gale Online)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Catch-22 (path: /mnt/plex/tv/Catch-22)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Game Changer (path: /mnt/plex/tv/Game Changer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Hazbin Hotel (path: /mnt/plex/tv/Hazbin Hotel (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Lessons in Chemistry (path: /mnt/plex/tv/Lessons in Chemistry (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Make Some Noise (path: /mnt/plex/tv/Make Some Noise)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Pretender (path: /mnt/plex/tv/The Pretender)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: What If…? (path: /mnt/plex/tv/What If)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Billy the Kid (path: /mnt/plex/tv/Billy the Kid)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Shetland (path: /mnt/plex/tv/Shetland)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World (path: /mnt/plex/anime/As a Reincarnated Aristocrat, I'll Use My Appraisal Skill To Rise in the World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Below Deck (path: /mnt/plex/tv/Below Deck)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Umbrella Academy (path: /mnt/plex/tv/The Umbrella Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: New Girl (path: /mnt/plex/tv/New Girl)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Parks and Recreation (path: /mnt/plex/tv/Parks and Recreation)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Below Deck Mediterranean (path: /mnt/plex/tv/Below Deck Mediterranean)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dwight in Shining Armor (path: /mnt/plex/tv/Dwight in Shining Armor)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Schitt's Creek (path: /mnt/plex/tv/Schitt's Creek)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Unstable (path: /mnt/plex/tv/Unstable)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Closer (path: /mnt/plex/tv/The Closer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Why Does Nobody Remember Me in This World? (path: /mnt/plex/anime/Why Does Nobody Remember Me in This World! (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Code Geass: Rozé of the Recapture (path: /mnt/plex/anime/Code Geass - Rozé of the Recapture)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: 3 Body Problem (path: /mnt/plex/tv/3 Body Problem)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: South Park (path: /mnt/plex/tv/South Park)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible (path: /mnt/plex/anime/The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: I Parry Everything (path: /mnt/plex/anime/I Parry Everything)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: SAKAMOTO DAYS (path: /mnt/plex/anime/SAKAMOTO DAYS (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Healer Who Was Banished From His Party, Is, in Fact, the Strongest (path: /mnt/plex/anime/The Healer who Was Banished From His Party, Is, In Fact, The Strongest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Bye Bye, Earth (path: /mnt/plex/anime/Bye Bye, Earth (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Good Bye, Dragon Life (path: /mnt/plex/anime/Good Bye, Dragon Life (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Alya Sometimes Hides Her Feelings in Russian (path: /mnt/plex/anime/Alya Sometimes Hides Her Feelings in Russian)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: DOTA: Dragon's Blood (path: /mnt/plex/tv/DOTA - Dragon's Blood (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Pseudo Harem (path: /mnt/plex/anime/Pseudo Harem)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Strike the Blood (path: /mnt/plex/anime/Strike the Blood)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Demon Sword Master of Excalibur Academy (path: /mnt/plex/anime/The Demon Sword Master of Excalibur Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: DEAD DEAD DEMONS DEDEDEDE DESTRUCTION (path: /mnt/plex/anime/DEAD DEAD DEMONS DEDEDEDE DESTRUCTION)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: 2.5 Dimensional Seduction (path: /mnt/plex/anime/2.5 Dimensional Seduction (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Shoresy (path: /mnt/plex/tv/Shoresy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Letterkenny (path: /mnt/plex/tv/Letterkenny)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: DAN DA DAN (path: /mnt/plex/anime/DAN DA DAN (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: 'Tis Time for \"Torture,\" Princess (path: /mnt/plex/anime/'Tis Time for Torture, Princess)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Quality Assurance in Another World (path: /mnt/plex/anime/Quality Assurance in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: SHOSHIMIN: How to Become Ordinary (path: /mnt/plex/anime/SHOSHIMIN - How to Become Ordinary)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Consultant (2023) (path: /mnt/plex/tv/The Consultant (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: No Longer Allowed in Another World (path: /mnt/plex/anime/No Longer Allowed in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: WondLa (path: /mnt/plex/tv/WondLa)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Suicide Squad Isekai (path: /mnt/plex/anime/Suicide Squad Isekai (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Harley and the Davidsons (path: /mnt/plex/tv/Harley and the Davidsons)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Gravity Falls (path: /mnt/plex/tv/Gravity Falls)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Bad Monkey (path: /mnt/plex/tv/Bad Monkey)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Terminator Zero (path: /mnt/plex/tv/Terminator Zero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Cobra Kai (path: /mnt/plex/tv/Cobra Kai)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Taboo (2017) (path: /mnt/plex/tv/Taboo (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: English Teacher (path: /mnt/plex/tv/English Teacher)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Kevin Can F**k Himself (path: /mnt/plex/tv/Kevin Can F-k Himself)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Shomin Sample (path: /mnt/plex/anime/Shomin Sample)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Extrapolations (path: /mnt/plex/tv/Extrapolations)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: KAOS (path: /mnt/plex/tv/Kaos)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Dragon Dentist (path: /mnt/plex/tv/The Dragon Dentist)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Bucchigiri?! (path: /mnt/plex/anime/Bucchigiri!!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Home Economics (path: /mnt/plex/tv/Home Economics)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Penguin (path: /mnt/plex/tv/The Penguin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Agatha All Along (path: /mnt/plex/tv/Agatha All Along)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: High Potential (path: /mnt/plex/tv/High Potential)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Nobody Wants This (path: /mnt/plex/tv/Nobody Wants This)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: One More Time (2024) (path: /mnt/plex/tv/One More Time (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Swimming with Sharks (path: /mnt/plex/tv/Swimming with Sharks)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Loner Life in Another World (path: /mnt/plex/anime/Loner Life in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: You are Ms. Servant (path: /mnt/plex/anime/You are Ms. Servant (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Let This Grieving Soul Retire! (path: /mnt/plex/anime/Let This Grieving Soul Retire!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Adam's Sweet Agony (path: /mnt/plex/anime/Adam's Sweet Agony)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Legend of Vox Machina (path: /mnt/plex/tv/The Legend of Vox Machina)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Most Notorious \"Talker\" Runs the World's Greatest Clan (path: /mnt/plex/anime/The Most Notorious Talker Runs the World's Greatest Clan)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Killer Cakes (path: /mnt/plex/tv/Killer Cakes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: I Left my A-Rank Party to Help My Former Students Reach the Dungeon Depths! (path: /mnt/plex/anime/I Left my A-Rank Party to Help My Former Students Reach the Dungeon Depths!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Journal of the Mysterious Creatures (path: /mnt/plex/tv/The Journal of the Mysterious Creatures (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Below Deck Sailing Yacht (path: /mnt/plex/tv/Below Deck Sailing Yacht)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Wandering Witch: The Journey of Elaina (path: /mnt/plex/anime/Wandering Witch - The Journey of Elaina (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Reincarnation of the Strongest Exorcist in Another World (path: /mnt/plex/anime/The Reincarnation of the Strongest Exorcist in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Franchise (2024) (path: /mnt/plex/tv/The Franchise (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Lord of the Rings: The Rings of Power (path: /mnt/plex/tv/The Lord of the Rings - The Rings of Power)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Spartacus (path: /mnt/plex/tv/Spartacus)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Citadel: Diana (path: /mnt/plex/tv/Citadel - Diana)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tomb Raider: The Legend of Lara Croft (path: /mnt/plex/tv/Tomb Raider - The Legend of Lara Croft)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Sweetpea (path: /mnt/plex/tv/Sweetpea)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Taskmaster (NZ) (path: /mnt/plex/tv/Taskmaster (NZ))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Taskmaster: Champion of Champions (path: /mnt/plex/tv/Taskmaster - Champion of Champions)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Utopia (AU) (path: /mnt/plex/tv/Utopia (AU))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: PLUTO (path: /mnt/plex/anime/PLUTO (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Scenes From A Marriage (US) (path: /mnt/plex/tv/Scenes from a Marriage (US))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Mecha-Ude: Mechanical Arms (path: /mnt/plex/anime/Mecha-Ude - Mechanical Arms)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Nozo X Kimi (path: /mnt/plex/anime/Nozo X Kimi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Demon Lord 2099 (path: /mnt/plex/anime/Demon Lord 2099 (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Revenger (path: /mnt/plex/anime/Revenger)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Secret Level (path: /mnt/plex/tv/Secret Level)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: A Terrified Teacher at Ghoul School! (path: /mnt/plex/anime/A Terrified Teacher at Ghoul School!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Ascendance of a Bookworm (path: /mnt/plex/anime/Ascendance of a Bookworm)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Edge of Sleep (path: /mnt/plex/tv/The Edge of Sleep)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Poppa’s House (path: /mnt/plex/tv/Poppa’s House)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Queen's Gambit (path: /mnt/plex/tv/The Queen's Gambit)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Interior Chinatown (path: /mnt/plex/tv/Interior Chinatown)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Mobile Suit Gundam: Iron-Blooded Orphans (path: /mnt/plex/anime/Mobile Suit Gundam - Iron-Blooded Orphans)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Selfie (path: /mnt/plex/tv/Selfie)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Newsroom (2012) (path: /mnt/plex/tv/The Newsroom)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Morning Show (path: /mnt/plex/tv/The Morning Show)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Take (path: /mnt/plex/tv/The Take)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Saving Hope (path: /mnt/plex/tv/Saving Hope)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dungeons & Dragons (path: /mnt/plex/tv/Dungeons & Dragons)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dune: Prophecy (path: /mnt/plex/tv/Dune - Prophecy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Star Wars: Skeleton Crew (path: /mnt/plex/tv/Star Wars - Skeleton Crew (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Time Bandits (path: /mnt/plex/tv/Time Bandits (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: St. Denis Medical (path: /mnt/plex/tv/St. Denis Medical (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Doctor Who (2005) (path: /mnt/plex/tv/Doctor Who (2005))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Eternaut (path: /mnt/plex/tv/The Eternaut)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Arcane (path: /mnt/plex/tv/Arcane (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Giant Beasts of Ars (path: /mnt/plex/anime/Giant Beasts of Ars (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Your Honor (path: /mnt/plex/tv/Your Honor (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Junior Taskmaster (path: /mnt/plex/tv/Junior Taskmaster (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Taskmaster (QC) (path: /mnt/plex/tv/Taskmaster (CA) (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Game Changers (2024) (path: /mnt/plex/tv/Game Changers (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Yellowstone (2018) (path: /mnt/plex/tv/Yellowstone (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Below Deck Down Under (path: /mnt/plex/tv/Below Deck Down Under (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Ludwig (2024) (path: /mnt/plex/tv/Ludwig (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Brilliant Healer's New Life in the Shadows (path: /mnt/plex/anime/The Brilliant Healer's New Life in the Shadows)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: In the Dark (2019) (path: /mnt/plex/tv/In the Dark (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Marvel's The Punisher (path: /mnt/plex/tv/Marvel's The Punisher (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tokyo Override (path: /mnt/plex/tv/Tokyo Override (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Cyberpunk: Edgerunners (path: /mnt/plex/tv/Cyberpunk - Edgerunners (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Man Down (path: /mnt/plex/tv/Man Down (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Hitmen (path: /mnt/plex/tv/Hitmen (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Silo (path: /mnt/plex/tv/Silo (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Landman (path: /mnt/plex/tv/Landman (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Mayor of Kingstown (path: /mnt/plex/tv/Mayor of Kingstown (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Lawmen: Bass Reeves (path: /mnt/plex/tv/Lawmen - Bass Reeves (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Royal Pains (path: /mnt/plex/tv/Royal Pains (2009))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Matlock (2024) (path: /mnt/plex/tv/Matlock (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Continuum (path: /mnt/plex/tv/Continuum (2012))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Trunk (path: /mnt/plex/tv/The Trunk (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Harry Potter: Wizards of Baking (path: /mnt/plex/tv/Harry Potter - Wizards of Baking (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Jentry Chau vs. the Underworld (path: /mnt/plex/tv/Jentry Chau vs. the Underworld (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Hero Inside (path: /mnt/plex/tv/Hero Inside (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Shifting Gears (path: /mnt/plex/tv/Shifting Gears (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Old Man (path: /mnt/plex/tv/The Old Man (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Squid Game (path: /mnt/plex/tv/Squid Game (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Creature Commandos (path: /mnt/plex/tv/Creature Commandos (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Daily Life of a Middle-Aged Online Shopper in Another World (path: /mnt/plex/anime/The Daily Life of a Middle-Aged Online Shopper in Another World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: I May Be a Guild Receptionist, But I'll Solo Any Boss to Clock Out on Time (path: /mnt/plex/anime/I May Be a Guild Receptionist, But I'll Solo Any Boss to Clock Out on Time (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Beheneko: The Elf-Girl's Cat Is Secretly an S-Ranked Monster! (path: /mnt/plex/anime/Beheneko - The Elf-Girl's Cat Is Secretly an S-Ranked Monster! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: I'm Living with an Otaku NEET Kunoichi!? (path: /mnt/plex/anime/I'm Living with an Otaku NEET Kunoichi!! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Yoasobi Gurashi! (path: /mnt/plex/anime/Yoasobi Gurashi! (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: THE RED RANGER Becomes an Adventurer in Another World (path: /mnt/plex/anime/THE RED RANGER Becomes an Adventurer in Another World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Traitors (US) (path: /mnt/plex/tv/The Traitors (US) (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Übel Blatt (path: /mnt/plex/anime/Übel Blatt (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Worst Cooks in America (path: /mnt/plex/tv/Worst Cooks in America (2010))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Originals (path: /mnt/plex/tv/The Originals (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Even Given the Worthless \"Appraiser\" Class, I'm Actually the Strongest (path: /mnt/plex/anime/Even Given the Worthless Appraiser Class, I'm Actually the Strongest (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Studio (2025) (path: /mnt/plex/tv/The Studio (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Chaos Dragon (path: /mnt/plex/anime/Chaos Dragon (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dimension 20's Adventuring Party (path: /mnt/plex/tv/Dimension 20's Adventuring Party)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dirty Laundry (2022) (path: /mnt/plex/tv/Dirty Laundry)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Very Important People (2023) (path: /mnt/plex/tv/Very Important People)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Legendary Hero Is Dead! (path: /mnt/plex/anime/The Legendary Hero Is Dead! (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Yandere Dark Elf: She Chased Me All the Way From Another World! (path: /mnt/plex/anime/Yandere Dark Elf - She Chased Me All the Way From Another World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Fall of Diddy (path: /mnt/plex/tv/The Fall of Diddy (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Suits LA (path: /mnt/plex/tv/Suits LA (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Gen V (path: /mnt/plex/tv/Gen V (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Paradise (2025) (path: /mnt/plex/tv/Paradise (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Divine Gate (path: /mnt/plex/anime/Divine Gate (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Black Sails (path: /mnt/plex/tv/Black Sails (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dirk Gently's Holistic Detective Agency (path: /mnt/plex/tv/Dirk Gently's Holistic Detective Agency (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Pokémon Concierge (path: /mnt/plex/tv/Pokémon Concierge (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Goosebumps (2023) (path: /mnt/plex/tv/Goosebumps (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Adventuring Academy (path: /mnt/plex/tv/Adventuring Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Astra Lost in Space (path: /mnt/plex/anime/Astra Lost in Space (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Banished From the Hero's Party, I Decided To Live a Quiet Life in the Countryside (path: /mnt/plex/anime/Banished from the Hero's Party, I Decided to Live a Quiet Life in the Countryside (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Bofuri: I Don't Want to Get Hurt, so I'll Max Out My Defense (path: /mnt/plex/anime/BOFURI I Don't Want to Get Hurt, so I'll Max Out My Defense. (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Call of the Night (path: /mnt/plex/anime/Call of the Night (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: I'm Quitting Heroing (path: /mnt/plex/anime/I'm Quitting Heroing (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Kemono Michi: Rise Up (path: /mnt/plex/anime/Kemono Michi Rise Up (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Maken-Ki! Battling Venus (path: /mnt/plex/anime/Maken-Ki! Battling Venus (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: My Daughter Left the Nest and Returned an S-Rank Adventurer (path: /mnt/plex/anime/My Daughter Left the Nest and Returned an S-Rank Adventurer (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Nura: Rise of the Yokai Clan (path: /mnt/plex/anime/Nura Rise of the Yokai Clan (2010))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Saga of Tanya the Evil (path: /mnt/plex/anime/Saga of Tanya the Evil (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Summoned to Another World for a Second Time (path: /mnt/plex/anime/Summoned to Another World for a Second Time (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Great Jahy Will Not Be Defeated! (path: /mnt/plex/anime/The Great Jahy Will Not Be Defeated! (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Toilet-bound Hanako-kun (path: /mnt/plex/anime/Toilet-Bound Hanako-kun (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Joran: The Princess of Snow and Blood (path: /mnt/plex/anime/Joran - The Princess of Snow and Blood (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: That Time I Got Reincarnated as a Slime (path: /mnt/plex/anime/That Time I Got Reincarnated as a Slime (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Chillin' in My 30s after Getting Fired from the Demon King's Army (path: /mnt/plex/anime/Chillin' in My 30s after Getting Fired from the Demon King's Army (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: KamiKatsu: Working for God in a Godless World (path: /mnt/plex/anime/KamiKatsu - Working for God in a Godless World (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Our Dating Story: The Experienced You and The Inexperienced Me (path: /mnt/plex/anime/Keikenzumi na Kimi to)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Demon Slayer: Kimetsu no Yaiba (path: /mnt/plex/anime/Demon Slayer - Kimetsu no Yaiba (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Miss Kuroitsu From the Monster Development Department (path: /mnt/plex/anime/Kaijin Kaihatsu-bu no Kuroitsu-san)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Kino's Journey: The Beautiful World (path: /mnt/plex/anime/Kino no Tabi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Love After World Domination (path: /mnt/plex/anime/Koi wa Sekai Seifuku no Ato de)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: In/Spectre (path: /mnt/plex/anime/Kyokou Suiri)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Dawn of the Witch (path: /mnt/plex/anime/The Dawn of the Witch (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Do You Love Your Mom and Her Two-Hit Multi-Target Attacks? (path: /mnt/plex/anime/Do You Love Your Mom and Her Two-Hit Multi-Target Attacks! (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Rascal Does Not Dream of Bunny Girl Senpai (path: /mnt/plex/anime/Rascal Does Not Dream of Bunny Girl Senpai (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Rising of the Shield Hero (path: /mnt/plex/anime/Tate no Yuusha no Nariagari)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Suppose a Kid From the Last Dungeon Boonies Moved to a Starter Town? (path: /mnt/plex/anime/Tatoeba Last Dungeon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Genius Prince's Guide to Raising a Nation Out of Debt (path: /mnt/plex/anime/Tensai Ouji no Akaji Kokka Saisei Jutsu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: I Couldn't Become a Hero, so I Reluctantly Decided To Get a Job (path: /mnt/plex/anime/I Couldn't Become a Hero, so I Reluctantly Decided To Get a Job (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Day of the Jackal (path: /mnt/plex/tv/The Day of the Jackal (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Pokémon (path: /mnt/plex/anime/Pokémon (1997))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Chilling Adventures of Sabrina (path: /mnt/plex/tv/Chilling Adventures of Sabrina (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Mobile Suit Gundam GQuuuuuuX (path: /mnt/plex/anime/Mobile Suit Gundam GQuuuuuuX (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Daredevil: Born Again (path: /mnt/plex/tv/Daredevil - Born Again (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Great (path: /mnt/plex/tv/The Great (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Smartypants (path: /mnt/plex/tv/Smartypants)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Um, Actually... (path: /mnt/plex/tv/Um, Actually)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Winning Time: The Rise of the Lakers Dynasty (path: /mnt/plex/tv/Winning Time - The Rise of the Lakers Dynasty (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: To Be Hero X (path: /mnt/plex/anime/To be Hero X (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Liverspots and Astronots (path: /mnt/plex/tv/Liverspots and Astronots (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Platonic (2023) (path: /mnt/plex/tv/Platonic (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Workaholics (path: /mnt/plex/tv/Workaholics (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: SAS Rogue Heroes (path: /mnt/plex/tv/SAS Rogue Heroes (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Bondsman (path: /mnt/plex/tv/The Bondsman (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Made For Love (path: /mnt/plex/tv/Made For Love (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: I'm the Evil Lord of an Intergalactic Empire! (path: /mnt/plex/anime/I'm the Evil Lord of an Intergalactic Empire! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Workin' Moms (path: /mnt/plex/tv/Workin' Moms (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Lazarus (path: /mnt/plex/anime/Lazarus (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Devil May Cry (2025) (path: /mnt/plex/anime/Devil May Cry (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: From Old Country Bumpkin to Master Swordsman (path: /mnt/plex/anime/From Old Country Bumpkin to Master Swordsman (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tojima Wants to Be a Kamen Rider (path: /mnt/plex/anime/Tojima Tanzaburo Wants to Be a Kamen Rider)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Murderbot (path: /mnt/plex/tv/Murderbot (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Apocalypse Hotel (path: /mnt/plex/anime/Apocalypse Hotel (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Moonrise (path: /mnt/plex/anime/Moonrise (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: WITCH WATCH (path: /mnt/plex/anime/WITCH WATCH (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Government Cheese (path: /mnt/plex/tv/Government Cheese (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Andor (path: /mnt/plex/tv/Andor (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Adults (2025) (path: /mnt/plex/tv/Adults (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Good Lord Bird (path: /mnt/plex/tv/The Good Lord Bird (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Apothecary Diaries (path: /mnt/plex/anime/The Apothecary Diaries (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: From Dusk Till Dawn: The Series (path: /mnt/plex/tv/From Dusk Till Dawn - The Series (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Krypton (path: /mnt/plex/tv/Krypton (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Love, Death & Robots (path: /mnt/plex/tv/Love, Death & Robots (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dorohedoro (path: /mnt/plex/anime/Dorohedoro (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Second Best Hospital in the Galaxy (path: /mnt/plex/tv/The Second Best Hospital in the Galaxy (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Paper (2025) (path: /mnt/plex/tv/The Paper (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Ghosts (2019) (path: /mnt/plex/tv/Ghosts (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Sirens (2025) (path: /mnt/plex/tv/Sirens (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tires (path: /mnt/plex/tv/Tires (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: MobLand (path: /mnt/plex/tv/MobLand (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Terror in Resonance (path: /mnt/plex/anime/Terror in Resonance (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Fallen (2007) (path: /mnt/plex/tv/Fallen (2007))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Fallen (path: /mnt/plex/tv/Fallen (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Love Island USA (path: /mnt/plex/tv/Love Island (US) (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Countdown (2025) (path: /mnt/plex/tv/Countdown (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Parlor Room (path: /mnt/plex/tv/Parlor Room)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Ironheart (path: /mnt/plex/tv/Ironheart (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dateline NBC (path: /mnt/plex/tv/Dateline NBC (1992))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Gachiakuta (path: /mnt/plex/anime/Gachiakuta (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Sword of the Demon Hunter: Kijin Gentosho (path: /mnt/plex/anime/Sword of the Demon Hunter - Kijin Gentosho (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Life After People (path: /mnt/plex/tv/Life After People (2009))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Vikings (path: /mnt/plex/tv/Vikings (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Detroiters (path: /mnt/plex/tv/Detroiters (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: ZENSHU (path: /mnt/plex/anime/ZENSHU (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Chad Powers (path: /mnt/plex/tv/Chad Powers (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dusk Beyond the End of the World (path: /mnt/plex/anime/Dusk Beyond the End of the World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: New Saga (path: /mnt/plex/anime/New Saga (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Aristocrat’s Otherworldly Adventure: Serving Gods Who Go Too Far (path: /mnt/plex/anime/The Aristocrat’s Otherworldly Adventure - Serving Gods Who Go Too Far (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Wildemount Wildlings (path: /mnt/plex/tv/Wildemount Wildlings (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Rain (path: /mnt/plex/tv/The Rain (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Chosen (path: /mnt/plex/tv/The Chosen (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Hero Without a Class: Who Even Needs Skills?! (path: /mnt/plex/anime/Hero Without a Class - Who Even Needs Skills!! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Alien: Earth (path: /mnt/plex/tv/Alien - Earth (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Terminal List: Dark Wolf (path: /mnt/plex/tv/The Terminal List - Dark Wolf (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: First Lady (2025) (path: /mnt/plex/tv/First Lady (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Only Murders in the Building (path: /mnt/plex/tv/Only Murders in the Building (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Stranger Things (path: /mnt/plex/tv/Stranger Things (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Haunted Hotel (path: /mnt/plex/tv/Haunted Hotel (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: House of Guinness (path: /mnt/plex/tv/House of Guinness (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: SANDA (path: /mnt/plex/anime/SANDA (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Critical Role (path: /mnt/plex/tv/Critical Role (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Banshee (path: /mnt/plex/tv/Banshee (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Tatsuki Fujimoto 17-26 (path: /mnt/plex/anime/Tatsuki Fujimoto 17-26 (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: My Hero Academia: Vigilantes (path: /mnt/plex/anime/My Hero Academia - Vigilantes (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Mighty Nein (path: /mnt/plex/tv/Mighty Nein (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Dracula (path: /mnt/plex/tv/Dracula (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: A Knight of the Seven Kingdoms (path: /mnt/plex/tv/A Knight of the Seven Kingdoms (2026))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Case Study of Vanitas (path: /mnt/plex/anime/The Case Study of Vanitas (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: Taylor (path: /mnt/plex/tv/Taylor (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: My Life as Inukai-san's Dog (path: /mnt/plex/anime/My Life as Inukai-san's Dog (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "Checking series: The Forsytes (path: /mnt/plex/tv/The Forsytes (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:17:26Z", "level": "INFO", "message": "File not found: C:/mnt/plex/tv/Supernatural/Season 7/Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 249} +{"timestamp": "2026-01-01T07:17:37Z", "level": "INFO", "message": "Copied Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 135} +{"timestamp": "2026-01-01T07:17:37Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T07:17:37Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T07:17:37Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 162} +{"timestamp": "2026-01-01T07:17:38Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T07:17:38Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T07:17:38Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T07:17:38Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T07:17:38Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T07:17:38Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T07:17:38Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T07:17:38Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T07:17:38Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T07:17:38Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:17:38Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T07:17:38Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:17:38Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T07:18:44Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Skipped 149 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 105} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Input file: P:\\tv\\Supernatural\\Season 7\\Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 184} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Converted to: C:/mnt/plex/tv/Supernatural/Season 7/Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 185} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Path mappings: [{'from': 'P:\\\\tv', 'to': '/mnt/plex/tv'}, {'from': 'P:\\\\anime', 'to': '/mnt/plex/anime'}, {'from': 'P:\\\\movies', 'to': '/mnt/plex/movies'}]", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 186} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Servamp (path: /mnt/plex/anime/Servamp (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: 1883 (path: /mnt/plex/tv/1883)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: 1923 (path: /mnt/plex/tv/1923)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: 30 Rock (path: /mnt/plex/tv/30 Rock (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Abbott Elementary (path: /mnt/plex/tv/Abbott Elementary (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: American Gods (path: /mnt/plex/tv/American Gods (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Assembly Required (path: /mnt/plex/tv/Assembly Required (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Avenue 5 (path: /mnt/plex/tv/Avenue 5)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Ballers (path: /mnt/plex/tv/Ballers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Band of Brothers (path: /mnt/plex/tv/Band of Brothers (2001))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Barry (path: /mnt/plex/tv/Barry)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Being Human (US) (path: /mnt/plex/tv/Being Human (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Belgravia: The Next Chapter (path: /mnt/plex/tv/Belgravia - The Next Chapter)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Better Call Saul (path: /mnt/plex/tv/Better Call Saul)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Billions (path: /mnt/plex/tv/Billions)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Black Bird (path: /mnt/plex/tv/Black Bird (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Brooklyn Nine-Nine (path: /mnt/plex/tv/Brooklyn Nine Nine)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Bupkis (path: /mnt/plex/tv/Bupkis)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Canada's Drag Race (path: /mnt/plex/tv/Canada's Drag Race)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Canada's Drag Race: Canada vs. The World (path: /mnt/plex/tv/Canada's Drag Race vs The World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Chuck (path: /mnt/plex/tv/Chuck)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Citadel (path: /mnt/plex/tv/Citadel)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Counterpart (path: /mnt/plex/tv/Counterpart)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dark Side of the Ring (path: /mnt/plex/tv/Dark Side of the Ring)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dopesick (path: /mnt/plex/tv/Dopesick)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Extraordinary (path: /mnt/plex/tv/Extraordinary)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Face Off (path: /mnt/plex/tv/Face Off (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Fargo (path: /mnt/plex/tv/Fargo (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Father Brown (2013) (path: /mnt/plex/tv/Father Brown)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Fired on Mars (path: /mnt/plex/tv/Fired on Mars (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Firefly (path: /mnt/plex/tv/Firefly (2002))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Game of Thrones (path: /mnt/plex/tv/Game Of Thrones)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Ghosts (US) (path: /mnt/plex/tv/Ghosts (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Gordon Ramsay's Food Stars (path: /mnt/plex/tv/Gordon Ramsay's Food Stars (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Halo (path: /mnt/plex/tv/Halo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Harley Quinn (path: /mnt/plex/tv/Harley Quinn)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Hawkeye (2021) (path: /mnt/plex/tv/Hawkeye)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Home Improvement (path: /mnt/plex/tv/Home Improvement 1991)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: House of the Dragon (path: /mnt/plex/tv/House of the Dragon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: iCarly (2021) (path: /mnt/plex/tv/iCarly (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Impractical Jokers (path: /mnt/plex/tv/Impractical Jokers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Ink Master (path: /mnt/plex/tv/Ink Master)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Invincible (path: /mnt/plex/tv/Invincible (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: It's Always Sunny in Philadelphia (path: /mnt/plex/tv/Its Always Sunny in Philadelphia)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Jury Duty (path: /mnt/plex/tv/Jury Duty)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Kim's Convenience (path: /mnt/plex/tv/Kim's Convenience)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Kitchen Nightmares (US) (path: /mnt/plex/tv/Kitchen Nightmares US)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Last Man Standing (2011) (path: /mnt/plex/tv/Last Man Standing)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Loki (path: /mnt/plex/tv/Loki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Lucky Hank (path: /mnt/plex/tv/Lucky Hank)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Married at First Sight (path: /mnt/plex/tv/Married at First Sight (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Monarch: Legacy of Monsters (path: /mnt/plex/tv/Monarch Legacy of Monsters)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Moon Knight (path: /mnt/plex/tv/Moon Knight)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Murder, She Wrote (path: /mnt/plex/tv/Murder She Wrote)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Mythic Quest (path: /mnt/plex/tv/Mythic Quest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Obi-Wan Kenobi (path: /mnt/plex/tv/Obi-Wan Kenobi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Our Flag Means Death (path: /mnt/plex/tv/Our Flag Means Death)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Outlander (path: /mnt/plex/tv/Outlander)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Over the Garden Wall (path: /mnt/plex/tv/Over the Garden Wall)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Pantheon (path: /mnt/plex/tv/Pantheon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Passion for Punchlines (path: /mnt/plex/tv/Passion for punchlines)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Peacemaker (path: /mnt/plex/tv/Peacemaker (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Percy Jackson and the Olympians (path: /mnt/plex/tv/Percy Jackson and the Olympians)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Quantum Leap (path: /mnt/plex/tv/Quantum Leap (1989))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Quantum Leap (2022) (path: /mnt/plex/tv/Quantum Leap 2022)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Raised by Wolves (2020) (path: /mnt/plex/tv/Raised by wolves)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Reacher (path: /mnt/plex/tv/Reacher (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Resident Alien (path: /mnt/plex/tv/Resident Alien (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Rick and Morty (path: /mnt/plex/tv/Rick and Morty)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Running Man (path: /mnt/plex/tv/Running Man)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race (path: /mnt/plex/tv/Rupaul's Drag Race)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race All Stars (path: /mnt/plex/tv/Rupaul's Drag Race All Stars)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Drag Race Down Under (path: /mnt/plex/tv/RuPaul's Drag Race Down Under)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race UK (path: /mnt/plex/tv/Rupaul's Drag Race UK)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race: Vegas Revue (path: /mnt/plex/tv/Rupaul's Drag Race Vegas Revue)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: RuPaul’s Drag Race UK vs the World (path: /mnt/plex/tv/Rupauls Drag Race UK vs The World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Schmigadoon! (path: /mnt/plex/tv/Schmigadoon!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Scorpion (path: /mnt/plex/tv/SCORPION)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: RuPaul's Secret Celebrity Drag Race (path: /mnt/plex/tv/Secret Celebrity RuPaul's Drag Race)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: See (path: /mnt/plex/tv/See)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Severance (path: /mnt/plex/tv/Severance)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: She-Hulk: Attorney at Law (path: /mnt/plex/tv/She-Hulk Attorney at Law)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Shrinking (path: /mnt/plex/tv/Shrinking (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Smiling Friends (path: /mnt/plex/tv/Smiling Friends)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Solar Opposites (path: /mnt/plex/tv/Solar Opposites)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Lioness (path: /mnt/plex/tv/Special Ops Lioness)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Star Trek: Strange New Worlds (path: /mnt/plex/tv/Star Strek Strange New Worlds)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Star Trek: Lower Decks (path: /mnt/plex/tv/Star Trek Lower Decks)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Stargirl (path: /mnt/plex/tv/Stargirl)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Station Eleven (path: /mnt/plex/tv/Station Eleven)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Superman & Lois (path: /mnt/plex/tv/Superman and Lois)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Supernatural (path: /mnt/plex/tv/Supernatural)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Taskmaster (path: /mnt/plex/tv/Taskmaster)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Taskmaster (AU) (path: /mnt/plex/tv/Taskmaster AU)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: ted (path: /mnt/plex/tv/Ted (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Ted Lasso (path: /mnt/plex/tv/Ted Lasso (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Big Door Prize (path: /mnt/plex/tv/The Big Door Prize)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Book of Boba Fett (path: /mnt/plex/tv/The Book of Boba Fett)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Boys (path: /mnt/plex/tv/The Boys)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Continental (2023) (path: /mnt/plex/tv/The Continental (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Falcon and The Winter Soldier (path: /mnt/plex/tv/The Falcon and The Winter Soldier (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Fall of the House of Usher (path: /mnt/plex/tv/The Fall of the House of Usher (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Gilded Age (path: /mnt/plex/tv/The Gilded Age)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Goes Wrong Show (path: /mnt/plex/tv/The Goes Wrong Show (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Last of Us (path: /mnt/plex/tv/The Last of Us)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Mandalorian (path: /mnt/plex/tv/The Mandalorian)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Now (path: /mnt/plex/tv/The Now)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Offer (path: /mnt/plex/tv/The Offer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Santa Clauses (path: /mnt/plex/tv/The Santa Clauses (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Split (path: /mnt/plex/tv/The Split)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Titans (2018) (path: /mnt/plex/tv/Titans (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tulsa King (path: /mnt/plex/tv/Tulsa King)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Twisted Metal (path: /mnt/plex/tv/Twisted Metal (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Villainous (path: /mnt/plex/tv/Villainous (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Walker (path: /mnt/plex/tv/Walker)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: WandaVision (path: /mnt/plex/tv/Wandavision)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Welcome to Chippendales (path: /mnt/plex/tv/Welcome to Chippendales (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Welcome to Wrexham (path: /mnt/plex/tv/Welcome to Wrexham)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Wolf Pack (path: /mnt/plex/tv/Wolf Pack)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Young Sheldon (path: /mnt/plex/tv/Young Sheldon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: 4 Cut Hero (path: /mnt/plex/anime/4 Cut Hero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: 86: Eighty Six (path: /mnt/plex/anime/86 - Eighty Six (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Shimoneta: A Boring World Where the Concept of Dirty Jokes Doesn't Exist (path: /mnt/plex/anime/A Boring World Where the Concept of Dirty Jokes Doesn't Exist)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: A Returner's Magic Should Be Special (path: /mnt/plex/anime/A Returner's Magic Should Be Special)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Aesthetica of a Rogue Hero (path: /mnt/plex/anime/Aesthetica of a Rogue Hero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Air Gear (path: /mnt/plex/anime/Air Gear (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Akame ga Kill! (path: /mnt/plex/anime/Akame ga Kill!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Akudama Drive (path: /mnt/plex/anime/Akudama Drive)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Am I Actually the Strongest? (path: /mnt/plex/anime/Am I Actually the Strongest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Amagi Brilliant Park (path: /mnt/plex/anime/Amagi Brilliant Park)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: And You Thought There Is Never a Girl Online? (path: /mnt/plex/anime/And You Thought There Is Never a Girl Online)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Arknights (path: /mnt/plex/anime/Arknights)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Armed Girl's Machiavellism (path: /mnt/plex/anime/Armed Girl's Machiavellism)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Assassins Pride (path: /mnt/plex/anime/Assassins Pride)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: B: The Beginning (path: /mnt/plex/anime/B The Beginning)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Beast Tamer (path: /mnt/plex/anime/Beast Tamer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Black Clover (path: /mnt/plex/anime/Black Clover)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Black Lagoon (path: /mnt/plex/anime/Black Lagoon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Black Summoner (path: /mnt/plex/anime/Black Summoner)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Blast of Tempest (path: /mnt/plex/anime/Blast of Tempest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Blood Lad (path: /mnt/plex/anime/Blood Lad (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Bloodivores (path: /mnt/plex/anime/Bloodivores)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Boogiepop Phantom (path: /mnt/plex/anime/Boogiepop Phantom)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Brave Bang Bravern! (path: /mnt/plex/anime/Brave Bang Bravern!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Broken Blade (path: /mnt/plex/anime/Broken Blade)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: BTOOOM! (path: /mnt/plex/anime/Btooom!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Buddy Daddies (path: /mnt/plex/anime/Buddy Daddies)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: By the Grace of the Gods (path: /mnt/plex/anime/By the Grace of the Gods)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Captain Earth (path: /mnt/plex/anime/Captain Earth)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Casshern Sins (path: /mnt/plex/anime/Casshern Sins (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Chained Soldier (path: /mnt/plex/anime/Chained Soldier)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Chainsaw Man (path: /mnt/plex/anime/Chainsaw Man (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Chobits (path: /mnt/plex/anime/Chobits)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Classroom of the Elite (path: /mnt/plex/anime/Classroom of the elite)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Combatants Will Be Dispatched! (path: /mnt/plex/anime/Combatants Will Be Dispatched)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Cop Craft (path: /mnt/plex/anime/Cop Craft)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Cowboy Bebop (path: /mnt/plex/anime/Cowboy Bebop)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: D.Gray-man (path: /mnt/plex/anime/D.Gray-man)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: DARLING in the FRANXX (path: /mnt/plex/anime/Darling in the FranXX)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Darwin's Game (path: /mnt/plex/anime/Darwin's Game)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dead Mount Death Play (path: /mnt/plex/anime/Dead Mount Death Play (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Deadman Wonderland (path: /mnt/plex/anime/Deadman Wonderland)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Battle Game in 5 Seconds (path: /mnt/plex/anime/Battle Game in 5 Seconds)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Deca-Dence (path: /mnt/plex/anime/Deca-Dence)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Deep Insanity: The Lost Child (path: /mnt/plex/anime/Deepy Insanity The Lost Child)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Demon King Daimao (path: /mnt/plex/anime/Demon King Daimao)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dimension W (path: /mnt/plex/anime/Dimension W)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: D.N.Angel (path: /mnt/plex/anime/DNAngel)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dog & Scissors (path: /mnt/plex/anime/Dog & Scissors)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Domestic Girlfriend (path: /mnt/plex/anime/Domestic Girlfriend)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Don't Toy With Me, Miss Nagatoro (path: /mnt/plex/anime/Don't Toy With Me Miss Nagatoro)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dr. STONE (path: /mnt/plex/anime/Dr.Stone)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dragonar Academy (path: /mnt/plex/anime/Dragonar Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Edens Zero (path: /mnt/plex/anime/Edens Zero (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Etotama (path: /mnt/plex/anime/Etotama)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Fairy gone (path: /mnt/plex/anime/Fairy Gone)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: FLCL (path: /mnt/plex/anime/FLCL)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Fractale (path: /mnt/plex/anime/Fractale)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Frieren: Beyond Journey's End (path: /mnt/plex/anime/Frieren - Beyond Journey's End)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: GATE (path: /mnt/plex/anime/GATE)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Gibiate (path: /mnt/plex/anime/Gibiate)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Girls Bravo (path: /mnt/plex/anime/Girls Bravo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Gleipnir (path: /mnt/plex/anime/Gleipnir)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Gosick (path: /mnt/plex/anime/Gosick)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Great Pretender (path: /mnt/plex/anime/Great Pretender)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Green Green (path: /mnt/plex/anime/Green Green)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Grenadier (path: /mnt/plex/anime/Grenadier)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Guilty Crown (path: /mnt/plex/anime/Guilty Crown)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Hamatora (path: /mnt/plex/anime/Hamatora)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Heavenly Delusion (path: /mnt/plex/anime/Heavenly Delusion)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Hero Return (path: /mnt/plex/anime/Hero Return)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Heroic Age (path: /mnt/plex/anime/Heroic Age)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: High School D×D (path: /mnt/plex/anime/High School D×D (2012))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Highschool of the Dead (path: /mnt/plex/anime/High School of the Dead)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Horimiya (path: /mnt/plex/anime/Horimiya)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Hortensia Saga (path: /mnt/plex/anime/Hortensia Saga)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: How Not to Summon a Demon Lord (path: /mnt/plex/anime/How Not to Summon a Demon Lord)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Hunter x Hunter (2011) (path: /mnt/plex/anime/Hunter x Hunter (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: I'm Standing on a Million Lives (path: /mnt/plex/anime/I'm Standing on a Million Lives)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: ID: INVADED (path: /mnt/plex/anime/ID Invaded)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Ikebukuro West Gate Park (path: /mnt/plex/anime/Ikebukuro West Gate Park)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Infinite Dendrogram (path: /mnt/plex/anime/Infinite Dendrogram)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Is It Wrong to Try to Pick Up Girls in a Dungeon? (path: /mnt/plex/anime/Is It Wrong to Try to Pick Up Girls in a Dungeon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Isekai Cheat Magician (path: /mnt/plex/anime/Isekai Cheat Magician)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: JUJUTSU KAISEN (path: /mnt/plex/anime/Jujutsu Kaisen)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Maria the Virgin Witch (path: /mnt/plex/anime/Junketsu no Maria (Maria the Virgin Witch))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Redo of Healer (path: /mnt/plex/anime/Kaifuku Jutsushi no Yarinaoshi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Kemono Jihen (path: /mnt/plex/anime/Kemono Jihen)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: King's Raid: Successors of the Will (path: /mnt/plex/anime/King's Raid)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Vermeil in Gold (path: /mnt/plex/anime/Vermeil in Gold (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Knight's & Magic (path: /mnt/plex/anime/Knight's & Magic)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: KonoSuba – God’s blessing on this wonderful world!! (path: /mnt/plex/anime/KonoSuba)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Onmyou Taisenki (path: /mnt/plex/anime/Kyoukai Senki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Lapis Re:LiGHTs (path: /mnt/plex/anime/Lapis ReLights)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Liar, Liar (path: /mnt/plex/anime/Liar Liar (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Listeners (path: /mnt/plex/anime/Listeners)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Log Horizon (path: /mnt/plex/anime/Log Horizon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Lord Marksman and Vanadis (path: /mnt/plex/anime/Lord Marksman and Vanadis)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Love Tyrant (path: /mnt/plex/anime/Love Tyrant)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Maburaho (path: /mnt/plex/anime/Maburaho)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Magi: Adventure of Sinbad (path: /mnt/plex/anime/Magi Adventure of Sinbad)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Magical Sempai (path: /mnt/plex/anime/Magical Senpai)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Magical Warfare (path: /mnt/plex/anime/Magical Warfare)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: MASHLE: MAGIC AND MUSCLES (path: /mnt/plex/anime/Mashle)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Medaka Box (path: /mnt/plex/anime/Medaka Box)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Mob Psycho 100 (path: /mnt/plex/anime/Mob Psycho 100)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tsukimichi -Moonlit Fantasy- (path: /mnt/plex/anime/Tsukimichi - Moonlit Fantasy (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Mr. Villain's Day Off (path: /mnt/plex/anime/Mr. Villain's Day Off)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Seton Academy: Join the Pack! (path: /mnt/plex/anime/Murenase! Seton Gakuen)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Mushoku Tensei: Jobless Reincarnation (path: /mnt/plex/anime/Mushoku Tensei - Jobless Reincarnation (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Muv-Luv Alternative (path: /mnt/plex/anime/Muv-Luv Alternative)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: My Girlfriend Is Shobitch (path: /mnt/plex/anime/My Girlfriend is Shobitch)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: My Hero Academia (path: /mnt/plex/anime/My Hero Academia)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: My Home Hero (path: /mnt/plex/anime/My Home Hero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: My Instant Death Ability Is Overpowered (path: /mnt/plex/anime/My Instant Death Ability Is So Overpowered, No One in This Other World Stands a Chance Against Me!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: My Isekai Life (path: /mnt/plex/anime/My Isekai Life (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: My Senpai Is Annoying (path: /mnt/plex/anime/My Senpai is Annoying)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: No Game No Life (path: /mnt/plex/anime/No Game No Life)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: No Guns Life (path: /mnt/plex/anime/No Guns Life (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Noblesse (path: /mnt/plex/anime/Noblesse)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Noragami (path: /mnt/plex/anime/Noragami)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: One-Punch Man (path: /mnt/plex/anime/One-Punch Man (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Orient (path: /mnt/plex/anime/Orient)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Oshi no Ko (path: /mnt/plex/anime/Oshi No Ko)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Trapped in a Dating Sim: The World of Otome Games Is Tough for Mobs (path: /mnt/plex/anime/Otomege Sekai wa Mob ni Kibishii Sekai desu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Outbreak Company (path: /mnt/plex/anime/Outbreak Company)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Overflow (path: /mnt/plex/anime/Overflow)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Peach Boy Riverside (path: /mnt/plex/anime/Peach Boy Riverside)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Platinum End (path: /mnt/plex/anime/Platinum End)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Plunderer (path: /mnt/plex/anime/Plunderer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Prison School (path: /mnt/plex/anime/Prison School)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Punch Line (path: /mnt/plex/anime/Punch Line)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Radiant (path: /mnt/plex/anime/Radiant (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Ragna Crimson (path: /mnt/plex/anime/Ragna Crimson)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Ranking of Kings (path: /mnt/plex/anime/Ranking of Kings)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Record of Ragnarok (path: /mnt/plex/anime/Record of Ragnarok)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Recovery of an MMO Junkie (path: /mnt/plex/anime/Recovery of an MMO Junkie)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Reign of the Seven Spellblades (path: /mnt/plex/anime/Reign of the Seven Spellblades)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: ReLIFE (path: /mnt/plex/anime/ReLife)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Rent-a-Girlfriend (path: /mnt/plex/anime/Rent a girlfriend)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Re: ZERO, Starting Life in Another World (path: /mnt/plex/anime/ReZERO -Starting Life in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Robotics;Notes (path: /mnt/plex/anime/Robotics;Notes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Rokka: Braves of the Six Flowers (path: /mnt/plex/anime/Rokka Braves of the Six Flowers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Rosario + Vampire (path: /mnt/plex/anime/Rosario + Vampire (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Sabikui Bisco (path: /mnt/plex/anime/Sabikui Bisco)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: SAKUGAN (path: /mnt/plex/anime/Sakugan)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Seirei Gensouki: Spirit Chronicles (path: /mnt/plex/anime/Seirei Gensouki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Sekirei (path: /mnt/plex/anime/Sekirei (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Seraph of the End (path: /mnt/plex/anime/Seraph of the End)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Seven Mortal Sins (path: /mnt/plex/anime/Seven Mortal Sins)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Shachibato! President, It's Time for Battle! (path: /mnt/plex/anime/Shachou Battle No Jikan Desu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Shikizakura (path: /mnt/plex/anime/Shikizakura)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Cautious Hero: The Hero Is Overpowered but Overly Cautious (path: /mnt/plex/anime/Shinchou Yuusha)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Shinobi no Ittoki (path: /mnt/plex/anime/Shinobi no Ittoki (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Skeleton Knight in Another World (path: /mnt/plex/anime/Skeleton Knight in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Solo Leveling (path: /mnt/plex/anime/Solo Leveling)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Spice and Wolf (path: /mnt/plex/anime/Spice and Wolf (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: SPY x FAMILY (path: /mnt/plex/anime/SPY x FAMILY (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Steins;Gate (path: /mnt/plex/anime/Steins;Gate)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Summer Time Rendering (path: /mnt/plex/anime/Summer Time Render (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Sunday Without God (path: /mnt/plex/anime/Sunday Without God)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Sword Art Online (path: /mnt/plex/anime/Sword Art Online (2012))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Taboo Tattoo (path: /mnt/plex/anime/Taboo Tattoo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tales of Wedding Rings (path: /mnt/plex/anime/Tales of Wedding Rings)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tears to Tiara (path: /mnt/plex/anime/Tears to Tiara)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tenchi Muyo! War on Geminar (path: /mnt/plex/anime/Tenchi Muyo! War on Geminar)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Daily Life of the Immortal King (path: /mnt/plex/anime/The Daily Life of the Immortal King)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Devil Is a Part-Timer! (path: /mnt/plex/anime/The Devil Is a Part-Timer! (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Faraway Paladin (path: /mnt/plex/anime/The Faraway Paladin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Foolish Angel Dances With the Devil (path: /mnt/plex/anime/The Foolish Angel Dances With the Devil)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The God of High School (path: /mnt/plex/anime/The God of High School)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Great Cleric (path: /mnt/plex/anime/The Great Cleric)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Greatest Demon Lord Is Reborn as a Typical Nobody (path: /mnt/plex/anime/The Greatest Demon Lord Is Reborn as a Typical Nobody)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Iceblade Sorcerer Shall Rule the World (path: /mnt/plex/anime/The Iceblade Sorcerer Shall Rule the World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The King's Avatar (path: /mnt/plex/anime/The Kings Avatar)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Legend of the Legendary Heroes (path: /mnt/plex/anime/The Legend of the Legendary Heroes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Misfit of Demon King Academy (path: /mnt/plex/anime/The Misfit of Demon King Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Quintessential Quintuplets (path: /mnt/plex/anime/The Quintessential Quintuplets)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Saint's Magic Power Is Omnipotent (path: /mnt/plex/anime/The Saint's Magic Power is Omnipotent)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Testament of Sister New Devil (path: /mnt/plex/anime/The Testament of Sister New Devil)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Wrong Way to Use Healing Magic (path: /mnt/plex/anime/The Wrong Way To Use Healing Magic (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: To LOVE-Ru (path: /mnt/plex/anime/To LOVE-Ru (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tokyo Ghoul (path: /mnt/plex/anime/Tokyo Ghoul)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tokyo Majin (path: /mnt/plex/anime/Tokyo Majin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tokyo Ravens (path: /mnt/plex/anime/Tokyo Ravens)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tokyo Revengers (path: /mnt/plex/anime/Tokyo Revengers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Toradora! (path: /mnt/plex/anime/Toradora!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tower of God (path: /mnt/plex/anime/Tower of God)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Triage X (path: /mnt/plex/anime/Triage X)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tribe Nine (path: /mnt/plex/anime/Tribe Nine)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Trigun (path: /mnt/plex/anime/Trigun)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: TRIGUN STAMPEDE (path: /mnt/plex/anime/Trigun Stampede)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tsugumomo (path: /mnt/plex/anime/Tsugumomo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Undead Murder Farce (path: /mnt/plex/anime/Undead Girl Murder Farce)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Undead Unluck (path: /mnt/plex/anime/Undead Unluck)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Urusei Yatsura (2022) (path: /mnt/plex/anime/Urusei Yatsura (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Val x Love (path: /mnt/plex/anime/Val x Love (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: VanDread (path: /mnt/plex/anime/VanDread (2000))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Villainess Level 99: I May Be the Hidden Boss but I'm Not the Demon Lord (path: /mnt/plex/anime/Villainess Level 99 - I May Be the Hidden Boss but I'm Not the Demon Lord (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Vinland Saga (path: /mnt/plex/anime/Vinland Saga (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Welcome to the N.H.K. (path: /mnt/plex/anime/Welcome to the N.H.K. (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Why the Hell Are You Here, Teacher!? (path: /mnt/plex/anime/Why the Hell are You Here, Teacher!! (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Wise Man's Grandchild (path: /mnt/plex/anime/Wise Man's Grandchild (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: World Break: Aria of Curse for a Holy Swordsman (path: /mnt/plex/anime/World Break - Aria of Curse for a Holy Swordsman (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: World's End Harem (path: /mnt/plex/anime/World's End Harem (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Xam'd: Lost Memories (path: /mnt/plex/anime/Xam'd - Lost Memories (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Your Lie in April (path: /mnt/plex/anime/Your Lie in April (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Familiar of Zero (path: /mnt/plex/anime/The Familiar of Zero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Zom 100: Bucket List of the Dead (path: /mnt/plex/anime/Zom 100 - Bucket List of the Dead (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: My One-Hit Kill Sister (path: /mnt/plex/anime/My One-Hit Kill Sister)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Ramsay's Kitchen Nightmares (path: /mnt/plex/tv/Kitchen Nightmares UK)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Mobile Suit Gundam: The Witch from Mercury (path: /mnt/plex/anime/Mobile Suit Gundam The Witch from Mercury)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: I'm the Villainess, So I'm Taming the Final Boss (path: /mnt/plex/anime/I'm the Villainess, So I'm Taming the Final Boss)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Arifureta: From Commonplace to World's Strongest (path: /mnt/plex/anime/Arifureta - From Commonplace to World's Strongest (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Monogatari (path: /mnt/plex/anime/Bakemonogatari)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Handyman Saitou in Another World (path: /mnt/plex/anime/Handyman Saitou in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Beyond the Boundary (path: /mnt/plex/anime/Beyond the Boundary (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Remake Our Life! (path: /mnt/plex/anime/Bokutachi no Remake)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Build-Divide (path: /mnt/plex/anime/Build Divide Code Black)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Chiikawa (path: /mnt/plex/anime/Chiikawa)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: So, I Can't Play H! (path: /mnt/plex/anime/So, I Can't Play H!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Danganronpa: The Animation (path: /mnt/plex/anime/Danganronpa)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Fire Force (path: /mnt/plex/anime/Enen no Shouboutai)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout (path: /mnt/plex/anime/Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: To Your Eternity (path: /mnt/plex/anime/Fumetsu no Anata e)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: How a Realist Hero Rebuilt the Kingdom (path: /mnt/plex/anime/Genjitsu Shugi Yuusha no Oukoku Saikenki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Fantasia Sango - Realm of Legends (path: /mnt/plex/anime/Fantasia Sango - Realm of Legends)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Brynhildr in the Darkness (path: /mnt/plex/anime/Gokukoku no Brynhildr)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Golden Boy (path: /mnt/plex/anime/Golden Boy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Fruit of Grisaia (path: /mnt/plex/anime/Grisaia no Kajitsu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Our Last Crusade or the Rise of a New World (path: /mnt/plex/anime/Our Last Crusade or the Rise of a New World (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: YU-NO: A Girl Who Chants Love at the Bound of This World (path: /mnt/plex/anime/YU-NO - A Girl Who Chants Love at the Bound of This World (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: So I'm a Spider, So What? (path: /mnt/plex/anime/So I'm a Spider, So What?)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Full Dive: This Ultimate Next-Gen Full Dive RPG Is Even Shittier Than Real Life! (path: /mnt/plex/anime/Kyuukyoku Shinka Shita Full Dive RPG ga Genjitsu yori mo Kusogee Dattara)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: In the Land of Leadale (path: /mnt/plex/anime/Leadale no Daichi nite)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Level 1 Demon Lord and One Room Hero (path: /mnt/plex/anime/Lv1 Maou to One Room Yuusha)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Demon Girl Next Door (path: /mnt/plex/anime/Machikado Mazoku)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Honor Student at Magic High School (2021) (path: /mnt/plex/anime/Mahouka Koukou no Rettousei)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Sorcerous Stabber Orphen (path: /mnt/plex/anime/Majutsushi Orphen Hagure Tabi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Makai Ouji: Devils and Realist (path: /mnt/plex/anime/Devils and Realist)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Masamune-kun's Revenge (path: /mnt/plex/anime/Masamune-kun no Revenge)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Hybrid x Heart Magias Academy Ataraxia (path: /mnt/plex/anime/Masou Gakuen HxH)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Mother of the Goddess' Dormitory (path: /mnt/plex/anime/Megami-ryou no Ryoubo-kun)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Dungeon of Black Company (path: /mnt/plex/anime/Meikyuu Black Company)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: I've Somehow Gotten Stronger When I Improved My Farm-Related Skills (path: /mnt/plex/anime/Noumin Kanren no Skill bakka Agetetara Nazeka Tsuyoku Natta)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Hidden Dungeon Only I Can Enter (path: /mnt/plex/anime/Ore dake Haireru Kakushi Dungeon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Sukisho! (path: /mnt/plex/anime/Ore wo Suki nano wa Omae dake ka yo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Ya Boy Kongming! (path: /mnt/plex/anime/Ya Boy Kongming! (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Princess Connect! Re:Dive (path: /mnt/plex/anime/Princess Connect)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dances with the Dragons (path: /mnt/plex/anime/Saredo Tsumibito wa Ryuu to Odoru)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Strongest Sage With the Weakest Crest (path: /mnt/plex/anime/Shikkakumon no Saikyou Kenja)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Rage of Bahamut (path: /mnt/plex/anime/Shokei Shoujo no Virgin Road)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Somali and the Forest Spirit (path: /mnt/plex/anime/Somali to Mori no Kamisama)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Koikimo (path: /mnt/plex/anime/Sono Bisque Doll wa Koi o Suru)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Otoboku: Maidens are Falling for Me! (path: /mnt/plex/anime/Tantei wa Mou, Shindeiru)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: A Certain Scientific Railgun (path: /mnt/plex/anime/Toaru Kagaku no Accelerator)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Campfire Cooking in Another World with My Absurd Skill (path: /mnt/plex/anime/Tondemo Skill de Isekai Hourou Meshi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: If It's for My Daughter, I'd Even Defeat a Demon Lord (path: /mnt/plex/anime/UchiMusume)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Hokkaido Gals Are Super Adorable! (path: /mnt/plex/anime/Hokkaido Gals Are Super Adorable!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Food Wars! (path: /mnt/plex/anime/Food Wars)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Grimgar, Ashes and Illusions (path: /mnt/plex/anime/Hai to Gensou no Grimgar)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: My Next Life as a Villainess: All Routes Lead to Doom! (path: /mnt/plex/anime/Hamefura)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Kingdoms of Ruin (path: /mnt/plex/anime/The Kingdoms of Ruin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Idaten Deities Know Only Peace (path: /mnt/plex/anime/Heion Sedai no Idaten-tachi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Lucifer and the Biscuit Hammer (path: /mnt/plex/anime/Hoshi no Samidare)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: BattleBots (path: /mnt/plex/tv/BattleBots)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dimension 20 (path: /mnt/plex/tv/Dimension 20)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Mr. & Mrs. Smith (2024) (path: /mnt/plex/tv/Mr. & Mrs. Smith (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Welcome to Demon School! Iruma-kun (path: /mnt/plex/anime/Welcome to Demon School! Iruma-kun (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Death and Other Details (path: /mnt/plex/tv/Death and Other Details)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Great British Bake Off (path: /mnt/plex/tv/The Great British Bake Off)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: BattleBots (2015) (path: /mnt/plex/tv/BattleBots (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Go! Go! Loser Ranger! (path: /mnt/plex/anime/Go! Go! Loser Ranger! (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Unwanted Undead Adventurer (path: /mnt/plex/anime/The Unwanted Undead Adventurer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Attack on Titan (path: /mnt/plex/anime/Attack on Titan)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Good Night World (path: /mnt/plex/anime/Good Night World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Eminence in Shadow (path: /mnt/plex/anime/The Eminence in Shadow)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: High School Prodigies Have It Easy Even in Another World! (path: /mnt/plex/anime/Choyoyu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Death March to the Parallel World Rhapsody (path: /mnt/plex/anime/Death March)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dolls' Frontline (2022) (path: /mnt/plex/anime/Dolls' Frontline)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Classroom for Heroes (path: /mnt/plex/anime/Classroom for Heroes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The 8th son? Are you kidding me? (path: /mnt/plex/anime/The 8th son! Are you kidding me! (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: I Got a Cheat Skill in Another World and Became Unrivaled in the Real World, Too (path: /mnt/plex/anime/Isekai de Cheat Skill)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Harem in the Labyrinth of Another World (path: /mnt/plex/anime/Harem in the Labyrinth of Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat (path: /mnt/plex/anime/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Overlord (path: /mnt/plex/anime/Overlord)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Ninja Kamui (path: /mnt/plex/anime/Ninja Kamui)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Bachelor (path: /mnt/plex/tv/The Bachelor)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Fallout (path: /mnt/plex/tv/Fallout)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Chillin' in Another World With Level 2 Super Cheat Powers (path: /mnt/plex/anime/Chillin' in Another World with Level 2 Super Cheat Powers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells (path: /mnt/plex/anime/Failure Frame - I Became the Strongest and Annihilated Everything with Low-Level Spells (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Wistoria: Wand and Sword (path: /mnt/plex/anime/Wistoria - Wand and Sword (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Quiet on Set: The Dark Side of Kids TV (path: /mnt/plex/tv/Quiet On Set - The Dark Side Of Kids TV)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Bachelorette (path: /mnt/plex/tv/The Bachelorette)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Strongest Magician in the Demon Lord's Army Was a Human (path: /mnt/plex/anime/The Strongest Magician in the Demon Lord's Army was a Human)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Grendizer U (path: /mnt/plex/anime/Grendizer U)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability (path: /mnt/plex/anime/I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Mission: Yozakura Family (path: /mnt/plex/anime/Mission - Yozakura Family)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Shōgun (path: /mnt/plex/tv/Shōgun)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Amazing Stories (path: /mnt/plex/tv/Amazing Stories (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Modern Family (path: /mnt/plex/tv/Modern Family)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Knuckles (path: /mnt/plex/tv/Knuckles)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Viral Hit (path: /mnt/plex/anime/Viral Hit (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Unnamed Memory (path: /mnt/plex/anime/Unnamed Memory)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: An Archdemon's Dilemma: How To Love Your Elf Bride (path: /mnt/plex/anime/An Archdemon's Dilemma - How To Love Your Elf Bride)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Kaiju No. 8 (path: /mnt/plex/anime/Kaiju No. 8)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Fable (path: /mnt/plex/anime/The Fable)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Spice and Wolf: MERCHANT MEETS THE WISE WOLF (path: /mnt/plex/anime/Spice and Wolf - MERCHANT MEETS THE WISE WOLF)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Gods' Games We Play (path: /mnt/plex/anime/Gods' Games We Play)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: THE NEW GATE (path: /mnt/plex/anime/THE NEW GATE (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Fantasy × Hunter (path: /mnt/plex/anime/Fantasy × Hunter (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Euphoria (US) (path: /mnt/plex/tv/Euphoria)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Galavant (path: /mnt/plex/tv/Galavant)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Married... with Children (path: /mnt/plex/tv/Married... with Children (1987))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Power (path: /mnt/plex/tv/Power (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Silicon Valley (path: /mnt/plex/tv/Silicon Valley (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Son of Zorn (path: /mnt/plex/tv/Son of Zorn (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The 10th Kingdom (path: /mnt/plex/tv/The 10th Kingdom (2000))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Bear (path: /mnt/plex/tv/The Bear (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Drew Carey Show (path: /mnt/plex/tv/The Drew Carey Show (1995))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Gentlemen (path: /mnt/plex/tv/The Gentlemen (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The IT Crowd (path: /mnt/plex/tv/The IT Crowd (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Office (US) (path: /mnt/plex/tv/The Office (US))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Vice Principals (path: /mnt/plex/tv/Vice Principals (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Amazing Digital Circus (path: /mnt/plex/tv/The Amazing Digital Circus (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: American Horror Story (path: /mnt/plex/tv/American Horror Story)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Sword Art Online Alternative: Gun Gale Online (path: /mnt/plex/anime/Sword Art Online Alternative - Gun Gale Online)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Catch-22 (path: /mnt/plex/tv/Catch-22)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Game Changer (path: /mnt/plex/tv/Game Changer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Hazbin Hotel (path: /mnt/plex/tv/Hazbin Hotel (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Lessons in Chemistry (path: /mnt/plex/tv/Lessons in Chemistry (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Make Some Noise (path: /mnt/plex/tv/Make Some Noise)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Pretender (path: /mnt/plex/tv/The Pretender)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: What If…? (path: /mnt/plex/tv/What If)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Billy the Kid (path: /mnt/plex/tv/Billy the Kid)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Shetland (path: /mnt/plex/tv/Shetland)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World (path: /mnt/plex/anime/As a Reincarnated Aristocrat, I'll Use My Appraisal Skill To Rise in the World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Below Deck (path: /mnt/plex/tv/Below Deck)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Umbrella Academy (path: /mnt/plex/tv/The Umbrella Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: New Girl (path: /mnt/plex/tv/New Girl)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Parks and Recreation (path: /mnt/plex/tv/Parks and Recreation)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Below Deck Mediterranean (path: /mnt/plex/tv/Below Deck Mediterranean)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dwight in Shining Armor (path: /mnt/plex/tv/Dwight in Shining Armor)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Schitt's Creek (path: /mnt/plex/tv/Schitt's Creek)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Unstable (path: /mnt/plex/tv/Unstable)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Closer (path: /mnt/plex/tv/The Closer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Why Does Nobody Remember Me in This World? (path: /mnt/plex/anime/Why Does Nobody Remember Me in This World! (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Code Geass: Rozé of the Recapture (path: /mnt/plex/anime/Code Geass - Rozé of the Recapture)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: 3 Body Problem (path: /mnt/plex/tv/3 Body Problem)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: South Park (path: /mnt/plex/tv/South Park)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible (path: /mnt/plex/anime/The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: I Parry Everything (path: /mnt/plex/anime/I Parry Everything)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: SAKAMOTO DAYS (path: /mnt/plex/anime/SAKAMOTO DAYS (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Healer Who Was Banished From His Party, Is, in Fact, the Strongest (path: /mnt/plex/anime/The Healer who Was Banished From His Party, Is, In Fact, The Strongest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Bye Bye, Earth (path: /mnt/plex/anime/Bye Bye, Earth (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Good Bye, Dragon Life (path: /mnt/plex/anime/Good Bye, Dragon Life (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Alya Sometimes Hides Her Feelings in Russian (path: /mnt/plex/anime/Alya Sometimes Hides Her Feelings in Russian)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: DOTA: Dragon's Blood (path: /mnt/plex/tv/DOTA - Dragon's Blood (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Pseudo Harem (path: /mnt/plex/anime/Pseudo Harem)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Strike the Blood (path: /mnt/plex/anime/Strike the Blood)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Demon Sword Master of Excalibur Academy (path: /mnt/plex/anime/The Demon Sword Master of Excalibur Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: DEAD DEAD DEMONS DEDEDEDE DESTRUCTION (path: /mnt/plex/anime/DEAD DEAD DEMONS DEDEDEDE DESTRUCTION)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: 2.5 Dimensional Seduction (path: /mnt/plex/anime/2.5 Dimensional Seduction (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Shoresy (path: /mnt/plex/tv/Shoresy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Letterkenny (path: /mnt/plex/tv/Letterkenny)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: DAN DA DAN (path: /mnt/plex/anime/DAN DA DAN (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: 'Tis Time for \"Torture,\" Princess (path: /mnt/plex/anime/'Tis Time for Torture, Princess)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Quality Assurance in Another World (path: /mnt/plex/anime/Quality Assurance in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: SHOSHIMIN: How to Become Ordinary (path: /mnt/plex/anime/SHOSHIMIN - How to Become Ordinary)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Consultant (2023) (path: /mnt/plex/tv/The Consultant (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: No Longer Allowed in Another World (path: /mnt/plex/anime/No Longer Allowed in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: WondLa (path: /mnt/plex/tv/WondLa)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Suicide Squad Isekai (path: /mnt/plex/anime/Suicide Squad Isekai (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Harley and the Davidsons (path: /mnt/plex/tv/Harley and the Davidsons)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Gravity Falls (path: /mnt/plex/tv/Gravity Falls)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Bad Monkey (path: /mnt/plex/tv/Bad Monkey)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Terminator Zero (path: /mnt/plex/tv/Terminator Zero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Cobra Kai (path: /mnt/plex/tv/Cobra Kai)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Taboo (2017) (path: /mnt/plex/tv/Taboo (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: English Teacher (path: /mnt/plex/tv/English Teacher)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Kevin Can F**k Himself (path: /mnt/plex/tv/Kevin Can F-k Himself)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Shomin Sample (path: /mnt/plex/anime/Shomin Sample)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Extrapolations (path: /mnt/plex/tv/Extrapolations)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: KAOS (path: /mnt/plex/tv/Kaos)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Dragon Dentist (path: /mnt/plex/tv/The Dragon Dentist)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Bucchigiri?! (path: /mnt/plex/anime/Bucchigiri!!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Home Economics (path: /mnt/plex/tv/Home Economics)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Penguin (path: /mnt/plex/tv/The Penguin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Agatha All Along (path: /mnt/plex/tv/Agatha All Along)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: High Potential (path: /mnt/plex/tv/High Potential)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Nobody Wants This (path: /mnt/plex/tv/Nobody Wants This)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: One More Time (2024) (path: /mnt/plex/tv/One More Time (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Swimming with Sharks (path: /mnt/plex/tv/Swimming with Sharks)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Loner Life in Another World (path: /mnt/plex/anime/Loner Life in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: You are Ms. Servant (path: /mnt/plex/anime/You are Ms. Servant (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Let This Grieving Soul Retire! (path: /mnt/plex/anime/Let This Grieving Soul Retire!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Adam's Sweet Agony (path: /mnt/plex/anime/Adam's Sweet Agony)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Legend of Vox Machina (path: /mnt/plex/tv/The Legend of Vox Machina)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Most Notorious \"Talker\" Runs the World's Greatest Clan (path: /mnt/plex/anime/The Most Notorious Talker Runs the World's Greatest Clan)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Killer Cakes (path: /mnt/plex/tv/Killer Cakes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: I Left my A-Rank Party to Help My Former Students Reach the Dungeon Depths! (path: /mnt/plex/anime/I Left my A-Rank Party to Help My Former Students Reach the Dungeon Depths!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Journal of the Mysterious Creatures (path: /mnt/plex/tv/The Journal of the Mysterious Creatures (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Below Deck Sailing Yacht (path: /mnt/plex/tv/Below Deck Sailing Yacht)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Wandering Witch: The Journey of Elaina (path: /mnt/plex/anime/Wandering Witch - The Journey of Elaina (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Reincarnation of the Strongest Exorcist in Another World (path: /mnt/plex/anime/The Reincarnation of the Strongest Exorcist in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Franchise (2024) (path: /mnt/plex/tv/The Franchise (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Lord of the Rings: The Rings of Power (path: /mnt/plex/tv/The Lord of the Rings - The Rings of Power)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Spartacus (path: /mnt/plex/tv/Spartacus)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Citadel: Diana (path: /mnt/plex/tv/Citadel - Diana)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tomb Raider: The Legend of Lara Croft (path: /mnt/plex/tv/Tomb Raider - The Legend of Lara Croft)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Sweetpea (path: /mnt/plex/tv/Sweetpea)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Taskmaster (NZ) (path: /mnt/plex/tv/Taskmaster (NZ))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Taskmaster: Champion of Champions (path: /mnt/plex/tv/Taskmaster - Champion of Champions)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Utopia (AU) (path: /mnt/plex/tv/Utopia (AU))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: PLUTO (path: /mnt/plex/anime/PLUTO (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Scenes From A Marriage (US) (path: /mnt/plex/tv/Scenes from a Marriage (US))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Mecha-Ude: Mechanical Arms (path: /mnt/plex/anime/Mecha-Ude - Mechanical Arms)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Nozo X Kimi (path: /mnt/plex/anime/Nozo X Kimi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Demon Lord 2099 (path: /mnt/plex/anime/Demon Lord 2099 (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Revenger (path: /mnt/plex/anime/Revenger)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Secret Level (path: /mnt/plex/tv/Secret Level)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: A Terrified Teacher at Ghoul School! (path: /mnt/plex/anime/A Terrified Teacher at Ghoul School!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Ascendance of a Bookworm (path: /mnt/plex/anime/Ascendance of a Bookworm)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Edge of Sleep (path: /mnt/plex/tv/The Edge of Sleep)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Poppa’s House (path: /mnt/plex/tv/Poppa’s House)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Queen's Gambit (path: /mnt/plex/tv/The Queen's Gambit)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Interior Chinatown (path: /mnt/plex/tv/Interior Chinatown)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Mobile Suit Gundam: Iron-Blooded Orphans (path: /mnt/plex/anime/Mobile Suit Gundam - Iron-Blooded Orphans)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Selfie (path: /mnt/plex/tv/Selfie)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Newsroom (2012) (path: /mnt/plex/tv/The Newsroom)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Morning Show (path: /mnt/plex/tv/The Morning Show)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Take (path: /mnt/plex/tv/The Take)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Saving Hope (path: /mnt/plex/tv/Saving Hope)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dungeons & Dragons (path: /mnt/plex/tv/Dungeons & Dragons)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dune: Prophecy (path: /mnt/plex/tv/Dune - Prophecy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Star Wars: Skeleton Crew (path: /mnt/plex/tv/Star Wars - Skeleton Crew (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Time Bandits (path: /mnt/plex/tv/Time Bandits (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: St. Denis Medical (path: /mnt/plex/tv/St. Denis Medical (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Doctor Who (2005) (path: /mnt/plex/tv/Doctor Who (2005))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Eternaut (path: /mnt/plex/tv/The Eternaut)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Arcane (path: /mnt/plex/tv/Arcane (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Giant Beasts of Ars (path: /mnt/plex/anime/Giant Beasts of Ars (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Your Honor (path: /mnt/plex/tv/Your Honor (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Junior Taskmaster (path: /mnt/plex/tv/Junior Taskmaster (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Taskmaster (QC) (path: /mnt/plex/tv/Taskmaster (CA) (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Game Changers (2024) (path: /mnt/plex/tv/Game Changers (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Yellowstone (2018) (path: /mnt/plex/tv/Yellowstone (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Below Deck Down Under (path: /mnt/plex/tv/Below Deck Down Under (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Ludwig (2024) (path: /mnt/plex/tv/Ludwig (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Brilliant Healer's New Life in the Shadows (path: /mnt/plex/anime/The Brilliant Healer's New Life in the Shadows)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: In the Dark (2019) (path: /mnt/plex/tv/In the Dark (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Marvel's The Punisher (path: /mnt/plex/tv/Marvel's The Punisher (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tokyo Override (path: /mnt/plex/tv/Tokyo Override (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Cyberpunk: Edgerunners (path: /mnt/plex/tv/Cyberpunk - Edgerunners (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Man Down (path: /mnt/plex/tv/Man Down (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Hitmen (path: /mnt/plex/tv/Hitmen (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Silo (path: /mnt/plex/tv/Silo (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Landman (path: /mnt/plex/tv/Landman (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Mayor of Kingstown (path: /mnt/plex/tv/Mayor of Kingstown (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Lawmen: Bass Reeves (path: /mnt/plex/tv/Lawmen - Bass Reeves (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Royal Pains (path: /mnt/plex/tv/Royal Pains (2009))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Matlock (2024) (path: /mnt/plex/tv/Matlock (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Continuum (path: /mnt/plex/tv/Continuum (2012))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Trunk (path: /mnt/plex/tv/The Trunk (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Harry Potter: Wizards of Baking (path: /mnt/plex/tv/Harry Potter - Wizards of Baking (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Jentry Chau vs. the Underworld (path: /mnt/plex/tv/Jentry Chau vs. the Underworld (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Hero Inside (path: /mnt/plex/tv/Hero Inside (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Shifting Gears (path: /mnt/plex/tv/Shifting Gears (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Old Man (path: /mnt/plex/tv/The Old Man (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Squid Game (path: /mnt/plex/tv/Squid Game (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Creature Commandos (path: /mnt/plex/tv/Creature Commandos (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Daily Life of a Middle-Aged Online Shopper in Another World (path: /mnt/plex/anime/The Daily Life of a Middle-Aged Online Shopper in Another World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: I May Be a Guild Receptionist, But I'll Solo Any Boss to Clock Out on Time (path: /mnt/plex/anime/I May Be a Guild Receptionist, But I'll Solo Any Boss to Clock Out on Time (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Beheneko: The Elf-Girl's Cat Is Secretly an S-Ranked Monster! (path: /mnt/plex/anime/Beheneko - The Elf-Girl's Cat Is Secretly an S-Ranked Monster! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: I'm Living with an Otaku NEET Kunoichi!? (path: /mnt/plex/anime/I'm Living with an Otaku NEET Kunoichi!! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Yoasobi Gurashi! (path: /mnt/plex/anime/Yoasobi Gurashi! (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: THE RED RANGER Becomes an Adventurer in Another World (path: /mnt/plex/anime/THE RED RANGER Becomes an Adventurer in Another World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Traitors (US) (path: /mnt/plex/tv/The Traitors (US) (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Übel Blatt (path: /mnt/plex/anime/Übel Blatt (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Worst Cooks in America (path: /mnt/plex/tv/Worst Cooks in America (2010))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Originals (path: /mnt/plex/tv/The Originals (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Even Given the Worthless \"Appraiser\" Class, I'm Actually the Strongest (path: /mnt/plex/anime/Even Given the Worthless Appraiser Class, I'm Actually the Strongest (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Studio (2025) (path: /mnt/plex/tv/The Studio (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Chaos Dragon (path: /mnt/plex/anime/Chaos Dragon (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dimension 20's Adventuring Party (path: /mnt/plex/tv/Dimension 20's Adventuring Party)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dirty Laundry (2022) (path: /mnt/plex/tv/Dirty Laundry)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Very Important People (2023) (path: /mnt/plex/tv/Very Important People)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Legendary Hero Is Dead! (path: /mnt/plex/anime/The Legendary Hero Is Dead! (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Yandere Dark Elf: She Chased Me All the Way From Another World! (path: /mnt/plex/anime/Yandere Dark Elf - She Chased Me All the Way From Another World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Fall of Diddy (path: /mnt/plex/tv/The Fall of Diddy (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Suits LA (path: /mnt/plex/tv/Suits LA (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Gen V (path: /mnt/plex/tv/Gen V (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Paradise (2025) (path: /mnt/plex/tv/Paradise (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Divine Gate (path: /mnt/plex/anime/Divine Gate (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Black Sails (path: /mnt/plex/tv/Black Sails (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dirk Gently's Holistic Detective Agency (path: /mnt/plex/tv/Dirk Gently's Holistic Detective Agency (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Pokémon Concierge (path: /mnt/plex/tv/Pokémon Concierge (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Goosebumps (2023) (path: /mnt/plex/tv/Goosebumps (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Adventuring Academy (path: /mnt/plex/tv/Adventuring Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Astra Lost in Space (path: /mnt/plex/anime/Astra Lost in Space (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Banished From the Hero's Party, I Decided To Live a Quiet Life in the Countryside (path: /mnt/plex/anime/Banished from the Hero's Party, I Decided to Live a Quiet Life in the Countryside (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Bofuri: I Don't Want to Get Hurt, so I'll Max Out My Defense (path: /mnt/plex/anime/BOFURI I Don't Want to Get Hurt, so I'll Max Out My Defense. (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Call of the Night (path: /mnt/plex/anime/Call of the Night (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: I'm Quitting Heroing (path: /mnt/plex/anime/I'm Quitting Heroing (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Kemono Michi: Rise Up (path: /mnt/plex/anime/Kemono Michi Rise Up (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Maken-Ki! Battling Venus (path: /mnt/plex/anime/Maken-Ki! Battling Venus (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: My Daughter Left the Nest and Returned an S-Rank Adventurer (path: /mnt/plex/anime/My Daughter Left the Nest and Returned an S-Rank Adventurer (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Nura: Rise of the Yokai Clan (path: /mnt/plex/anime/Nura Rise of the Yokai Clan (2010))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Saga of Tanya the Evil (path: /mnt/plex/anime/Saga of Tanya the Evil (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Summoned to Another World for a Second Time (path: /mnt/plex/anime/Summoned to Another World for a Second Time (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Great Jahy Will Not Be Defeated! (path: /mnt/plex/anime/The Great Jahy Will Not Be Defeated! (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Toilet-bound Hanako-kun (path: /mnt/plex/anime/Toilet-Bound Hanako-kun (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Joran: The Princess of Snow and Blood (path: /mnt/plex/anime/Joran - The Princess of Snow and Blood (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: That Time I Got Reincarnated as a Slime (path: /mnt/plex/anime/That Time I Got Reincarnated as a Slime (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Chillin' in My 30s after Getting Fired from the Demon King's Army (path: /mnt/plex/anime/Chillin' in My 30s after Getting Fired from the Demon King's Army (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: KamiKatsu: Working for God in a Godless World (path: /mnt/plex/anime/KamiKatsu - Working for God in a Godless World (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Our Dating Story: The Experienced You and The Inexperienced Me (path: /mnt/plex/anime/Keikenzumi na Kimi to)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Demon Slayer: Kimetsu no Yaiba (path: /mnt/plex/anime/Demon Slayer - Kimetsu no Yaiba (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Miss Kuroitsu From the Monster Development Department (path: /mnt/plex/anime/Kaijin Kaihatsu-bu no Kuroitsu-san)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Kino's Journey: The Beautiful World (path: /mnt/plex/anime/Kino no Tabi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Love After World Domination (path: /mnt/plex/anime/Koi wa Sekai Seifuku no Ato de)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: In/Spectre (path: /mnt/plex/anime/Kyokou Suiri)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Dawn of the Witch (path: /mnt/plex/anime/The Dawn of the Witch (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Do You Love Your Mom and Her Two-Hit Multi-Target Attacks? (path: /mnt/plex/anime/Do You Love Your Mom and Her Two-Hit Multi-Target Attacks! (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Rascal Does Not Dream of Bunny Girl Senpai (path: /mnt/plex/anime/Rascal Does Not Dream of Bunny Girl Senpai (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Rising of the Shield Hero (path: /mnt/plex/anime/Tate no Yuusha no Nariagari)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Suppose a Kid From the Last Dungeon Boonies Moved to a Starter Town? (path: /mnt/plex/anime/Tatoeba Last Dungeon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Genius Prince's Guide to Raising a Nation Out of Debt (path: /mnt/plex/anime/Tensai Ouji no Akaji Kokka Saisei Jutsu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: I Couldn't Become a Hero, so I Reluctantly Decided To Get a Job (path: /mnt/plex/anime/I Couldn't Become a Hero, so I Reluctantly Decided To Get a Job (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Day of the Jackal (path: /mnt/plex/tv/The Day of the Jackal (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Pokémon (path: /mnt/plex/anime/Pokémon (1997))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Chilling Adventures of Sabrina (path: /mnt/plex/tv/Chilling Adventures of Sabrina (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Mobile Suit Gundam GQuuuuuuX (path: /mnt/plex/anime/Mobile Suit Gundam GQuuuuuuX (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Daredevil: Born Again (path: /mnt/plex/tv/Daredevil - Born Again (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Great (path: /mnt/plex/tv/The Great (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Smartypants (path: /mnt/plex/tv/Smartypants)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Um, Actually... (path: /mnt/plex/tv/Um, Actually)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Winning Time: The Rise of the Lakers Dynasty (path: /mnt/plex/tv/Winning Time - The Rise of the Lakers Dynasty (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: To Be Hero X (path: /mnt/plex/anime/To be Hero X (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Liverspots and Astronots (path: /mnt/plex/tv/Liverspots and Astronots (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Platonic (2023) (path: /mnt/plex/tv/Platonic (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Workaholics (path: /mnt/plex/tv/Workaholics (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: SAS Rogue Heroes (path: /mnt/plex/tv/SAS Rogue Heroes (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Bondsman (path: /mnt/plex/tv/The Bondsman (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Made For Love (path: /mnt/plex/tv/Made For Love (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: I'm the Evil Lord of an Intergalactic Empire! (path: /mnt/plex/anime/I'm the Evil Lord of an Intergalactic Empire! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Workin' Moms (path: /mnt/plex/tv/Workin' Moms (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Lazarus (path: /mnt/plex/anime/Lazarus (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Devil May Cry (2025) (path: /mnt/plex/anime/Devil May Cry (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: From Old Country Bumpkin to Master Swordsman (path: /mnt/plex/anime/From Old Country Bumpkin to Master Swordsman (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tojima Wants to Be a Kamen Rider (path: /mnt/plex/anime/Tojima Tanzaburo Wants to Be a Kamen Rider)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Murderbot (path: /mnt/plex/tv/Murderbot (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Apocalypse Hotel (path: /mnt/plex/anime/Apocalypse Hotel (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Moonrise (path: /mnt/plex/anime/Moonrise (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: WITCH WATCH (path: /mnt/plex/anime/WITCH WATCH (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Government Cheese (path: /mnt/plex/tv/Government Cheese (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Andor (path: /mnt/plex/tv/Andor (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Adults (2025) (path: /mnt/plex/tv/Adults (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Good Lord Bird (path: /mnt/plex/tv/The Good Lord Bird (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Apothecary Diaries (path: /mnt/plex/anime/The Apothecary Diaries (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: From Dusk Till Dawn: The Series (path: /mnt/plex/tv/From Dusk Till Dawn - The Series (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Krypton (path: /mnt/plex/tv/Krypton (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Love, Death & Robots (path: /mnt/plex/tv/Love, Death & Robots (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dorohedoro (path: /mnt/plex/anime/Dorohedoro (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Second Best Hospital in the Galaxy (path: /mnt/plex/tv/The Second Best Hospital in the Galaxy (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Paper (2025) (path: /mnt/plex/tv/The Paper (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Ghosts (2019) (path: /mnt/plex/tv/Ghosts (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Sirens (2025) (path: /mnt/plex/tv/Sirens (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tires (path: /mnt/plex/tv/Tires (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: MobLand (path: /mnt/plex/tv/MobLand (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Terror in Resonance (path: /mnt/plex/anime/Terror in Resonance (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Fallen (2007) (path: /mnt/plex/tv/Fallen (2007))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Fallen (path: /mnt/plex/tv/Fallen (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Love Island USA (path: /mnt/plex/tv/Love Island (US) (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Countdown (2025) (path: /mnt/plex/tv/Countdown (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Parlor Room (path: /mnt/plex/tv/Parlor Room)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Ironheart (path: /mnt/plex/tv/Ironheart (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dateline NBC (path: /mnt/plex/tv/Dateline NBC (1992))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Gachiakuta (path: /mnt/plex/anime/Gachiakuta (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Sword of the Demon Hunter: Kijin Gentosho (path: /mnt/plex/anime/Sword of the Demon Hunter - Kijin Gentosho (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Life After People (path: /mnt/plex/tv/Life After People (2009))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Vikings (path: /mnt/plex/tv/Vikings (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Detroiters (path: /mnt/plex/tv/Detroiters (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: ZENSHU (path: /mnt/plex/anime/ZENSHU (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Chad Powers (path: /mnt/plex/tv/Chad Powers (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dusk Beyond the End of the World (path: /mnt/plex/anime/Dusk Beyond the End of the World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: New Saga (path: /mnt/plex/anime/New Saga (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Aristocrat’s Otherworldly Adventure: Serving Gods Who Go Too Far (path: /mnt/plex/anime/The Aristocrat’s Otherworldly Adventure - Serving Gods Who Go Too Far (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Wildemount Wildlings (path: /mnt/plex/tv/Wildemount Wildlings (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Rain (path: /mnt/plex/tv/The Rain (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Chosen (path: /mnt/plex/tv/The Chosen (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Hero Without a Class: Who Even Needs Skills?! (path: /mnt/plex/anime/Hero Without a Class - Who Even Needs Skills!! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Alien: Earth (path: /mnt/plex/tv/Alien - Earth (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Terminal List: Dark Wolf (path: /mnt/plex/tv/The Terminal List - Dark Wolf (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: First Lady (2025) (path: /mnt/plex/tv/First Lady (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Only Murders in the Building (path: /mnt/plex/tv/Only Murders in the Building (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Stranger Things (path: /mnt/plex/tv/Stranger Things (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Haunted Hotel (path: /mnt/plex/tv/Haunted Hotel (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: House of Guinness (path: /mnt/plex/tv/House of Guinness (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: SANDA (path: /mnt/plex/anime/SANDA (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Critical Role (path: /mnt/plex/tv/Critical Role (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Banshee (path: /mnt/plex/tv/Banshee (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Tatsuki Fujimoto 17-26 (path: /mnt/plex/anime/Tatsuki Fujimoto 17-26 (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: My Hero Academia: Vigilantes (path: /mnt/plex/anime/My Hero Academia - Vigilantes (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Mighty Nein (path: /mnt/plex/tv/Mighty Nein (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Dracula (path: /mnt/plex/tv/Dracula (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: A Knight of the Seven Kingdoms (path: /mnt/plex/tv/A Knight of the Seven Kingdoms (2026))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Case Study of Vanitas (path: /mnt/plex/anime/The Case Study of Vanitas (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: Taylor (path: /mnt/plex/tv/Taylor (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: My Life as Inukai-san's Dog (path: /mnt/plex/anime/My Life as Inukai-san's Dog (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "Checking series: The Forsytes (path: /mnt/plex/tv/The Forsytes (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 195} +{"timestamp": "2026-01-01T07:18:47Z", "level": "INFO", "message": "File not found: C:/mnt/plex/tv/Supernatural/Season 7/Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 249} +{"timestamp": "2026-01-01T07:18:58Z", "level": "INFO", "message": "Copied Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 134} +{"timestamp": "2026-01-01T07:18:58Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T07:18:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T07:18:58Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 161} +{"timestamp": "2026-01-01T07:18:59Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T07:18:59Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T07:18:59Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T07:18:59Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T07:18:59Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T07:18:59Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T07:18:59Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T07:18:59Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T07:18:59Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T07:18:59Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:18:59Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T07:18:59Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:18:59Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T07:19:43Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Skipped 149 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 105} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Input file: P:\\tv\\Supernatural\\Season 7\\Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 186} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural/Season 7/Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 187} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Path mappings: [{'from': 'P:\\\\tv', 'to': '/mnt/plex/tv'}, {'from': 'P:\\\\anime', 'to': '/mnt/plex/anime'}, {'from': 'P:\\\\movies', 'to': '/mnt/plex/movies'}]", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 188} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Servamp (path: /mnt/plex/anime/Servamp (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: 1883 (path: /mnt/plex/tv/1883)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: 1923 (path: /mnt/plex/tv/1923)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: 30 Rock (path: /mnt/plex/tv/30 Rock (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Abbott Elementary (path: /mnt/plex/tv/Abbott Elementary (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: American Gods (path: /mnt/plex/tv/American Gods (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Assembly Required (path: /mnt/plex/tv/Assembly Required (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Avenue 5 (path: /mnt/plex/tv/Avenue 5)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Ballers (path: /mnt/plex/tv/Ballers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Band of Brothers (path: /mnt/plex/tv/Band of Brothers (2001))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Barry (path: /mnt/plex/tv/Barry)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Being Human (US) (path: /mnt/plex/tv/Being Human (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Belgravia: The Next Chapter (path: /mnt/plex/tv/Belgravia - The Next Chapter)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Better Call Saul (path: /mnt/plex/tv/Better Call Saul)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Billions (path: /mnt/plex/tv/Billions)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Black Bird (path: /mnt/plex/tv/Black Bird (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Brooklyn Nine-Nine (path: /mnt/plex/tv/Brooklyn Nine Nine)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Bupkis (path: /mnt/plex/tv/Bupkis)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Canada's Drag Race (path: /mnt/plex/tv/Canada's Drag Race)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Canada's Drag Race: Canada vs. The World (path: /mnt/plex/tv/Canada's Drag Race vs The World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Chuck (path: /mnt/plex/tv/Chuck)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Citadel (path: /mnt/plex/tv/Citadel)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Counterpart (path: /mnt/plex/tv/Counterpart)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dark Side of the Ring (path: /mnt/plex/tv/Dark Side of the Ring)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dopesick (path: /mnt/plex/tv/Dopesick)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Extraordinary (path: /mnt/plex/tv/Extraordinary)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Face Off (path: /mnt/plex/tv/Face Off (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Fargo (path: /mnt/plex/tv/Fargo (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Father Brown (2013) (path: /mnt/plex/tv/Father Brown)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Fired on Mars (path: /mnt/plex/tv/Fired on Mars (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Firefly (path: /mnt/plex/tv/Firefly (2002))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Game of Thrones (path: /mnt/plex/tv/Game Of Thrones)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Ghosts (US) (path: /mnt/plex/tv/Ghosts (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Gordon Ramsay's Food Stars (path: /mnt/plex/tv/Gordon Ramsay's Food Stars (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Halo (path: /mnt/plex/tv/Halo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Harley Quinn (path: /mnt/plex/tv/Harley Quinn)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Hawkeye (2021) (path: /mnt/plex/tv/Hawkeye)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Home Improvement (path: /mnt/plex/tv/Home Improvement 1991)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: House of the Dragon (path: /mnt/plex/tv/House of the Dragon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: iCarly (2021) (path: /mnt/plex/tv/iCarly (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Impractical Jokers (path: /mnt/plex/tv/Impractical Jokers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Ink Master (path: /mnt/plex/tv/Ink Master)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Invincible (path: /mnt/plex/tv/Invincible (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: It's Always Sunny in Philadelphia (path: /mnt/plex/tv/Its Always Sunny in Philadelphia)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Jury Duty (path: /mnt/plex/tv/Jury Duty)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Kim's Convenience (path: /mnt/plex/tv/Kim's Convenience)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Kitchen Nightmares (US) (path: /mnt/plex/tv/Kitchen Nightmares US)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Last Man Standing (2011) (path: /mnt/plex/tv/Last Man Standing)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Loki (path: /mnt/plex/tv/Loki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Lucky Hank (path: /mnt/plex/tv/Lucky Hank)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Married at First Sight (path: /mnt/plex/tv/Married at First Sight (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Monarch: Legacy of Monsters (path: /mnt/plex/tv/Monarch Legacy of Monsters)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Moon Knight (path: /mnt/plex/tv/Moon Knight)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Murder, She Wrote (path: /mnt/plex/tv/Murder She Wrote)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Mythic Quest (path: /mnt/plex/tv/Mythic Quest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Obi-Wan Kenobi (path: /mnt/plex/tv/Obi-Wan Kenobi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Our Flag Means Death (path: /mnt/plex/tv/Our Flag Means Death)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Outlander (path: /mnt/plex/tv/Outlander)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Over the Garden Wall (path: /mnt/plex/tv/Over the Garden Wall)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Pantheon (path: /mnt/plex/tv/Pantheon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Passion for Punchlines (path: /mnt/plex/tv/Passion for punchlines)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Peacemaker (path: /mnt/plex/tv/Peacemaker (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Percy Jackson and the Olympians (path: /mnt/plex/tv/Percy Jackson and the Olympians)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Quantum Leap (path: /mnt/plex/tv/Quantum Leap (1989))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Quantum Leap (2022) (path: /mnt/plex/tv/Quantum Leap 2022)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Raised by Wolves (2020) (path: /mnt/plex/tv/Raised by wolves)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Reacher (path: /mnt/plex/tv/Reacher (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Resident Alien (path: /mnt/plex/tv/Resident Alien (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Rick and Morty (path: /mnt/plex/tv/Rick and Morty)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Running Man (path: /mnt/plex/tv/Running Man)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race (path: /mnt/plex/tv/Rupaul's Drag Race)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race All Stars (path: /mnt/plex/tv/Rupaul's Drag Race All Stars)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Drag Race Down Under (path: /mnt/plex/tv/RuPaul's Drag Race Down Under)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race UK (path: /mnt/plex/tv/Rupaul's Drag Race UK)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: RuPaul's Drag Race: Vegas Revue (path: /mnt/plex/tv/Rupaul's Drag Race Vegas Revue)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: RuPaul’s Drag Race UK vs the World (path: /mnt/plex/tv/Rupauls Drag Race UK vs The World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Schmigadoon! (path: /mnt/plex/tv/Schmigadoon!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Scorpion (path: /mnt/plex/tv/SCORPION)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: RuPaul's Secret Celebrity Drag Race (path: /mnt/plex/tv/Secret Celebrity RuPaul's Drag Race)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: See (path: /mnt/plex/tv/See)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Severance (path: /mnt/plex/tv/Severance)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: She-Hulk: Attorney at Law (path: /mnt/plex/tv/She-Hulk Attorney at Law)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Shrinking (path: /mnt/plex/tv/Shrinking (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Smiling Friends (path: /mnt/plex/tv/Smiling Friends)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Solar Opposites (path: /mnt/plex/tv/Solar Opposites)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Lioness (path: /mnt/plex/tv/Special Ops Lioness)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Star Trek: Strange New Worlds (path: /mnt/plex/tv/Star Strek Strange New Worlds)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Star Trek: Lower Decks (path: /mnt/plex/tv/Star Trek Lower Decks)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Stargirl (path: /mnt/plex/tv/Stargirl)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Station Eleven (path: /mnt/plex/tv/Station Eleven)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Superman & Lois (path: /mnt/plex/tv/Superman and Lois)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Supernatural (path: /mnt/plex/tv/Supernatural)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "✓ Matched series path: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 201} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Querying: http://10.0.0.10:8989/api/v3/episode?seriesId=95", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 211} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Got 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 217} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Taskmaster (path: /mnt/plex/tv/Taskmaster)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Taskmaster (AU) (path: /mnt/plex/tv/Taskmaster AU)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: ted (path: /mnt/plex/tv/Ted (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Ted Lasso (path: /mnt/plex/tv/Ted Lasso (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Big Door Prize (path: /mnt/plex/tv/The Big Door Prize)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Book of Boba Fett (path: /mnt/plex/tv/The Book of Boba Fett)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Boys (path: /mnt/plex/tv/The Boys)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Continental (2023) (path: /mnt/plex/tv/The Continental (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Falcon and The Winter Soldier (path: /mnt/plex/tv/The Falcon and The Winter Soldier (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Fall of the House of Usher (path: /mnt/plex/tv/The Fall of the House of Usher (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Gilded Age (path: /mnt/plex/tv/The Gilded Age)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Goes Wrong Show (path: /mnt/plex/tv/The Goes Wrong Show (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Last of Us (path: /mnt/plex/tv/The Last of Us)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Mandalorian (path: /mnt/plex/tv/The Mandalorian)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Now (path: /mnt/plex/tv/The Now)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Offer (path: /mnt/plex/tv/The Offer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Santa Clauses (path: /mnt/plex/tv/The Santa Clauses (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Split (path: /mnt/plex/tv/The Split)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Titans (2018) (path: /mnt/plex/tv/Titans (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tulsa King (path: /mnt/plex/tv/Tulsa King)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Twisted Metal (path: /mnt/plex/tv/Twisted Metal (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Villainous (path: /mnt/plex/tv/Villainous (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Walker (path: /mnt/plex/tv/Walker)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: WandaVision (path: /mnt/plex/tv/Wandavision)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Welcome to Chippendales (path: /mnt/plex/tv/Welcome to Chippendales (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Welcome to Wrexham (path: /mnt/plex/tv/Welcome to Wrexham)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Wolf Pack (path: /mnt/plex/tv/Wolf Pack)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Young Sheldon (path: /mnt/plex/tv/Young Sheldon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: 4 Cut Hero (path: /mnt/plex/anime/4 Cut Hero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: 86: Eighty Six (path: /mnt/plex/anime/86 - Eighty Six (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Shimoneta: A Boring World Where the Concept of Dirty Jokes Doesn't Exist (path: /mnt/plex/anime/A Boring World Where the Concept of Dirty Jokes Doesn't Exist)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: A Returner's Magic Should Be Special (path: /mnt/plex/anime/A Returner's Magic Should Be Special)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Aesthetica of a Rogue Hero (path: /mnt/plex/anime/Aesthetica of a Rogue Hero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Air Gear (path: /mnt/plex/anime/Air Gear (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Akame ga Kill! (path: /mnt/plex/anime/Akame ga Kill!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Akudama Drive (path: /mnt/plex/anime/Akudama Drive)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Am I Actually the Strongest? (path: /mnt/plex/anime/Am I Actually the Strongest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Amagi Brilliant Park (path: /mnt/plex/anime/Amagi Brilliant Park)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: And You Thought There Is Never a Girl Online? (path: /mnt/plex/anime/And You Thought There Is Never a Girl Online)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Arknights (path: /mnt/plex/anime/Arknights)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Armed Girl's Machiavellism (path: /mnt/plex/anime/Armed Girl's Machiavellism)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Assassins Pride (path: /mnt/plex/anime/Assassins Pride)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: B: The Beginning (path: /mnt/plex/anime/B The Beginning)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Beast Tamer (path: /mnt/plex/anime/Beast Tamer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Black Clover (path: /mnt/plex/anime/Black Clover)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Black Lagoon (path: /mnt/plex/anime/Black Lagoon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Black Summoner (path: /mnt/plex/anime/Black Summoner)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Blast of Tempest (path: /mnt/plex/anime/Blast of Tempest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Blood Lad (path: /mnt/plex/anime/Blood Lad (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Bloodivores (path: /mnt/plex/anime/Bloodivores)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Boogiepop Phantom (path: /mnt/plex/anime/Boogiepop Phantom)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Brave Bang Bravern! (path: /mnt/plex/anime/Brave Bang Bravern!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Broken Blade (path: /mnt/plex/anime/Broken Blade)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: BTOOOM! (path: /mnt/plex/anime/Btooom!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Buddy Daddies (path: /mnt/plex/anime/Buddy Daddies)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: By the Grace of the Gods (path: /mnt/plex/anime/By the Grace of the Gods)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Captain Earth (path: /mnt/plex/anime/Captain Earth)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Casshern Sins (path: /mnt/plex/anime/Casshern Sins (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Chained Soldier (path: /mnt/plex/anime/Chained Soldier)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Chainsaw Man (path: /mnt/plex/anime/Chainsaw Man (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Chobits (path: /mnt/plex/anime/Chobits)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Classroom of the Elite (path: /mnt/plex/anime/Classroom of the elite)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Combatants Will Be Dispatched! (path: /mnt/plex/anime/Combatants Will Be Dispatched)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Cop Craft (path: /mnt/plex/anime/Cop Craft)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Cowboy Bebop (path: /mnt/plex/anime/Cowboy Bebop)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: D.Gray-man (path: /mnt/plex/anime/D.Gray-man)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: DARLING in the FRANXX (path: /mnt/plex/anime/Darling in the FranXX)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Darwin's Game (path: /mnt/plex/anime/Darwin's Game)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dead Mount Death Play (path: /mnt/plex/anime/Dead Mount Death Play (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Deadman Wonderland (path: /mnt/plex/anime/Deadman Wonderland)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Battle Game in 5 Seconds (path: /mnt/plex/anime/Battle Game in 5 Seconds)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Deca-Dence (path: /mnt/plex/anime/Deca-Dence)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Deep Insanity: The Lost Child (path: /mnt/plex/anime/Deepy Insanity The Lost Child)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Demon King Daimao (path: /mnt/plex/anime/Demon King Daimao)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dimension W (path: /mnt/plex/anime/Dimension W)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: D.N.Angel (path: /mnt/plex/anime/DNAngel)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dog & Scissors (path: /mnt/plex/anime/Dog & Scissors)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Domestic Girlfriend (path: /mnt/plex/anime/Domestic Girlfriend)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Don't Toy With Me, Miss Nagatoro (path: /mnt/plex/anime/Don't Toy With Me Miss Nagatoro)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dr. STONE (path: /mnt/plex/anime/Dr.Stone)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dragonar Academy (path: /mnt/plex/anime/Dragonar Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Edens Zero (path: /mnt/plex/anime/Edens Zero (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Etotama (path: /mnt/plex/anime/Etotama)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Fairy gone (path: /mnt/plex/anime/Fairy Gone)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: FLCL (path: /mnt/plex/anime/FLCL)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Fractale (path: /mnt/plex/anime/Fractale)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Frieren: Beyond Journey's End (path: /mnt/plex/anime/Frieren - Beyond Journey's End)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: GATE (path: /mnt/plex/anime/GATE)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Gibiate (path: /mnt/plex/anime/Gibiate)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Girls Bravo (path: /mnt/plex/anime/Girls Bravo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Gleipnir (path: /mnt/plex/anime/Gleipnir)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Gosick (path: /mnt/plex/anime/Gosick)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Great Pretender (path: /mnt/plex/anime/Great Pretender)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Green Green (path: /mnt/plex/anime/Green Green)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Grenadier (path: /mnt/plex/anime/Grenadier)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Guilty Crown (path: /mnt/plex/anime/Guilty Crown)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Hamatora (path: /mnt/plex/anime/Hamatora)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Heavenly Delusion (path: /mnt/plex/anime/Heavenly Delusion)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Hero Return (path: /mnt/plex/anime/Hero Return)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Heroic Age (path: /mnt/plex/anime/Heroic Age)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: High School D×D (path: /mnt/plex/anime/High School D×D (2012))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Highschool of the Dead (path: /mnt/plex/anime/High School of the Dead)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Horimiya (path: /mnt/plex/anime/Horimiya)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Hortensia Saga (path: /mnt/plex/anime/Hortensia Saga)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: How Not to Summon a Demon Lord (path: /mnt/plex/anime/How Not to Summon a Demon Lord)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Hunter x Hunter (2011) (path: /mnt/plex/anime/Hunter x Hunter (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: I'm Standing on a Million Lives (path: /mnt/plex/anime/I'm Standing on a Million Lives)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: ID: INVADED (path: /mnt/plex/anime/ID Invaded)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Ikebukuro West Gate Park (path: /mnt/plex/anime/Ikebukuro West Gate Park)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Infinite Dendrogram (path: /mnt/plex/anime/Infinite Dendrogram)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Is It Wrong to Try to Pick Up Girls in a Dungeon? (path: /mnt/plex/anime/Is It Wrong to Try to Pick Up Girls in a Dungeon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Isekai Cheat Magician (path: /mnt/plex/anime/Isekai Cheat Magician)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: JUJUTSU KAISEN (path: /mnt/plex/anime/Jujutsu Kaisen)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Maria the Virgin Witch (path: /mnt/plex/anime/Junketsu no Maria (Maria the Virgin Witch))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Redo of Healer (path: /mnt/plex/anime/Kaifuku Jutsushi no Yarinaoshi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Kemono Jihen (path: /mnt/plex/anime/Kemono Jihen)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: King's Raid: Successors of the Will (path: /mnt/plex/anime/King's Raid)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Vermeil in Gold (path: /mnt/plex/anime/Vermeil in Gold (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Knight's & Magic (path: /mnt/plex/anime/Knight's & Magic)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: KonoSuba – God’s blessing on this wonderful world!! (path: /mnt/plex/anime/KonoSuba)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Onmyou Taisenki (path: /mnt/plex/anime/Kyoukai Senki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Lapis Re:LiGHTs (path: /mnt/plex/anime/Lapis ReLights)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Liar, Liar (path: /mnt/plex/anime/Liar Liar (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Listeners (path: /mnt/plex/anime/Listeners)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Log Horizon (path: /mnt/plex/anime/Log Horizon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Lord Marksman and Vanadis (path: /mnt/plex/anime/Lord Marksman and Vanadis)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Love Tyrant (path: /mnt/plex/anime/Love Tyrant)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Maburaho (path: /mnt/plex/anime/Maburaho)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Magi: Adventure of Sinbad (path: /mnt/plex/anime/Magi Adventure of Sinbad)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Magical Sempai (path: /mnt/plex/anime/Magical Senpai)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Magical Warfare (path: /mnt/plex/anime/Magical Warfare)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: MASHLE: MAGIC AND MUSCLES (path: /mnt/plex/anime/Mashle)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Medaka Box (path: /mnt/plex/anime/Medaka Box)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Mob Psycho 100 (path: /mnt/plex/anime/Mob Psycho 100)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tsukimichi -Moonlit Fantasy- (path: /mnt/plex/anime/Tsukimichi - Moonlit Fantasy (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Mr. Villain's Day Off (path: /mnt/plex/anime/Mr. Villain's Day Off)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Seton Academy: Join the Pack! (path: /mnt/plex/anime/Murenase! Seton Gakuen)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Mushoku Tensei: Jobless Reincarnation (path: /mnt/plex/anime/Mushoku Tensei - Jobless Reincarnation (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Muv-Luv Alternative (path: /mnt/plex/anime/Muv-Luv Alternative)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: My Girlfriend Is Shobitch (path: /mnt/plex/anime/My Girlfriend is Shobitch)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: My Hero Academia (path: /mnt/plex/anime/My Hero Academia)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: My Home Hero (path: /mnt/plex/anime/My Home Hero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: My Instant Death Ability Is Overpowered (path: /mnt/plex/anime/My Instant Death Ability Is So Overpowered, No One in This Other World Stands a Chance Against Me!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: My Isekai Life (path: /mnt/plex/anime/My Isekai Life (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: My Senpai Is Annoying (path: /mnt/plex/anime/My Senpai is Annoying)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: No Game No Life (path: /mnt/plex/anime/No Game No Life)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: No Guns Life (path: /mnt/plex/anime/No Guns Life (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Noblesse (path: /mnt/plex/anime/Noblesse)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Noragami (path: /mnt/plex/anime/Noragami)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: One-Punch Man (path: /mnt/plex/anime/One-Punch Man (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Orient (path: /mnt/plex/anime/Orient)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Oshi no Ko (path: /mnt/plex/anime/Oshi No Ko)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Trapped in a Dating Sim: The World of Otome Games Is Tough for Mobs (path: /mnt/plex/anime/Otomege Sekai wa Mob ni Kibishii Sekai desu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Outbreak Company (path: /mnt/plex/anime/Outbreak Company)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Overflow (path: /mnt/plex/anime/Overflow)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Peach Boy Riverside (path: /mnt/plex/anime/Peach Boy Riverside)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Platinum End (path: /mnt/plex/anime/Platinum End)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Plunderer (path: /mnt/plex/anime/Plunderer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Prison School (path: /mnt/plex/anime/Prison School)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Punch Line (path: /mnt/plex/anime/Punch Line)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Radiant (path: /mnt/plex/anime/Radiant (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Ragna Crimson (path: /mnt/plex/anime/Ragna Crimson)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Ranking of Kings (path: /mnt/plex/anime/Ranking of Kings)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Record of Ragnarok (path: /mnt/plex/anime/Record of Ragnarok)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Recovery of an MMO Junkie (path: /mnt/plex/anime/Recovery of an MMO Junkie)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Reign of the Seven Spellblades (path: /mnt/plex/anime/Reign of the Seven Spellblades)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: ReLIFE (path: /mnt/plex/anime/ReLife)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Rent-a-Girlfriend (path: /mnt/plex/anime/Rent a girlfriend)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Re: ZERO, Starting Life in Another World (path: /mnt/plex/anime/ReZERO -Starting Life in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Robotics;Notes (path: /mnt/plex/anime/Robotics;Notes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Rokka: Braves of the Six Flowers (path: /mnt/plex/anime/Rokka Braves of the Six Flowers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Rosario + Vampire (path: /mnt/plex/anime/Rosario + Vampire (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Sabikui Bisco (path: /mnt/plex/anime/Sabikui Bisco)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: SAKUGAN (path: /mnt/plex/anime/Sakugan)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Seirei Gensouki: Spirit Chronicles (path: /mnt/plex/anime/Seirei Gensouki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Sekirei (path: /mnt/plex/anime/Sekirei (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Seraph of the End (path: /mnt/plex/anime/Seraph of the End)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Seven Mortal Sins (path: /mnt/plex/anime/Seven Mortal Sins)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Shachibato! President, It's Time for Battle! (path: /mnt/plex/anime/Shachou Battle No Jikan Desu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Shikizakura (path: /mnt/plex/anime/Shikizakura)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Cautious Hero: The Hero Is Overpowered but Overly Cautious (path: /mnt/plex/anime/Shinchou Yuusha)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Shinobi no Ittoki (path: /mnt/plex/anime/Shinobi no Ittoki (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Skeleton Knight in Another World (path: /mnt/plex/anime/Skeleton Knight in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Solo Leveling (path: /mnt/plex/anime/Solo Leveling)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Spice and Wolf (path: /mnt/plex/anime/Spice and Wolf (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: SPY x FAMILY (path: /mnt/plex/anime/SPY x FAMILY (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Steins;Gate (path: /mnt/plex/anime/Steins;Gate)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Summer Time Rendering (path: /mnt/plex/anime/Summer Time Render (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Sunday Without God (path: /mnt/plex/anime/Sunday Without God)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Sword Art Online (path: /mnt/plex/anime/Sword Art Online (2012))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Taboo Tattoo (path: /mnt/plex/anime/Taboo Tattoo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tales of Wedding Rings (path: /mnt/plex/anime/Tales of Wedding Rings)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tears to Tiara (path: /mnt/plex/anime/Tears to Tiara)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tenchi Muyo! War on Geminar (path: /mnt/plex/anime/Tenchi Muyo! War on Geminar)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Daily Life of the Immortal King (path: /mnt/plex/anime/The Daily Life of the Immortal King)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Devil Is a Part-Timer! (path: /mnt/plex/anime/The Devil Is a Part-Timer! (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Faraway Paladin (path: /mnt/plex/anime/The Faraway Paladin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Foolish Angel Dances With the Devil (path: /mnt/plex/anime/The Foolish Angel Dances With the Devil)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The God of High School (path: /mnt/plex/anime/The God of High School)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Great Cleric (path: /mnt/plex/anime/The Great Cleric)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Greatest Demon Lord Is Reborn as a Typical Nobody (path: /mnt/plex/anime/The Greatest Demon Lord Is Reborn as a Typical Nobody)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Iceblade Sorcerer Shall Rule the World (path: /mnt/plex/anime/The Iceblade Sorcerer Shall Rule the World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The King's Avatar (path: /mnt/plex/anime/The Kings Avatar)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Legend of the Legendary Heroes (path: /mnt/plex/anime/The Legend of the Legendary Heroes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Misfit of Demon King Academy (path: /mnt/plex/anime/The Misfit of Demon King Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Quintessential Quintuplets (path: /mnt/plex/anime/The Quintessential Quintuplets)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Saint's Magic Power Is Omnipotent (path: /mnt/plex/anime/The Saint's Magic Power is Omnipotent)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Testament of Sister New Devil (path: /mnt/plex/anime/The Testament of Sister New Devil)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Wrong Way to Use Healing Magic (path: /mnt/plex/anime/The Wrong Way To Use Healing Magic (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: To LOVE-Ru (path: /mnt/plex/anime/To LOVE-Ru (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tokyo Ghoul (path: /mnt/plex/anime/Tokyo Ghoul)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tokyo Majin (path: /mnt/plex/anime/Tokyo Majin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tokyo Ravens (path: /mnt/plex/anime/Tokyo Ravens)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tokyo Revengers (path: /mnt/plex/anime/Tokyo Revengers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Toradora! (path: /mnt/plex/anime/Toradora!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tower of God (path: /mnt/plex/anime/Tower of God)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Triage X (path: /mnt/plex/anime/Triage X)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tribe Nine (path: /mnt/plex/anime/Tribe Nine)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Trigun (path: /mnt/plex/anime/Trigun)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: TRIGUN STAMPEDE (path: /mnt/plex/anime/Trigun Stampede)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tsugumomo (path: /mnt/plex/anime/Tsugumomo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Undead Murder Farce (path: /mnt/plex/anime/Undead Girl Murder Farce)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Undead Unluck (path: /mnt/plex/anime/Undead Unluck)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Urusei Yatsura (2022) (path: /mnt/plex/anime/Urusei Yatsura (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Val x Love (path: /mnt/plex/anime/Val x Love (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: VanDread (path: /mnt/plex/anime/VanDread (2000))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Villainess Level 99: I May Be the Hidden Boss but I'm Not the Demon Lord (path: /mnt/plex/anime/Villainess Level 99 - I May Be the Hidden Boss but I'm Not the Demon Lord (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Vinland Saga (path: /mnt/plex/anime/Vinland Saga (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Welcome to the N.H.K. (path: /mnt/plex/anime/Welcome to the N.H.K. (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Why the Hell Are You Here, Teacher!? (path: /mnt/plex/anime/Why the Hell are You Here, Teacher!! (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Wise Man's Grandchild (path: /mnt/plex/anime/Wise Man's Grandchild (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: World Break: Aria of Curse for a Holy Swordsman (path: /mnt/plex/anime/World Break - Aria of Curse for a Holy Swordsman (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: World's End Harem (path: /mnt/plex/anime/World's End Harem (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Xam'd: Lost Memories (path: /mnt/plex/anime/Xam'd - Lost Memories (2008))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Your Lie in April (path: /mnt/plex/anime/Your Lie in April (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Familiar of Zero (path: /mnt/plex/anime/The Familiar of Zero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Zom 100: Bucket List of the Dead (path: /mnt/plex/anime/Zom 100 - Bucket List of the Dead (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: My One-Hit Kill Sister (path: /mnt/plex/anime/My One-Hit Kill Sister)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Ramsay's Kitchen Nightmares (path: /mnt/plex/tv/Kitchen Nightmares UK)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Mobile Suit Gundam: The Witch from Mercury (path: /mnt/plex/anime/Mobile Suit Gundam The Witch from Mercury)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: I'm the Villainess, So I'm Taming the Final Boss (path: /mnt/plex/anime/I'm the Villainess, So I'm Taming the Final Boss)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Arifureta: From Commonplace to World's Strongest (path: /mnt/plex/anime/Arifureta - From Commonplace to World's Strongest (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Monogatari (path: /mnt/plex/anime/Bakemonogatari)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Handyman Saitou in Another World (path: /mnt/plex/anime/Handyman Saitou in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Beyond the Boundary (path: /mnt/plex/anime/Beyond the Boundary (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Remake Our Life! (path: /mnt/plex/anime/Bokutachi no Remake)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Build-Divide (path: /mnt/plex/anime/Build Divide Code Black)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Chiikawa (path: /mnt/plex/anime/Chiikawa)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: So, I Can't Play H! (path: /mnt/plex/anime/So, I Can't Play H!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Danganronpa: The Animation (path: /mnt/plex/anime/Danganronpa)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Fire Force (path: /mnt/plex/anime/Enen no Shouboutai)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout (path: /mnt/plex/anime/Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: To Your Eternity (path: /mnt/plex/anime/Fumetsu no Anata e)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: How a Realist Hero Rebuilt the Kingdom (path: /mnt/plex/anime/Genjitsu Shugi Yuusha no Oukoku Saikenki)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Fantasia Sango - Realm of Legends (path: /mnt/plex/anime/Fantasia Sango - Realm of Legends)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Brynhildr in the Darkness (path: /mnt/plex/anime/Gokukoku no Brynhildr)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Golden Boy (path: /mnt/plex/anime/Golden Boy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Fruit of Grisaia (path: /mnt/plex/anime/Grisaia no Kajitsu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Our Last Crusade or the Rise of a New World (path: /mnt/plex/anime/Our Last Crusade or the Rise of a New World (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: YU-NO: A Girl Who Chants Love at the Bound of This World (path: /mnt/plex/anime/YU-NO - A Girl Who Chants Love at the Bound of This World (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: So I'm a Spider, So What? (path: /mnt/plex/anime/So I'm a Spider, So What?)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Full Dive: This Ultimate Next-Gen Full Dive RPG Is Even Shittier Than Real Life! (path: /mnt/plex/anime/Kyuukyoku Shinka Shita Full Dive RPG ga Genjitsu yori mo Kusogee Dattara)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: In the Land of Leadale (path: /mnt/plex/anime/Leadale no Daichi nite)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Level 1 Demon Lord and One Room Hero (path: /mnt/plex/anime/Lv1 Maou to One Room Yuusha)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Demon Girl Next Door (path: /mnt/plex/anime/Machikado Mazoku)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Honor Student at Magic High School (2021) (path: /mnt/plex/anime/Mahouka Koukou no Rettousei)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Sorcerous Stabber Orphen (path: /mnt/plex/anime/Majutsushi Orphen Hagure Tabi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Makai Ouji: Devils and Realist (path: /mnt/plex/anime/Devils and Realist)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Masamune-kun's Revenge (path: /mnt/plex/anime/Masamune-kun no Revenge)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Hybrid x Heart Magias Academy Ataraxia (path: /mnt/plex/anime/Masou Gakuen HxH)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Mother of the Goddess' Dormitory (path: /mnt/plex/anime/Megami-ryou no Ryoubo-kun)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Dungeon of Black Company (path: /mnt/plex/anime/Meikyuu Black Company)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: I've Somehow Gotten Stronger When I Improved My Farm-Related Skills (path: /mnt/plex/anime/Noumin Kanren no Skill bakka Agetetara Nazeka Tsuyoku Natta)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Hidden Dungeon Only I Can Enter (path: /mnt/plex/anime/Ore dake Haireru Kakushi Dungeon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Sukisho! (path: /mnt/plex/anime/Ore wo Suki nano wa Omae dake ka yo)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Ya Boy Kongming! (path: /mnt/plex/anime/Ya Boy Kongming! (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Princess Connect! Re:Dive (path: /mnt/plex/anime/Princess Connect)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dances with the Dragons (path: /mnt/plex/anime/Saredo Tsumibito wa Ryuu to Odoru)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Strongest Sage With the Weakest Crest (path: /mnt/plex/anime/Shikkakumon no Saikyou Kenja)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Rage of Bahamut (path: /mnt/plex/anime/Shokei Shoujo no Virgin Road)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Somali and the Forest Spirit (path: /mnt/plex/anime/Somali to Mori no Kamisama)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Koikimo (path: /mnt/plex/anime/Sono Bisque Doll wa Koi o Suru)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Otoboku: Maidens are Falling for Me! (path: /mnt/plex/anime/Tantei wa Mou, Shindeiru)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: A Certain Scientific Railgun (path: /mnt/plex/anime/Toaru Kagaku no Accelerator)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Campfire Cooking in Another World with My Absurd Skill (path: /mnt/plex/anime/Tondemo Skill de Isekai Hourou Meshi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: If It's for My Daughter, I'd Even Defeat a Demon Lord (path: /mnt/plex/anime/UchiMusume)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Hokkaido Gals Are Super Adorable! (path: /mnt/plex/anime/Hokkaido Gals Are Super Adorable!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Food Wars! (path: /mnt/plex/anime/Food Wars)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Grimgar, Ashes and Illusions (path: /mnt/plex/anime/Hai to Gensou no Grimgar)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: My Next Life as a Villainess: All Routes Lead to Doom! (path: /mnt/plex/anime/Hamefura)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Kingdoms of Ruin (path: /mnt/plex/anime/The Kingdoms of Ruin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Idaten Deities Know Only Peace (path: /mnt/plex/anime/Heion Sedai no Idaten-tachi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Lucifer and the Biscuit Hammer (path: /mnt/plex/anime/Hoshi no Samidare)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: BattleBots (path: /mnt/plex/tv/BattleBots)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dimension 20 (path: /mnt/plex/tv/Dimension 20)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Mr. & Mrs. Smith (2024) (path: /mnt/plex/tv/Mr. & Mrs. Smith (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Welcome to Demon School! Iruma-kun (path: /mnt/plex/anime/Welcome to Demon School! Iruma-kun (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Death and Other Details (path: /mnt/plex/tv/Death and Other Details)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Great British Bake Off (path: /mnt/plex/tv/The Great British Bake Off)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: BattleBots (2015) (path: /mnt/plex/tv/BattleBots (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Go! Go! Loser Ranger! (path: /mnt/plex/anime/Go! Go! Loser Ranger! (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Unwanted Undead Adventurer (path: /mnt/plex/anime/The Unwanted Undead Adventurer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Attack on Titan (path: /mnt/plex/anime/Attack on Titan)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Good Night World (path: /mnt/plex/anime/Good Night World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Eminence in Shadow (path: /mnt/plex/anime/The Eminence in Shadow)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: High School Prodigies Have It Easy Even in Another World! (path: /mnt/plex/anime/Choyoyu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Death March to the Parallel World Rhapsody (path: /mnt/plex/anime/Death March)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dolls' Frontline (2022) (path: /mnt/plex/anime/Dolls' Frontline)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Classroom for Heroes (path: /mnt/plex/anime/Classroom for Heroes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The 8th son? Are you kidding me? (path: /mnt/plex/anime/The 8th son! Are you kidding me! (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: I Got a Cheat Skill in Another World and Became Unrivaled in the Real World, Too (path: /mnt/plex/anime/Isekai de Cheat Skill)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Harem in the Labyrinth of Another World (path: /mnt/plex/anime/Harem in the Labyrinth of Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat (path: /mnt/plex/anime/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Overlord (path: /mnt/plex/anime/Overlord)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Ninja Kamui (path: /mnt/plex/anime/Ninja Kamui)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Bachelor (path: /mnt/plex/tv/The Bachelor)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Fallout (path: /mnt/plex/tv/Fallout)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Chillin' in Another World With Level 2 Super Cheat Powers (path: /mnt/plex/anime/Chillin' in Another World with Level 2 Super Cheat Powers)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells (path: /mnt/plex/anime/Failure Frame - I Became the Strongest and Annihilated Everything with Low-Level Spells (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Wistoria: Wand and Sword (path: /mnt/plex/anime/Wistoria - Wand and Sword (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Quiet on Set: The Dark Side of Kids TV (path: /mnt/plex/tv/Quiet On Set - The Dark Side Of Kids TV)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Bachelorette (path: /mnt/plex/tv/The Bachelorette)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Strongest Magician in the Demon Lord's Army Was a Human (path: /mnt/plex/anime/The Strongest Magician in the Demon Lord's Army was a Human)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Grendizer U (path: /mnt/plex/anime/Grendizer U)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability (path: /mnt/plex/anime/I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Mission: Yozakura Family (path: /mnt/plex/anime/Mission - Yozakura Family)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Shōgun (path: /mnt/plex/tv/Shōgun)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Amazing Stories (path: /mnt/plex/tv/Amazing Stories (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Modern Family (path: /mnt/plex/tv/Modern Family)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Knuckles (path: /mnt/plex/tv/Knuckles)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Viral Hit (path: /mnt/plex/anime/Viral Hit (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Unnamed Memory (path: /mnt/plex/anime/Unnamed Memory)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: An Archdemon's Dilemma: How To Love Your Elf Bride (path: /mnt/plex/anime/An Archdemon's Dilemma - How To Love Your Elf Bride)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Kaiju No. 8 (path: /mnt/plex/anime/Kaiju No. 8)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Fable (path: /mnt/plex/anime/The Fable)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Spice and Wolf: MERCHANT MEETS THE WISE WOLF (path: /mnt/plex/anime/Spice and Wolf - MERCHANT MEETS THE WISE WOLF)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Gods' Games We Play (path: /mnt/plex/anime/Gods' Games We Play)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: THE NEW GATE (path: /mnt/plex/anime/THE NEW GATE (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Fantasy × Hunter (path: /mnt/plex/anime/Fantasy × Hunter (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Euphoria (US) (path: /mnt/plex/tv/Euphoria)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Galavant (path: /mnt/plex/tv/Galavant)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Married... with Children (path: /mnt/plex/tv/Married... with Children (1987))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Power (path: /mnt/plex/tv/Power (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Silicon Valley (path: /mnt/plex/tv/Silicon Valley (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Son of Zorn (path: /mnt/plex/tv/Son of Zorn (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The 10th Kingdom (path: /mnt/plex/tv/The 10th Kingdom (2000))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Bear (path: /mnt/plex/tv/The Bear (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Drew Carey Show (path: /mnt/plex/tv/The Drew Carey Show (1995))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Gentlemen (path: /mnt/plex/tv/The Gentlemen (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The IT Crowd (path: /mnt/plex/tv/The IT Crowd (2006))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Office (US) (path: /mnt/plex/tv/The Office (US))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Vice Principals (path: /mnt/plex/tv/Vice Principals (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Amazing Digital Circus (path: /mnt/plex/tv/The Amazing Digital Circus (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: American Horror Story (path: /mnt/plex/tv/American Horror Story)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Sword Art Online Alternative: Gun Gale Online (path: /mnt/plex/anime/Sword Art Online Alternative - Gun Gale Online)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Catch-22 (path: /mnt/plex/tv/Catch-22)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Game Changer (path: /mnt/plex/tv/Game Changer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Hazbin Hotel (path: /mnt/plex/tv/Hazbin Hotel (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Lessons in Chemistry (path: /mnt/plex/tv/Lessons in Chemistry (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Make Some Noise (path: /mnt/plex/tv/Make Some Noise)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Pretender (path: /mnt/plex/tv/The Pretender)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: What If…? (path: /mnt/plex/tv/What If)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Billy the Kid (path: /mnt/plex/tv/Billy the Kid)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Shetland (path: /mnt/plex/tv/Shetland)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World (path: /mnt/plex/anime/As a Reincarnated Aristocrat, I'll Use My Appraisal Skill To Rise in the World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Below Deck (path: /mnt/plex/tv/Below Deck)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Umbrella Academy (path: /mnt/plex/tv/The Umbrella Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: New Girl (path: /mnt/plex/tv/New Girl)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Parks and Recreation (path: /mnt/plex/tv/Parks and Recreation)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Below Deck Mediterranean (path: /mnt/plex/tv/Below Deck Mediterranean)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dwight in Shining Armor (path: /mnt/plex/tv/Dwight in Shining Armor)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Schitt's Creek (path: /mnt/plex/tv/Schitt's Creek)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Unstable (path: /mnt/plex/tv/Unstable)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Closer (path: /mnt/plex/tv/The Closer)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Why Does Nobody Remember Me in This World? (path: /mnt/plex/anime/Why Does Nobody Remember Me in This World! (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Code Geass: Rozé of the Recapture (path: /mnt/plex/anime/Code Geass - Rozé of the Recapture)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: 3 Body Problem (path: /mnt/plex/tv/3 Body Problem)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: South Park (path: /mnt/plex/tv/South Park)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible (path: /mnt/plex/anime/The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: I Parry Everything (path: /mnt/plex/anime/I Parry Everything)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: SAKAMOTO DAYS (path: /mnt/plex/anime/SAKAMOTO DAYS (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Healer Who Was Banished From His Party, Is, in Fact, the Strongest (path: /mnt/plex/anime/The Healer who Was Banished From His Party, Is, In Fact, The Strongest)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Bye Bye, Earth (path: /mnt/plex/anime/Bye Bye, Earth (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Good Bye, Dragon Life (path: /mnt/plex/anime/Good Bye, Dragon Life (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Alya Sometimes Hides Her Feelings in Russian (path: /mnt/plex/anime/Alya Sometimes Hides Her Feelings in Russian)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: DOTA: Dragon's Blood (path: /mnt/plex/tv/DOTA - Dragon's Blood (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Pseudo Harem (path: /mnt/plex/anime/Pseudo Harem)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Strike the Blood (path: /mnt/plex/anime/Strike the Blood)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Demon Sword Master of Excalibur Academy (path: /mnt/plex/anime/The Demon Sword Master of Excalibur Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: DEAD DEAD DEMONS DEDEDEDE DESTRUCTION (path: /mnt/plex/anime/DEAD DEAD DEMONS DEDEDEDE DESTRUCTION)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: 2.5 Dimensional Seduction (path: /mnt/plex/anime/2.5 Dimensional Seduction (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Shoresy (path: /mnt/plex/tv/Shoresy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Letterkenny (path: /mnt/plex/tv/Letterkenny)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: DAN DA DAN (path: /mnt/plex/anime/DAN DA DAN (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: 'Tis Time for \"Torture,\" Princess (path: /mnt/plex/anime/'Tis Time for Torture, Princess)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Quality Assurance in Another World (path: /mnt/plex/anime/Quality Assurance in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: SHOSHIMIN: How to Become Ordinary (path: /mnt/plex/anime/SHOSHIMIN - How to Become Ordinary)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Consultant (2023) (path: /mnt/plex/tv/The Consultant (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: No Longer Allowed in Another World (path: /mnt/plex/anime/No Longer Allowed in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: WondLa (path: /mnt/plex/tv/WondLa)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Suicide Squad Isekai (path: /mnt/plex/anime/Suicide Squad Isekai (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Harley and the Davidsons (path: /mnt/plex/tv/Harley and the Davidsons)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Gravity Falls (path: /mnt/plex/tv/Gravity Falls)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Bad Monkey (path: /mnt/plex/tv/Bad Monkey)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Terminator Zero (path: /mnt/plex/tv/Terminator Zero)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Cobra Kai (path: /mnt/plex/tv/Cobra Kai)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Taboo (2017) (path: /mnt/plex/tv/Taboo (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: English Teacher (path: /mnt/plex/tv/English Teacher)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Kevin Can F**k Himself (path: /mnt/plex/tv/Kevin Can F-k Himself)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Shomin Sample (path: /mnt/plex/anime/Shomin Sample)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Extrapolations (path: /mnt/plex/tv/Extrapolations)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: KAOS (path: /mnt/plex/tv/Kaos)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Dragon Dentist (path: /mnt/plex/tv/The Dragon Dentist)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Bucchigiri?! (path: /mnt/plex/anime/Bucchigiri!!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Home Economics (path: /mnt/plex/tv/Home Economics)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Penguin (path: /mnt/plex/tv/The Penguin)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Agatha All Along (path: /mnt/plex/tv/Agatha All Along)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: High Potential (path: /mnt/plex/tv/High Potential)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Nobody Wants This (path: /mnt/plex/tv/Nobody Wants This)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: One More Time (2024) (path: /mnt/plex/tv/One More Time (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Swimming with Sharks (path: /mnt/plex/tv/Swimming with Sharks)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Loner Life in Another World (path: /mnt/plex/anime/Loner Life in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: You are Ms. Servant (path: /mnt/plex/anime/You are Ms. Servant (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Let This Grieving Soul Retire! (path: /mnt/plex/anime/Let This Grieving Soul Retire!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Adam's Sweet Agony (path: /mnt/plex/anime/Adam's Sweet Agony)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Legend of Vox Machina (path: /mnt/plex/tv/The Legend of Vox Machina)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Most Notorious \"Talker\" Runs the World's Greatest Clan (path: /mnt/plex/anime/The Most Notorious Talker Runs the World's Greatest Clan)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Killer Cakes (path: /mnt/plex/tv/Killer Cakes)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: I Left my A-Rank Party to Help My Former Students Reach the Dungeon Depths! (path: /mnt/plex/anime/I Left my A-Rank Party to Help My Former Students Reach the Dungeon Depths!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Journal of the Mysterious Creatures (path: /mnt/plex/tv/The Journal of the Mysterious Creatures (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Below Deck Sailing Yacht (path: /mnt/plex/tv/Below Deck Sailing Yacht)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Wandering Witch: The Journey of Elaina (path: /mnt/plex/anime/Wandering Witch - The Journey of Elaina (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Reincarnation of the Strongest Exorcist in Another World (path: /mnt/plex/anime/The Reincarnation of the Strongest Exorcist in Another World)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Franchise (2024) (path: /mnt/plex/tv/The Franchise (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Lord of the Rings: The Rings of Power (path: /mnt/plex/tv/The Lord of the Rings - The Rings of Power)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Spartacus (path: /mnt/plex/tv/Spartacus)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Citadel: Diana (path: /mnt/plex/tv/Citadel - Diana)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tomb Raider: The Legend of Lara Croft (path: /mnt/plex/tv/Tomb Raider - The Legend of Lara Croft)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Sweetpea (path: /mnt/plex/tv/Sweetpea)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Taskmaster (NZ) (path: /mnt/plex/tv/Taskmaster (NZ))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Taskmaster: Champion of Champions (path: /mnt/plex/tv/Taskmaster - Champion of Champions)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Utopia (AU) (path: /mnt/plex/tv/Utopia (AU))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: PLUTO (path: /mnt/plex/anime/PLUTO (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Scenes From A Marriage (US) (path: /mnt/plex/tv/Scenes from a Marriage (US))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Mecha-Ude: Mechanical Arms (path: /mnt/plex/anime/Mecha-Ude - Mechanical Arms)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Nozo X Kimi (path: /mnt/plex/anime/Nozo X Kimi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Demon Lord 2099 (path: /mnt/plex/anime/Demon Lord 2099 (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Revenger (path: /mnt/plex/anime/Revenger)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Secret Level (path: /mnt/plex/tv/Secret Level)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: A Terrified Teacher at Ghoul School! (path: /mnt/plex/anime/A Terrified Teacher at Ghoul School!)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Ascendance of a Bookworm (path: /mnt/plex/anime/Ascendance of a Bookworm)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Edge of Sleep (path: /mnt/plex/tv/The Edge of Sleep)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Poppa’s House (path: /mnt/plex/tv/Poppa’s House)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Queen's Gambit (path: /mnt/plex/tv/The Queen's Gambit)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Interior Chinatown (path: /mnt/plex/tv/Interior Chinatown)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Mobile Suit Gundam: Iron-Blooded Orphans (path: /mnt/plex/anime/Mobile Suit Gundam - Iron-Blooded Orphans)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Selfie (path: /mnt/plex/tv/Selfie)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Newsroom (2012) (path: /mnt/plex/tv/The Newsroom)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Morning Show (path: /mnt/plex/tv/The Morning Show)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Take (path: /mnt/plex/tv/The Take)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Saving Hope (path: /mnt/plex/tv/Saving Hope)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dungeons & Dragons (path: /mnt/plex/tv/Dungeons & Dragons)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dune: Prophecy (path: /mnt/plex/tv/Dune - Prophecy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Star Wars: Skeleton Crew (path: /mnt/plex/tv/Star Wars - Skeleton Crew (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Time Bandits (path: /mnt/plex/tv/Time Bandits (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: St. Denis Medical (path: /mnt/plex/tv/St. Denis Medical (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Doctor Who (2005) (path: /mnt/plex/tv/Doctor Who (2005))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Eternaut (path: /mnt/plex/tv/The Eternaut)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Arcane (path: /mnt/plex/tv/Arcane (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Giant Beasts of Ars (path: /mnt/plex/anime/Giant Beasts of Ars (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Your Honor (path: /mnt/plex/tv/Your Honor (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Junior Taskmaster (path: /mnt/plex/tv/Junior Taskmaster (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Taskmaster (QC) (path: /mnt/plex/tv/Taskmaster (CA) (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Game Changers (2024) (path: /mnt/plex/tv/Game Changers (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Yellowstone (2018) (path: /mnt/plex/tv/Yellowstone (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Below Deck Down Under (path: /mnt/plex/tv/Below Deck Down Under (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Ludwig (2024) (path: /mnt/plex/tv/Ludwig (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Brilliant Healer's New Life in the Shadows (path: /mnt/plex/anime/The Brilliant Healer's New Life in the Shadows)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: In the Dark (2019) (path: /mnt/plex/tv/In the Dark (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Marvel's The Punisher (path: /mnt/plex/tv/Marvel's The Punisher (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tokyo Override (path: /mnt/plex/tv/Tokyo Override (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Cyberpunk: Edgerunners (path: /mnt/plex/tv/Cyberpunk - Edgerunners (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Man Down (path: /mnt/plex/tv/Man Down (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Hitmen (path: /mnt/plex/tv/Hitmen (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Silo (path: /mnt/plex/tv/Silo (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Landman (path: /mnt/plex/tv/Landman (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Mayor of Kingstown (path: /mnt/plex/tv/Mayor of Kingstown (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Lawmen: Bass Reeves (path: /mnt/plex/tv/Lawmen - Bass Reeves (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Royal Pains (path: /mnt/plex/tv/Royal Pains (2009))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Matlock (2024) (path: /mnt/plex/tv/Matlock (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Continuum (path: /mnt/plex/tv/Continuum (2012))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Trunk (path: /mnt/plex/tv/The Trunk (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Harry Potter: Wizards of Baking (path: /mnt/plex/tv/Harry Potter - Wizards of Baking (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Jentry Chau vs. the Underworld (path: /mnt/plex/tv/Jentry Chau vs. the Underworld (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Hero Inside (path: /mnt/plex/tv/Hero Inside (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Shifting Gears (path: /mnt/plex/tv/Shifting Gears (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Old Man (path: /mnt/plex/tv/The Old Man (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Squid Game (path: /mnt/plex/tv/Squid Game (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Creature Commandos (path: /mnt/plex/tv/Creature Commandos (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Daily Life of a Middle-Aged Online Shopper in Another World (path: /mnt/plex/anime/The Daily Life of a Middle-Aged Online Shopper in Another World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: I May Be a Guild Receptionist, But I'll Solo Any Boss to Clock Out on Time (path: /mnt/plex/anime/I May Be a Guild Receptionist, But I'll Solo Any Boss to Clock Out on Time (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Beheneko: The Elf-Girl's Cat Is Secretly an S-Ranked Monster! (path: /mnt/plex/anime/Beheneko - The Elf-Girl's Cat Is Secretly an S-Ranked Monster! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: I'm Living with an Otaku NEET Kunoichi!? (path: /mnt/plex/anime/I'm Living with an Otaku NEET Kunoichi!! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Yoasobi Gurashi! (path: /mnt/plex/anime/Yoasobi Gurashi! (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: THE RED RANGER Becomes an Adventurer in Another World (path: /mnt/plex/anime/THE RED RANGER Becomes an Adventurer in Another World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Traitors (US) (path: /mnt/plex/tv/The Traitors (US) (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Übel Blatt (path: /mnt/plex/anime/Übel Blatt (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Worst Cooks in America (path: /mnt/plex/tv/Worst Cooks in America (2010))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Originals (path: /mnt/plex/tv/The Originals (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Even Given the Worthless \"Appraiser\" Class, I'm Actually the Strongest (path: /mnt/plex/anime/Even Given the Worthless Appraiser Class, I'm Actually the Strongest (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Studio (2025) (path: /mnt/plex/tv/The Studio (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Chaos Dragon (path: /mnt/plex/anime/Chaos Dragon (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dimension 20's Adventuring Party (path: /mnt/plex/tv/Dimension 20's Adventuring Party)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dirty Laundry (2022) (path: /mnt/plex/tv/Dirty Laundry)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Very Important People (2023) (path: /mnt/plex/tv/Very Important People)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Legendary Hero Is Dead! (path: /mnt/plex/anime/The Legendary Hero Is Dead! (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Yandere Dark Elf: She Chased Me All the Way From Another World! (path: /mnt/plex/anime/Yandere Dark Elf - She Chased Me All the Way From Another World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Fall of Diddy (path: /mnt/plex/tv/The Fall of Diddy (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Suits LA (path: /mnt/plex/tv/Suits LA (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Gen V (path: /mnt/plex/tv/Gen V (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Paradise (2025) (path: /mnt/plex/tv/Paradise (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Divine Gate (path: /mnt/plex/anime/Divine Gate (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Black Sails (path: /mnt/plex/tv/Black Sails (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dirk Gently's Holistic Detective Agency (path: /mnt/plex/tv/Dirk Gently's Holistic Detective Agency (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Pokémon Concierge (path: /mnt/plex/tv/Pokémon Concierge (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Goosebumps (2023) (path: /mnt/plex/tv/Goosebumps (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Adventuring Academy (path: /mnt/plex/tv/Adventuring Academy)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Astra Lost in Space (path: /mnt/plex/anime/Astra Lost in Space (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Banished From the Hero's Party, I Decided To Live a Quiet Life in the Countryside (path: /mnt/plex/anime/Banished from the Hero's Party, I Decided to Live a Quiet Life in the Countryside (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Bofuri: I Don't Want to Get Hurt, so I'll Max Out My Defense (path: /mnt/plex/anime/BOFURI I Don't Want to Get Hurt, so I'll Max Out My Defense. (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Call of the Night (path: /mnt/plex/anime/Call of the Night (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: I'm Quitting Heroing (path: /mnt/plex/anime/I'm Quitting Heroing (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Kemono Michi: Rise Up (path: /mnt/plex/anime/Kemono Michi Rise Up (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Maken-Ki! Battling Venus (path: /mnt/plex/anime/Maken-Ki! Battling Venus (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: My Daughter Left the Nest and Returned an S-Rank Adventurer (path: /mnt/plex/anime/My Daughter Left the Nest and Returned an S-Rank Adventurer (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Nura: Rise of the Yokai Clan (path: /mnt/plex/anime/Nura Rise of the Yokai Clan (2010))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Saga of Tanya the Evil (path: /mnt/plex/anime/Saga of Tanya the Evil (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Summoned to Another World for a Second Time (path: /mnt/plex/anime/Summoned to Another World for a Second Time (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Great Jahy Will Not Be Defeated! (path: /mnt/plex/anime/The Great Jahy Will Not Be Defeated! (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Toilet-bound Hanako-kun (path: /mnt/plex/anime/Toilet-Bound Hanako-kun (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Joran: The Princess of Snow and Blood (path: /mnt/plex/anime/Joran - The Princess of Snow and Blood (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: That Time I Got Reincarnated as a Slime (path: /mnt/plex/anime/That Time I Got Reincarnated as a Slime (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Chillin' in My 30s after Getting Fired from the Demon King's Army (path: /mnt/plex/anime/Chillin' in My 30s after Getting Fired from the Demon King's Army (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: KamiKatsu: Working for God in a Godless World (path: /mnt/plex/anime/KamiKatsu - Working for God in a Godless World (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Our Dating Story: The Experienced You and The Inexperienced Me (path: /mnt/plex/anime/Keikenzumi na Kimi to)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Demon Slayer: Kimetsu no Yaiba (path: /mnt/plex/anime/Demon Slayer - Kimetsu no Yaiba (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Miss Kuroitsu From the Monster Development Department (path: /mnt/plex/anime/Kaijin Kaihatsu-bu no Kuroitsu-san)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Kino's Journey: The Beautiful World (path: /mnt/plex/anime/Kino no Tabi)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Love After World Domination (path: /mnt/plex/anime/Koi wa Sekai Seifuku no Ato de)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: In/Spectre (path: /mnt/plex/anime/Kyokou Suiri)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Dawn of the Witch (path: /mnt/plex/anime/The Dawn of the Witch (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Do You Love Your Mom and Her Two-Hit Multi-Target Attacks? (path: /mnt/plex/anime/Do You Love Your Mom and Her Two-Hit Multi-Target Attacks! (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Rascal Does Not Dream of Bunny Girl Senpai (path: /mnt/plex/anime/Rascal Does Not Dream of Bunny Girl Senpai (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Rising of the Shield Hero (path: /mnt/plex/anime/Tate no Yuusha no Nariagari)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Suppose a Kid From the Last Dungeon Boonies Moved to a Starter Town? (path: /mnt/plex/anime/Tatoeba Last Dungeon)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Genius Prince's Guide to Raising a Nation Out of Debt (path: /mnt/plex/anime/Tensai Ouji no Akaji Kokka Saisei Jutsu)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: I Couldn't Become a Hero, so I Reluctantly Decided To Get a Job (path: /mnt/plex/anime/I Couldn't Become a Hero, so I Reluctantly Decided To Get a Job (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Day of the Jackal (path: /mnt/plex/tv/The Day of the Jackal (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Pokémon (path: /mnt/plex/anime/Pokémon (1997))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Chilling Adventures of Sabrina (path: /mnt/plex/tv/Chilling Adventures of Sabrina (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Mobile Suit Gundam GQuuuuuuX (path: /mnt/plex/anime/Mobile Suit Gundam GQuuuuuuX (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Daredevil: Born Again (path: /mnt/plex/tv/Daredevil - Born Again (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Great (path: /mnt/plex/tv/The Great (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Smartypants (path: /mnt/plex/tv/Smartypants)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Um, Actually... (path: /mnt/plex/tv/Um, Actually)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Winning Time: The Rise of the Lakers Dynasty (path: /mnt/plex/tv/Winning Time - The Rise of the Lakers Dynasty (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: To Be Hero X (path: /mnt/plex/anime/To be Hero X (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Liverspots and Astronots (path: /mnt/plex/tv/Liverspots and Astronots (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Platonic (2023) (path: /mnt/plex/tv/Platonic (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Workaholics (path: /mnt/plex/tv/Workaholics (2011))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: SAS Rogue Heroes (path: /mnt/plex/tv/SAS Rogue Heroes (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Bondsman (path: /mnt/plex/tv/The Bondsman (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Made For Love (path: /mnt/plex/tv/Made For Love (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: I'm the Evil Lord of an Intergalactic Empire! (path: /mnt/plex/anime/I'm the Evil Lord of an Intergalactic Empire! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Workin' Moms (path: /mnt/plex/tv/Workin' Moms (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Lazarus (path: /mnt/plex/anime/Lazarus (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Devil May Cry (2025) (path: /mnt/plex/anime/Devil May Cry (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: From Old Country Bumpkin to Master Swordsman (path: /mnt/plex/anime/From Old Country Bumpkin to Master Swordsman (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tojima Wants to Be a Kamen Rider (path: /mnt/plex/anime/Tojima Tanzaburo Wants to Be a Kamen Rider)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Murderbot (path: /mnt/plex/tv/Murderbot (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Apocalypse Hotel (path: /mnt/plex/anime/Apocalypse Hotel (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Moonrise (path: /mnt/plex/anime/Moonrise (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: WITCH WATCH (path: /mnt/plex/anime/WITCH WATCH (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Government Cheese (path: /mnt/plex/tv/Government Cheese (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Andor (path: /mnt/plex/tv/Andor (2022))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Adults (2025) (path: /mnt/plex/tv/Adults (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Good Lord Bird (path: /mnt/plex/tv/The Good Lord Bird (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Apothecary Diaries (path: /mnt/plex/anime/The Apothecary Diaries (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: From Dusk Till Dawn: The Series (path: /mnt/plex/tv/From Dusk Till Dawn - The Series (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Krypton (path: /mnt/plex/tv/Krypton (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Love, Death & Robots (path: /mnt/plex/tv/Love, Death & Robots (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dorohedoro (path: /mnt/plex/anime/Dorohedoro (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Second Best Hospital in the Galaxy (path: /mnt/plex/tv/The Second Best Hospital in the Galaxy (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Paper (2025) (path: /mnt/plex/tv/The Paper (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Ghosts (2019) (path: /mnt/plex/tv/Ghosts (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Sirens (2025) (path: /mnt/plex/tv/Sirens (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tires (path: /mnt/plex/tv/Tires (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: MobLand (path: /mnt/plex/tv/MobLand (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Terror in Resonance (path: /mnt/plex/anime/Terror in Resonance (2014))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Fallen (2007) (path: /mnt/plex/tv/Fallen (2007))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Fallen (path: /mnt/plex/tv/Fallen (2024))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Love Island USA (path: /mnt/plex/tv/Love Island (US) (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Countdown (2025) (path: /mnt/plex/tv/Countdown (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Parlor Room (path: /mnt/plex/tv/Parlor Room)", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Ironheart (path: /mnt/plex/tv/Ironheart (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dateline NBC (path: /mnt/plex/tv/Dateline NBC (1992))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Gachiakuta (path: /mnt/plex/anime/Gachiakuta (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Sword of the Demon Hunter: Kijin Gentosho (path: /mnt/plex/anime/Sword of the Demon Hunter - Kijin Gentosho (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Life After People (path: /mnt/plex/tv/Life After People (2009))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Vikings (path: /mnt/plex/tv/Vikings (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Detroiters (path: /mnt/plex/tv/Detroiters (2017))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: ZENSHU (path: /mnt/plex/anime/ZENSHU (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Chad Powers (path: /mnt/plex/tv/Chad Powers (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dusk Beyond the End of the World (path: /mnt/plex/anime/Dusk Beyond the End of the World (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: New Saga (path: /mnt/plex/anime/New Saga (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Aristocrat’s Otherworldly Adventure: Serving Gods Who Go Too Far (path: /mnt/plex/anime/The Aristocrat’s Otherworldly Adventure - Serving Gods Who Go Too Far (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Wildemount Wildlings (path: /mnt/plex/tv/Wildemount Wildlings (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Rain (path: /mnt/plex/tv/The Rain (2018))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Chosen (path: /mnt/plex/tv/The Chosen (2019))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Hero Without a Class: Who Even Needs Skills?! (path: /mnt/plex/anime/Hero Without a Class - Who Even Needs Skills!! (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Alien: Earth (path: /mnt/plex/tv/Alien - Earth (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Terminal List: Dark Wolf (path: /mnt/plex/tv/The Terminal List - Dark Wolf (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: First Lady (2025) (path: /mnt/plex/tv/First Lady (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Only Murders in the Building (path: /mnt/plex/tv/Only Murders in the Building (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Stranger Things (path: /mnt/plex/tv/Stranger Things (2016))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Haunted Hotel (path: /mnt/plex/tv/Haunted Hotel (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: House of Guinness (path: /mnt/plex/tv/House of Guinness (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: SANDA (path: /mnt/plex/anime/SANDA (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Critical Role (path: /mnt/plex/tv/Critical Role (2015))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Banshee (path: /mnt/plex/tv/Banshee (2013))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Tatsuki Fujimoto 17-26 (path: /mnt/plex/anime/Tatsuki Fujimoto 17-26 (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: My Hero Academia: Vigilantes (path: /mnt/plex/anime/My Hero Academia - Vigilantes (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Mighty Nein (path: /mnt/plex/tv/Mighty Nein (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Dracula (path: /mnt/plex/tv/Dracula (2020))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: A Knight of the Seven Kingdoms (path: /mnt/plex/tv/A Knight of the Seven Kingdoms (2026))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Case Study of Vanitas (path: /mnt/plex/anime/The Case Study of Vanitas (2021))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: Taylor (path: /mnt/plex/tv/Taylor (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: My Life as Inukai-san's Dog (path: /mnt/plex/anime/My Life as Inukai-san's Dog (2023))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "Checking series: The Forsytes (path: /mnt/plex/tv/The Forsytes (2025))", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 197} +{"timestamp": "2026-01-01T07:19:46Z", "level": "INFO", "message": "File not found: /mnt/plex/tv/Supernatural/Season 7/Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "get_file_info_from_cache", "line": 252} +{"timestamp": "2026-01-01T07:22:14Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:22:16Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:22:16Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:22:16Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 185} +{"timestamp": "2026-01-01T07:22:16Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 186} +{"timestamp": "2026-01-01T07:22:16Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 196} +{"timestamp": "2026-01-01T07:22:16Z", "level": "INFO", "message": "Skipped 149 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 121} +{"timestamp": "2026-01-01T07:22:16Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 125} +{"timestamp": "2026-01-01T07:23:37Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:23:40Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:23:40Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:23:40Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 185} +{"timestamp": "2026-01-01T07:23:40Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 186} +{"timestamp": "2026-01-01T07:23:40Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 196} +{"timestamp": "2026-01-01T07:23:40Z", "level": "INFO", "message": "Fetched 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 208} +{"timestamp": "2026-01-01T07:23:40Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 222} +{"timestamp": "2026-01-01T07:23:40Z", "level": "INFO", "message": "Skipped 149 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 122} +{"timestamp": "2026-01-01T07:23:40Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 126} +{"timestamp": "2026-01-01T07:25:15Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:25:18Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:25:18Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:25:18Z", "level": "WARNING", "message": "Error checking Sonarr/Radarr: 'SonarrRadarrHelper' object has no attribute 'find_series_by_folder'", "module": "process_manager", "funcName": "process_folder", "line": 70} +{"timestamp": "2026-01-01T07:25:18Z", "level": "INFO", "message": "Skipped 149 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 122} +{"timestamp": "2026-01-01T07:25:18Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 126} +{"timestamp": "2026-01-01T07:26:26Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:26:29Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:26:29Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:26:29Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 243} +{"timestamp": "2026-01-01T07:26:29Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 244} +{"timestamp": "2026-01-01T07:26:29Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 254} +{"timestamp": "2026-01-01T07:26:29Z", "level": "INFO", "message": "Fetched 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 266} +{"timestamp": "2026-01-01T07:26:29Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 280} +{"timestamp": "2026-01-01T07:26:29Z", "level": "INFO", "message": "Skipped 149 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 122} +{"timestamp": "2026-01-01T07:26:29Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 126} +{"timestamp": "2026-01-01T07:26:29Z", "level": "INFO", "message": "✓ Found episode: S07E20 - The Girl with the Dungeons and Dragons Tattoo", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 218} +{"timestamp": "2026-01-01T07:28:56Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:28:59Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:28:59Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:28:59Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 311} +{"timestamp": "2026-01-01T07:28:59Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 312} +{"timestamp": "2026-01-01T07:28:59Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 322} +{"timestamp": "2026-01-01T07:28:59Z", "level": "INFO", "message": "Fetched 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 334} +{"timestamp": "2026-01-01T07:28:59Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 348} +{"timestamp": "2026-01-01T07:28:59Z", "level": "INFO", "message": "Skipped 149 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 122} +{"timestamp": "2026-01-01T07:28:59Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 126} +{"timestamp": "2026-01-01T07:28:59Z", "level": "INFO", "message": "✓ Found episode: S07E20 - The Girl with the Dungeons and Dragons Tattoo", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 218} +{"timestamp": "2026-01-01T07:28:59Z", "level": "INFO", "message": "✓ Updated episode S07E20 release group to: CONVERTED", "module": "sonarr_radarr_helper", "funcName": "update_episode_release_group", "line": 288} +{"timestamp": "2026-01-01T07:29:10Z", "level": "INFO", "message": "Copied Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T07:29:10Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T07:29:10Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T07:29:10Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 171} +{"timestamp": "2026-01-01T07:29:12Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T07:29:12Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T07:29:12Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T07:29:12Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T07:29:12Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T07:29:12Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T07:29:12Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T07:29:12Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T07:29:12Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T07:29:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:29:12Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T07:29:12Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:29:12Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T07:29:59Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:30:02Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:30:02Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:30:02Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 311} +{"timestamp": "2026-01-01T07:30:02Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 312} +{"timestamp": "2026-01-01T07:30:02Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 322} +{"timestamp": "2026-01-01T07:30:02Z", "level": "INFO", "message": "Fetched 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 334} +{"timestamp": "2026-01-01T07:30:02Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 348} +{"timestamp": "2026-01-01T07:30:02Z", "level": "INFO", "message": "Skipped 149 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 122} +{"timestamp": "2026-01-01T07:30:02Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 126} +{"timestamp": "2026-01-01T07:30:02Z", "level": "INFO", "message": "✓ Found episode: S07E20 - The Girl with the Dungeons and Dragons Tattoo", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 218} +{"timestamp": "2026-01-01T07:30:02Z", "level": "INFO", "message": "✓ Updated episode S07E20 release group to: CONVERTED", "module": "sonarr_radarr_helper", "funcName": "update_episode_release_group", "line": 288} +{"timestamp": "2026-01-01T07:30:30Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:30:33Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:30:33Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:30:33Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 311} +{"timestamp": "2026-01-01T07:30:33Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 312} +{"timestamp": "2026-01-01T07:30:33Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 322} +{"timestamp": "2026-01-01T07:30:33Z", "level": "INFO", "message": "Fetched 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 334} +{"timestamp": "2026-01-01T07:30:33Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 348} +{"timestamp": "2026-01-01T07:30:33Z", "level": "INFO", "message": "Skipped 149 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 122} +{"timestamp": "2026-01-01T07:30:33Z", "level": "INFO", "message": "Processing: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 126} +{"timestamp": "2026-01-01T07:30:33Z", "level": "INFO", "message": "✓ Found episode: S07E20 - The Girl with the Dungeons and Dragons Tattoo", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 218} +{"timestamp": "2026-01-01T07:30:33Z", "level": "INFO", "message": "✓ Updated episode S07E20 release group to: EHX", "module": "sonarr_radarr_helper", "funcName": "update_episode_release_group", "line": 288} +{"timestamp": "2026-01-01T07:30:45Z", "level": "INFO", "message": "Copied Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T07:30:45Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T07:30:45Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T07:30:45Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 171} +{"timestamp": "2026-01-01T07:30:46Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T07:30:46Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T07:30:46Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T07:30:46Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T07:30:46Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T07:30:46Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T07:30:46Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T07:30:46Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T07:30:46Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T07:30:46Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:30:46Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 257kbps | Action: COPY (preserve) | Target: 257kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T07:30:46Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:30:46Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T07:33:20Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T07:33:20Z", "level": "INFO", "message": " Original Size: 1254.13 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T07:33:20Z", "level": "INFO", "message": " Encoded Size: 550.42 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T07:33:20Z", "level": "INFO", "message": " Reduction: 43.9% of original (56.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T07:33:20Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T07:33:20Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T07:33:25Z", "level": "INFO", "message": "Moved Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 390} +{"timestamp": "2026-01-01T07:33:25Z", "level": "WARNING", "message": "Error during Sonarr/Radarr rename: 'SonarrRadarrHelper' object has no attribute 'get_file_info_from_cache'. Keeping original filename.", "module": "sonarr_radarr_helper", "funcName": "rename_output_file", "line": 658} +{"timestamp": "2026-01-01T07:33:25Z", "level": "INFO", "message": "Applied Sonarr/Radarr naming convention and release group update", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 413} +{"timestamp": "2026-01-01T07:33:27Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 455} +{"timestamp": "2026-01-01T07:33:27Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 456} +{"timestamp": "2026-01-01T07:33:27Z", "level": "INFO", "message": " Size: 1254.13MB → 550.42MB (43.9% of original, 56.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T07:33:27Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T07:33:27Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E20 - The Girl with the Dungeons and Dragons Tattoo x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 464} +{"timestamp": "2026-01-01T07:33:27Z", "level": "INFO", "message": "Processing: Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 126} +{"timestamp": "2026-01-01T07:33:27Z", "level": "INFO", "message": "✓ Found episode: S07E21 - Reading is Fundamental", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 218} +{"timestamp": "2026-01-01T07:33:27Z", "level": "INFO", "message": "✓ Updated episode S07E21 release group to: EHX", "module": "sonarr_radarr_helper", "funcName": "update_episode_release_group", "line": 288} +{"timestamp": "2026-01-01T07:33:41Z", "level": "INFO", "message": "Copied Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T07:33:41Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T07:33:41Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T07:33:41Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 171} +{"timestamp": "2026-01-01T07:33:43Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T07:33:43Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T07:33:43Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T07:33:43Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T07:33:43Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T07:33:43Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T07:33:43Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T07:33:43Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T07:33:43Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T07:33:43Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:33:43Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 257kbps | Action: COPY (preserve) | Target: 257kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T07:33:43Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:33:43Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T07:34:05Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:34:08Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:34:08Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:34:08Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 311} +{"timestamp": "2026-01-01T07:34:08Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 312} +{"timestamp": "2026-01-01T07:34:08Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 322} +{"timestamp": "2026-01-01T07:34:15Z", "level": "INFO", "message": "Fetched 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 348} +{"timestamp": "2026-01-01T07:34:15Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 362} +{"timestamp": "2026-01-01T07:34:15Z", "level": "INFO", "message": "Skipped 150 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 122} +{"timestamp": "2026-01-01T07:34:15Z", "level": "INFO", "message": "Processing: Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 126} +{"timestamp": "2026-01-01T07:34:15Z", "level": "INFO", "message": "✓ Found episode: S07E21 - Reading is Fundamental", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 218} +{"timestamp": "2026-01-01T07:34:15Z", "level": "INFO", "message": "✓ Updated episode S07E21 release group to: EHX", "module": "sonarr_radarr_helper", "funcName": "update_episode_release_group", "line": 288} +{"timestamp": "2026-01-01T07:35:08Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:35:11Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:35:11Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:35:11Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 311} +{"timestamp": "2026-01-01T07:35:11Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 312} +{"timestamp": "2026-01-01T07:35:11Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 322} +{"timestamp": "2026-01-01T07:35:18Z", "level": "INFO", "message": "Fetched 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 348} +{"timestamp": "2026-01-01T07:35:18Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 362} +{"timestamp": "2026-01-01T07:35:18Z", "level": "INFO", "message": "Skipped 150 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 122} +{"timestamp": "2026-01-01T07:35:18Z", "level": "INFO", "message": "Processing: Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 126} +{"timestamp": "2026-01-01T07:35:18Z", "level": "INFO", "message": "✓ Found episode: S07E21 - Reading is Fundamental", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 218} +{"timestamp": "2026-01-01T07:35:18Z", "level": "INFO", "message": "✓ Updated episode S07E21 release group to: EHX", "module": "sonarr_radarr_helper", "funcName": "update_episode_release_group", "line": 288} +{"timestamp": "2026-01-01T07:35:28Z", "level": "INFO", "message": "Copied Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T07:35:29Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T07:35:29Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T07:35:29Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 171} +{"timestamp": "2026-01-01T07:35:30Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T07:35:30Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T07:35:30Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T07:35:30Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T07:35:30Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T07:35:30Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T07:35:30Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T07:35:30Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T07:35:30Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T07:35:30Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:35:30Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 257kbps | Action: COPY (preserve) | Target: 257kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T07:35:30Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:35:30Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T07:37:56Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T07:37:56Z", "level": "INFO", "message": " Original Size: 1190.18 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T07:37:56Z", "level": "INFO", "message": " Encoded Size: 421.40 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T07:37:56Z", "level": "INFO", "message": " Reduction: 35.4% of original (64.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T07:37:56Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T07:37:56Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T07:38:00Z", "level": "INFO", "message": "Moved Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 390} +{"timestamp": "2026-01-01T07:38:00Z", "level": "INFO", "message": "✓ Found episode: S07E21 - Reading is Fundamental", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 218} +{"timestamp": "2026-01-01T07:38:00Z", "level": "WARNING", "message": "Error during Sonarr/Radarr rename: [WinError 183] Cannot create a file when that file already exists: 'P:\\\\tv\\\\Supernatural\\\\Season 7\\\\Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE - [EHX].mkv' -> 'P:\\\\tv\\\\Supernatural\\\\Season 7\\\\Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE.mkv'. Keeping original filename.", "module": "sonarr_radarr_helper", "funcName": "rename_output_file", "line": 672} +{"timestamp": "2026-01-01T07:38:00Z", "level": "INFO", "message": "Applied Sonarr/Radarr naming convention and release group update", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 413} +{"timestamp": "2026-01-01T07:38:01Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 455} +{"timestamp": "2026-01-01T07:38:01Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 456} +{"timestamp": "2026-01-01T07:38:01Z", "level": "INFO", "message": " Size: 1190.18MB → 421.4MB (35.4% of original, 64.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T07:38:01Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T07:38:02Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E21 - Reading is Fundamental x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 464} +{"timestamp": "2026-01-01T07:38:02Z", "level": "INFO", "message": "Processing: Supernatural - S07E22 - There Will Be Blood x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 126} +{"timestamp": "2026-01-01T07:38:02Z", "level": "INFO", "message": "✓ Found episode: S07E22 - There Will Be Blood", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 218} +{"timestamp": "2026-01-01T07:38:02Z", "level": "INFO", "message": "✓ Updated episode S07E22 release group to: EHX", "module": "sonarr_radarr_helper", "funcName": "update_episode_release_group", "line": 288} +{"timestamp": "2026-01-01T07:42:34Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:42:37Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:42:37Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:42:37Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 329} +{"timestamp": "2026-01-01T07:42:37Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 330} +{"timestamp": "2026-01-01T07:42:37Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 340} +{"timestamp": "2026-01-01T07:42:44Z", "level": "INFO", "message": "Fetched 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 366} +{"timestamp": "2026-01-01T07:42:44Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 380} +{"timestamp": "2026-01-01T07:42:44Z", "level": "INFO", "message": "Skipped 151 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 122} +{"timestamp": "2026-01-01T07:42:44Z", "level": "INFO", "message": "Processing: Supernatural - S07E22 - There Will Be Blood x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 126} +{"timestamp": "2026-01-01T07:42:44Z", "level": "INFO", "message": "✓ Found episode by path match: S07E22 - There Will Be Blood", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 221} +{"timestamp": "2026-01-01T07:42:44Z", "level": "INFO", "message": "✓ Updated episode S07E22 release group to: EHX", "module": "sonarr_radarr_helper", "funcName": "update_episode_release_group", "line": 306} +{"timestamp": "2026-01-01T07:42:55Z", "level": "INFO", "message": "Copied Supernatural - S07E22 - There Will Be Blood x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E22 - There Will Be Blood x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T07:42:55Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T07:42:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T07:42:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 171} +{"timestamp": "2026-01-01T07:42:57Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T07:42:57Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T07:42:57Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T07:42:57Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T07:42:57Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T07:42:57Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T07:42:57Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T07:42:57Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T07:42:57Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T07:42:57Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:42:57Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 257kbps | Action: COPY (preserve) | Target: 257kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T07:42:57Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:42:57Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E22 - There Will Be Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T07:45:23Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T07:45:23Z", "level": "INFO", "message": " Original Size: 1220.64 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T07:45:23Z", "level": "INFO", "message": " Encoded Size: 453.02 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T07:45:23Z", "level": "INFO", "message": " Reduction: 37.1% of original (62.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T07:45:23Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T07:45:23Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T07:45:26Z", "level": "INFO", "message": "Moved Supernatural - S07E22 - There Will Be Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E22 - There Will Be Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 390} +{"timestamp": "2026-01-01T07:45:26Z", "level": "INFO", "message": "✓ Found episode by path match: S07E22 - There Will Be Blood", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 221} +{"timestamp": "2026-01-01T07:45:26Z", "level": "INFO", "message": "Destination file already exists, removing: Supernatural - S07E22 - There Will Be Blood x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "rename_output_file", "line": 700} +{"timestamp": "2026-01-01T07:45:27Z", "level": "INFO", "message": "Renamed output file: Supernatural - S07E22 - There Will Be Blood x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E22 - There Will Be Blood x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "rename_output_file", "line": 703} +{"timestamp": "2026-01-01T07:45:27Z", "level": "INFO", "message": "Applied Sonarr/Radarr naming convention and release group update", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 413} +{"timestamp": "2026-01-01T07:45:28Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E22 - There Will Be Blood x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 455} +{"timestamp": "2026-01-01T07:45:28Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 456} +{"timestamp": "2026-01-01T07:45:28Z", "level": "INFO", "message": " Size: 1220.64MB → 453.02MB (37.1% of original, 62.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T07:45:28Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T07:45:28Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S07E22 - There Will Be Blood x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 464} +{"timestamp": "2026-01-01T07:45:28Z", "level": "INFO", "message": "Processing: Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 126} +{"timestamp": "2026-01-01T07:45:28Z", "level": "INFO", "message": "✓ Found episode by path match: S07E23 - Survival of the Fittest", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 221} +{"timestamp": "2026-01-01T07:45:29Z", "level": "INFO", "message": "✓ Updated episode S07E23 release group to: EHX", "module": "sonarr_radarr_helper", "funcName": "update_episode_release_group", "line": 306} +{"timestamp": "2026-01-01T07:45:39Z", "level": "INFO", "message": "Copied Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T07:45:39Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T07:45:39Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T07:45:39Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 171} +{"timestamp": "2026-01-01T07:45:41Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T07:45:41Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T07:45:41Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T07:45:41Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T07:45:41Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T07:45:41Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T07:45:41Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T07:45:41Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T07:45:41Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T07:45:41Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:45:41Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 257kbps | Action: COPY (preserve) | Target: 257kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T07:45:41Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:45:41Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T07:47:32Z", "level": "INFO", "message": "Finding series for: P:\\tv\\Supernatural\\Season 13", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 48} +{"timestamp": "2026-01-01T07:47:32Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural\\Season 13", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 329} +{"timestamp": "2026-01-01T07:47:32Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural/Season 13", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 330} +{"timestamp": "2026-01-01T07:47:32Z", "level": "INFO", "message": "No series found for: /mnt/plex/tv/Supernatural/Season 13", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 402} +{"timestamp": "2026-01-01T07:47:32Z", "level": "ERROR", "message": "Series not found in Sonarr/Radarr", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 52} +{"timestamp": "2026-01-01T07:48:13Z", "level": "INFO", "message": "Finding series for: P:\\tv\\Supernatural\\Season 13", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 48} +{"timestamp": "2026-01-01T07:48:13Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural\\Season 13", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 329} +{"timestamp": "2026-01-01T07:48:13Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural/Season 13", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 330} +{"timestamp": "2026-01-01T07:48:13Z", "level": "INFO", "message": "Stripped season folder, searching for: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 337} +{"timestamp": "2026-01-01T07:48:13Z", "level": "INFO", "message": "No series found for: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 409} +{"timestamp": "2026-01-01T07:48:13Z", "level": "ERROR", "message": "Series not found in Sonarr/Radarr", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 52} +{"timestamp": "2026-01-01T07:48:17Z", "level": "INFO", "message": "Finding series for: P:\\tv\\Supernatural", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 48} +{"timestamp": "2026-01-01T07:48:17Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 329} +{"timestamp": "2026-01-01T07:48:17Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 330} +{"timestamp": "2026-01-01T07:48:17Z", "level": "INFO", "message": "No series found for: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 409} +{"timestamp": "2026-01-01T07:48:17Z", "level": "ERROR", "message": "Series not found in Sonarr/Radarr", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 52} +{"timestamp": "2026-01-01T07:48:35Z", "level": "INFO", "message": "Loading Sonarr/Radarr caches...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 48} +{"timestamp": "2026-01-01T07:48:35Z", "level": "WARNING", "message": "Sonarr API not configured", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 84} +{"timestamp": "2026-01-01T07:48:35Z", "level": "WARNING", "message": "Radarr API not configured", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 128} +{"timestamp": "2026-01-01T07:48:35Z", "level": "INFO", "message": "Finding series for: P:\\tv\\Supernatural", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 53} +{"timestamp": "2026-01-01T07:48:35Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 329} +{"timestamp": "2026-01-01T07:48:35Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 330} +{"timestamp": "2026-01-01T07:48:35Z", "level": "INFO", "message": "No series found for: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 409} +{"timestamp": "2026-01-01T07:48:35Z", "level": "ERROR", "message": "Series not found in Sonarr/Radarr", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 57} +{"timestamp": "2026-01-01T07:48:53Z", "level": "INFO", "message": "Loading Sonarr/Radarr caches...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 48} +{"timestamp": "2026-01-01T07:48:54Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:48:56Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:48:56Z", "level": "INFO", "message": "Finding series for: P:\\tv\\Supernatural", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 53} +{"timestamp": "2026-01-01T07:48:56Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 329} +{"timestamp": "2026-01-01T07:48:56Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 330} +{"timestamp": "2026-01-01T07:48:56Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 347} +{"timestamp": "2026-01-01T07:49:03Z", "level": "INFO", "message": "Fetched 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 373} +{"timestamp": "2026-01-01T07:49:03Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 387} +{"timestamp": "2026-01-01T07:49:03Z", "level": "INFO", "message": "✓ Found SONARR series: Supernatural (ID: 95) - 333 episodes", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 65} +{"timestamp": "2026-01-01T07:49:03Z", "level": "INFO", "message": "Will rename 333 episodes with 2 minute(s) between each", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 66} +{"timestamp": "2026-01-01T07:49:03Z", "level": "INFO", "message": "Starting rolling rename of 333 episodes...\n", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 89} +{"timestamp": "2026-01-01T07:49:03Z", "level": "INFO", "message": "[1/333] Updating S00E01 - Unaired Pilot", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 99} +{"timestamp": "2026-01-01T07:49:03Z", "level": "INFO", "message": " ✓ Release group updated to: EHX", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 106} +{"timestamp": "2026-01-01T07:49:03Z", "level": "INFO", "message": " Waiting 2 minute(s) before next update...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 121} +{"timestamp": "2026-01-01T07:49:46Z", "level": "INFO", "message": "Loading Sonarr/Radarr caches...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 48} +{"timestamp": "2026-01-01T07:49:46Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:49:49Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:49:49Z", "level": "INFO", "message": "Finding series for: P:\\tv\\Supernatural", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 53} +{"timestamp": "2026-01-01T07:49:49Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 329} +{"timestamp": "2026-01-01T07:49:49Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 330} +{"timestamp": "2026-01-01T07:49:49Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 347} +{"timestamp": "2026-01-01T07:49:55Z", "level": "INFO", "message": "Fetched 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 373} +{"timestamp": "2026-01-01T07:49:55Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 387} +{"timestamp": "2026-01-01T07:49:55Z", "level": "INFO", "message": "✓ Found SONARR series: Supernatural (ID: 95) - 333 episodes", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 65} +{"timestamp": "2026-01-01T07:49:55Z", "level": "INFO", "message": "Will rename 333 episodes with 1 minute(s) between each", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 66} +{"timestamp": "2026-01-01T07:49:55Z", "level": "INFO", "message": "Starting rolling rename of 333 episodes...\n", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 89} +{"timestamp": "2026-01-01T07:49:55Z", "level": "INFO", "message": "[1/333] Updating S00E01 - Unaired Pilot", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 99} +{"timestamp": "2026-01-01T07:49:56Z", "level": "INFO", "message": " ✓ Release group updated to: EHX", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 106} +{"timestamp": "2026-01-01T07:49:56Z", "level": "INFO", "message": " Waiting 1 minute(s) before next update...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 121} +{"timestamp": "2026-01-01T07:50:56Z", "level": "INFO", "message": "[2/333] Updating S00E02 - A Very Special Supernatural", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 99} +{"timestamp": "2026-01-01T07:50:56Z", "level": "INFO", "message": " ✓ Release group updated to: EHX", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 106} +{"timestamp": "2026-01-01T07:50:56Z", "level": "INFO", "message": " Waiting 1 minute(s) before next update...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 121} +{"timestamp": "2026-01-01T07:51:07Z", "level": "INFO", "message": "Loading Sonarr/Radarr caches...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 48} +{"timestamp": "2026-01-01T07:51:08Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:51:11Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:51:11Z", "level": "INFO", "message": "Finding series for: P:\\tv\\Supernatural", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 53} +{"timestamp": "2026-01-01T07:51:11Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 329} +{"timestamp": "2026-01-01T07:51:11Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 330} +{"timestamp": "2026-01-01T07:51:11Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 347} +{"timestamp": "2026-01-01T07:51:17Z", "level": "INFO", "message": "Fetched 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 373} +{"timestamp": "2026-01-01T07:51:17Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 387} +{"timestamp": "2026-01-01T07:51:17Z", "level": "INFO", "message": "✓ Found SONARR series: Supernatural (ID: 95) - 333 episodes", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 65} +{"timestamp": "2026-01-01T07:51:17Z", "level": "INFO", "message": "Will rename 333 episodes with 1 minute(s) between each", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 66} +{"timestamp": "2026-01-01T07:51:17Z", "level": "INFO", "message": "Starting rolling rename of 327 episodes...\n", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 96} +{"timestamp": "2026-01-01T07:51:17Z", "level": "INFO", "message": "Renaming 327/327 remaining episodes...\n", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 120} +{"timestamp": "2026-01-01T07:51:17Z", "level": "INFO", "message": "[1/327] Updating S01E01 - Pilot", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 130} +{"timestamp": "2026-01-01T07:51:17Z", "level": "INFO", "message": " ✓ Release group updated to: EHX", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 137} +{"timestamp": "2026-01-01T07:51:17Z", "level": "INFO", "message": " Waiting 1 minute(s) before next update...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 179} +{"timestamp": "2026-01-01T07:52:32Z", "level": "INFO", "message": "Loading Sonarr/Radarr caches...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 49} +{"timestamp": "2026-01-01T07:52:33Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:52:35Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:52:35Z", "level": "INFO", "message": "Finding series for: P:\\tv\\Supernatural", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 54} +{"timestamp": "2026-01-01T07:52:35Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 329} +{"timestamp": "2026-01-01T07:52:35Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 330} +{"timestamp": "2026-01-01T07:52:35Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 347} +{"timestamp": "2026-01-01T07:52:42Z", "level": "INFO", "message": "Fetched 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 373} +{"timestamp": "2026-01-01T07:52:42Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 387} +{"timestamp": "2026-01-01T07:52:42Z", "level": "INFO", "message": "✓ Found SONARR series: Supernatural (ID: 95) - 333 episodes", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 66} +{"timestamp": "2026-01-01T07:52:42Z", "level": "INFO", "message": "Will rename 333 episodes with 1 minute(s) between each", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 67} +{"timestamp": "2026-01-01T07:52:42Z", "level": "INFO", "message": "Filtering to season 13", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 96} +{"timestamp": "2026-01-01T07:52:42Z", "level": "INFO", "message": "Starting rolling rename of 23 episodes...\n", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 102} +{"timestamp": "2026-01-01T07:52:42Z", "level": "INFO", "message": "Found 1 previously completed episodes", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 115} +{"timestamp": "2026-01-01T07:52:42Z", "level": "INFO", "message": "Renaming 23/23 remaining episodes...\n", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 126} +{"timestamp": "2026-01-01T07:52:42Z", "level": "INFO", "message": "[1/23] Updating S13E01 - Lost and Found", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 136} +{"timestamp": "2026-01-01T07:52:42Z", "level": "INFO", "message": " ✓ Release group updated to: EHX", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 143} +{"timestamp": "2026-01-01T07:52:42Z", "level": "INFO", "message": " Waiting 1 minute(s) before next update...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 185} +{"timestamp": "2026-01-01T07:53:42Z", "level": "INFO", "message": "[2/23] Updating S13E02 - The Rising Son", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 136} +{"timestamp": "2026-01-01T07:53:42Z", "level": "INFO", "message": " ✓ Release group updated to: EHX", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 143} +{"timestamp": "2026-01-01T07:53:42Z", "level": "INFO", "message": " Waiting 1 minute(s) before next update...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 185} +{"timestamp": "2026-01-01T07:54:09Z", "level": "INFO", "message": "Loading Sonarr/Radarr caches...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 49} +{"timestamp": "2026-01-01T07:54:09Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:54:12Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:54:12Z", "level": "INFO", "message": "Finding series for: P:\\tv\\Supernatural", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 54} +{"timestamp": "2026-01-01T07:54:12Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 329} +{"timestamp": "2026-01-01T07:54:12Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 330} +{"timestamp": "2026-01-01T07:54:12Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 347} +{"timestamp": "2026-01-01T07:54:19Z", "level": "INFO", "message": "Fetched 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 373} +{"timestamp": "2026-01-01T07:54:19Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 387} +{"timestamp": "2026-01-01T07:54:19Z", "level": "INFO", "message": "✓ Found SONARR series: Supernatural (ID: 95) - 333 episodes", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 66} +{"timestamp": "2026-01-01T07:54:19Z", "level": "INFO", "message": "Will rename 333 episodes with 1 minute(s) between each", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 67} +{"timestamp": "2026-01-01T07:54:19Z", "level": "INFO", "message": "Filtering to season 13", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 96} +{"timestamp": "2026-01-01T07:54:19Z", "level": "INFO", "message": "Starting rolling rename of 23 episodes...\n", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 102} +{"timestamp": "2026-01-01T07:54:19Z", "level": "INFO", "message": "Found 3 previously completed episodes", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 115} +{"timestamp": "2026-01-01T07:54:19Z", "level": "INFO", "message": "Renaming 21/23 remaining episodes...\n", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 126} +{"timestamp": "2026-01-01T07:54:19Z", "level": "INFO", "message": "[1/21] Updating S13E03 - Patience", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 136} +{"timestamp": "2026-01-01T07:54:19Z", "level": "INFO", "message": "Triggered Sonarr rename for episode 6286", "module": "sonarr_radarr_helper", "funcName": "_update_sonarr_episode_release_group", "line": 894} +{"timestamp": "2026-01-01T07:54:19Z", "level": "INFO", "message": " ✓ Release group updated to: EHX", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 143} +{"timestamp": "2026-01-01T07:54:19Z", "level": "INFO", "message": " Waiting 1 minute(s) before next update...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 185} +{"timestamp": "2026-01-01T07:55:19Z", "level": "INFO", "message": "[2/21] Updating S13E04 - The Big Empty", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 136} +{"timestamp": "2026-01-01T07:55:19Z", "level": "INFO", "message": "Triggered Sonarr rename for episode 6287", "module": "sonarr_radarr_helper", "funcName": "_update_sonarr_episode_release_group", "line": 894} +{"timestamp": "2026-01-01T07:55:19Z", "level": "INFO", "message": " ✓ Release group updated to: EHX", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 143} +{"timestamp": "2026-01-01T07:55:19Z", "level": "INFO", "message": " Waiting 1 minute(s) before next update...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 185} +{"timestamp": "2026-01-01T07:56:19Z", "level": "INFO", "message": "[3/21] Updating S13E05 - Advanced Thanatology", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 136} +{"timestamp": "2026-01-01T07:56:19Z", "level": "INFO", "message": "Triggered Sonarr rename for episode 6288", "module": "sonarr_radarr_helper", "funcName": "_update_sonarr_episode_release_group", "line": 894} +{"timestamp": "2026-01-01T07:56:19Z", "level": "INFO", "message": " ✓ Release group updated to: EHX", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 143} +{"timestamp": "2026-01-01T07:56:19Z", "level": "INFO", "message": " Waiting 1 minute(s) before next update...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 185} +{"timestamp": "2026-01-01T07:57:16Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T07:57:18Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T07:57:18Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 65} +{"timestamp": "2026-01-01T07:57:18Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 329} +{"timestamp": "2026-01-01T07:57:18Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 330} +{"timestamp": "2026-01-01T07:57:18Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 347} +{"timestamp": "2026-01-01T07:57:25Z", "level": "INFO", "message": "Fetched 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 373} +{"timestamp": "2026-01-01T07:57:25Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 387} +{"timestamp": "2026-01-01T07:57:25Z", "level": "INFO", "message": "Skipped 151 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 123} +{"timestamp": "2026-01-01T07:57:25Z", "level": "INFO", "message": "Processing: Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T07:57:25Z", "level": "INFO", "message": "✓ Found episode by path match: S07E23 - Survival of the Fittest", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 221} +{"timestamp": "2026-01-01T07:57:25Z", "level": "INFO", "message": "✓ Updated episode S07E23 release group to: EHX", "module": "sonarr_radarr_helper", "funcName": "update_episode_release_group", "line": 306} +{"timestamp": "2026-01-01T07:57:35Z", "level": "INFO", "message": "Copied Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 145} +{"timestamp": "2026-01-01T07:57:36Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T07:57:36Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T07:57:36Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 172} +{"timestamp": "2026-01-01T07:57:37Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T07:57:37Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T07:57:37Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T07:57:37Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T07:57:37Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T07:57:37Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T07:57:37Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T07:57:37Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T07:57:37Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T07:57:37Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:57:37Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T07:57:37Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T07:57:37Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T07:59:51Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T07:59:51Z", "level": "INFO", "message": " Original Size: 1181.16 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T07:59:51Z", "level": "INFO", "message": " Encoded Size: 467.72 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T07:59:51Z", "level": "INFO", "message": " Reduction: 39.6% of original (60.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T07:59:51Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T07:59:51Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T07:59:55Z", "level": "INFO", "message": "Moved Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 391} +{"timestamp": "2026-01-01T07:59:55Z", "level": "INFO", "message": "✓ Found episode by path match: S07E23 - Survival of the Fittest", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 221} +{"timestamp": "2026-01-01T07:59:55Z", "level": "INFO", "message": "Destination file already exists, removing: Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "rename_output_file", "line": 707} +{"timestamp": "2026-01-01T07:59:55Z", "level": "INFO", "message": "Renamed output file: Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE.mkv", "module": "sonarr_radarr_helper", "funcName": "rename_output_file", "line": 710} +{"timestamp": "2026-01-01T07:59:55Z", "level": "INFO", "message": "Applied Sonarr/Radarr naming convention and release group update", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 415} +{"timestamp": "2026-01-01T07:59:55Z", "level": "INFO", "message": "✓ Found episode by path match: S07E23 - Survival of the Fittest", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 221} +{"timestamp": "2026-01-01T07:59:55Z", "level": "INFO", "message": "Triggered Sonarr rename for episode 6168", "module": "sonarr_radarr_helper", "funcName": "_update_sonarr_episode_release_group", "line": 894} +{"timestamp": "2026-01-01T07:59:55Z", "level": "INFO", "message": "Triggered Sonarr rename for episode 6168", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 426} +{"timestamp": "2026-01-01T07:59:57Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 474} +{"timestamp": "2026-01-01T07:59:57Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 475} +{"timestamp": "2026-01-01T07:59:57Z", "level": "INFO", "message": " Size: 1181.16MB → 467.72MB (39.6% of original, 60.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 476} +{"timestamp": "2026-01-01T07:59:57Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 477} +{"timestamp": "2026-01-01T07:59:57Z", "level": "WARNING", "message": "Could not delete files: [WinError 2] The system cannot find the file specified: 'P:\\\\tv\\\\Supernatural\\\\Season 7\\\\Supernatural - S07E23 - Survival of the Fittest x265 AC3 Bluray-1080p HiQVE.mkv'", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 486} +{"timestamp": "2026-01-01T07:59:57Z", "level": "INFO", "message": "Processing: Supernatural - S06E01 - Exile on Main Street x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 127} +{"timestamp": "2026-01-01T07:59:57Z", "level": "INFO", "message": "✓ Found episode by path match: S06E01 - Exile on Main Street", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 221} +{"timestamp": "2026-01-01T07:59:57Z", "level": "INFO", "message": "✓ Updated episode S06E01 release group to: EHX", "module": "sonarr_radarr_helper", "funcName": "update_episode_release_group", "line": 306} +{"timestamp": "2026-01-01T08:03:54Z", "level": "INFO", "message": "Loading Sonarr/Radarr caches...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 49} +{"timestamp": "2026-01-01T08:03:54Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T08:03:57Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T08:03:57Z", "level": "INFO", "message": "Finding series for: P:\\tv\\Supernatural", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 54} +{"timestamp": "2026-01-01T08:03:57Z", "level": "INFO", "message": "Input folder: P:\\tv\\Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 329} +{"timestamp": "2026-01-01T08:03:57Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 330} +{"timestamp": "2026-01-01T08:03:57Z", "level": "INFO", "message": "✓ Found series: Supernatural (ID: 95)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 347} +{"timestamp": "2026-01-01T08:04:03Z", "level": "INFO", "message": "Fetched 333 episodes for Supernatural", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 373} +{"timestamp": "2026-01-01T08:04:03Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 387} +{"timestamp": "2026-01-01T08:04:03Z", "level": "INFO", "message": "✓ Found SONARR series: Supernatural (ID: 95) - 333 episodes", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 66} +{"timestamp": "2026-01-01T08:04:03Z", "level": "INFO", "message": "Will rename 333 episodes with 20 second(s) between each", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 67} +{"timestamp": "2026-01-01T08:04:03Z", "level": "INFO", "message": "Filtering to season 7", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 96} +{"timestamp": "2026-01-01T08:04:03Z", "level": "INFO", "message": "Starting rolling rename of 22 episodes...\n", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 102} +{"timestamp": "2026-01-01T08:04:03Z", "level": "INFO", "message": "Found 3 previously completed episodes", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 115} +{"timestamp": "2026-01-01T08:04:03Z", "level": "INFO", "message": "Starting rolling rename of 22 episodes...\n", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 126} +{"timestamp": "2026-01-01T08:04:03Z", "level": "INFO", "message": "[1/22] Updating S07E01 - Meet the New Boss", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 134} +{"timestamp": "2026-01-01T08:04:03Z", "level": "INFO", "message": "Triggered Sonarr rename for episode 6146", "module": "sonarr_radarr_helper", "funcName": "_update_sonarr_episode_release_group", "line": 894} +{"timestamp": "2026-01-01T08:04:03Z", "level": "INFO", "message": " ✓ Release group updated to: EHX", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 141} +{"timestamp": "2026-01-01T08:04:03Z", "level": "INFO", "message": " Waiting 20 second(s) before next update...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 183} +{"timestamp": "2026-01-01T08:04:23Z", "level": "INFO", "message": "[2/22] Updating S07E02 - Hello, Cruel World", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 134} +{"timestamp": "2026-01-01T08:04:23Z", "level": "INFO", "message": "Triggered Sonarr rename for episode 6147", "module": "sonarr_radarr_helper", "funcName": "_update_sonarr_episode_release_group", "line": 894} +{"timestamp": "2026-01-01T08:04:23Z", "level": "INFO", "message": " ✓ Release group updated to: EHX", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 141} +{"timestamp": "2026-01-01T08:04:23Z", "level": "INFO", "message": " Waiting 20 second(s) before next update...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 183} +{"timestamp": "2026-01-01T08:04:43Z", "level": "INFO", "message": "[3/22] Updating S07E03 - The Girl Next Door", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 134} +{"timestamp": "2026-01-01T08:04:43Z", "level": "INFO", "message": "Triggered Sonarr rename for episode 6148", "module": "sonarr_radarr_helper", "funcName": "_update_sonarr_episode_release_group", "line": 894} +{"timestamp": "2026-01-01T08:04:43Z", "level": "INFO", "message": " ✓ Release group updated to: EHX", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 141} +{"timestamp": "2026-01-01T08:04:43Z", "level": "INFO", "message": " Waiting 20 second(s) before next update...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 183} +{"timestamp": "2026-01-01T08:05:03Z", "level": "INFO", "message": "[4/22] Updating S07E04 - Defending Your Life", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 134} +{"timestamp": "2026-01-01T08:05:03Z", "level": "INFO", "message": "Triggered Sonarr rename for episode 6149", "module": "sonarr_radarr_helper", "funcName": "_update_sonarr_episode_release_group", "line": 894} +{"timestamp": "2026-01-01T08:05:03Z", "level": "INFO", "message": " ✓ Release group updated to: EHX", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 141} +{"timestamp": "2026-01-01T08:05:03Z", "level": "INFO", "message": " Waiting 20 second(s) before next update...", "module": "rolling_rename", "funcName": "rolling_rename_series", "line": 183} +{"timestamp": "2026-01-01T18:03:01Z", "level": "INFO", "message": "Sonarr cache loaded: 731 series", "module": "sonarr_radarr_helper", "funcName": "load_sonarr_cache", "line": 114} +{"timestamp": "2026-01-01T18:03:04Z", "level": "INFO", "message": "Radarr cache loaded: 2867 movies", "module": "sonarr_radarr_helper", "funcName": "load_radarr_cache", "line": 163} +{"timestamp": "2026-01-01T18:03:04Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Fargo (2014) -> P:\\tv\\Fargo (2014)", "module": "main", "funcName": "normalize_input_path", "line": 47} +{"timestamp": "2026-01-01T18:03:04Z", "level": "INFO", "message": "Input folder: P:\\tv\\Fargo (2014)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 329} +{"timestamp": "2026-01-01T18:03:04Z", "level": "INFO", "message": "Converted to: /mnt/plex/tv/Fargo (2014)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 330} +{"timestamp": "2026-01-01T18:03:04Z", "level": "INFO", "message": "✓ Found series: Fargo (ID: 30)", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 347} +{"timestamp": "2026-01-01T18:03:05Z", "level": "INFO", "message": "Fetched 55 episodes for Fargo", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 373} +{"timestamp": "2026-01-01T18:03:05Z", "level": "INFO", "message": "Saved episodes to C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\cache\\temp_episodes.json", "module": "sonarr_radarr_helper", "funcName": "find_series_by_folder", "line": 387} +{"timestamp": "2026-01-01T18:03:05Z", "level": "INFO", "message": "Skipped 14 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 122} +{"timestamp": "2026-01-01T18:03:05Z", "level": "INFO", "message": "Processing: Fargo (2014) - S02E04 - Fear and Trembling (1080p BluRay x265 Silence).mkv", "module": "process_manager", "funcName": "process_folder", "line": 126} +{"timestamp": "2026-01-01T18:03:05Z", "level": "INFO", "message": "✓ Found episode by path match: S02E04 - Fear and Trembling", "module": "sonarr_radarr_helper", "funcName": "find_episode_in_temp_cache", "line": 221} +{"timestamp": "2026-01-01T18:03:05Z", "level": "INFO", "message": "✓ Updated episode S02E04 release group to: EHX", "module": "sonarr_radarr_helper", "funcName": "update_episode_release_group", "line": 306} +{"timestamp": "2026-01-01T18:03:23Z", "level": "INFO", "message": "Copied Fargo (2014) - S02E04 - Fear and Trembling (1080p BluRay x265 Silence).mkv → Fargo (2014) - S02E04 - Fear and Trembling (1080p BluRay x265 Silence).mkv", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T18:03:23Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T18:03:23Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T18:03:23Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 171} +{"timestamp": "2026-01-01T18:03:26Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T18:03:26Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T18:03:26Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T18:03:26Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T18:03:26Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T18:03:26Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T18:03:26Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T18:03:26Z", "level": "INFO", "message": " • CQ Value: 28", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T18:03:26Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T18:03:26Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 592kbps | Action: ENCODE | Target: 448kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T18:03:26Z", "level": "INFO", "message": "Running CQ encode: Fargo (2014) - S02E04 - Fear and Trembling (1080p BluRay x265 Silence) - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T18:09:15Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T18:09:15Z", "level": "INFO", "message": " Original Size: 2063.29 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T18:09:15Z", "level": "INFO", "message": " Encoded Size: 1517.94 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T18:09:15Z", "level": "INFO", "message": " Reduction: 73.6% of original (26.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T18:09:15Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T18:09:15Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T18:09:28Z", "level": "INFO", "message": "Moved Fargo (2014) - S02E04 - Fear and Trembling (1080p BluRay x265 Silence) - [EHX].mkv → Fargo (2014) - S02E04 - Fear and Trembling (1080p BluRay x265 Silence) - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 390} +{"timestamp": "2026-01-01T18:09:28Z", "level": "INFO", "message": "Episode not found in temp cache, skipping rename: Fargo (2014) - S02E04 - Fear and Trembling (1080p BluRay x265 Silence).mkv", "module": "sonarr_radarr_helper", "funcName": "rename_output_file", "line": 689} +{"timestamp": "2026-01-01T18:09:28Z", "level": "INFO", "message": "Applied Sonarr/Radarr naming convention and release group update", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 414} +{"timestamp": "2026-01-01T18:09:31Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Fargo (2014) - S02E04 - Fear and Trembling (1080p BluRay x265 Silence) - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T18:09:31Z", "level": "INFO", "message": " Type: TV | Show: Fargo (2014)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T18:09:31Z", "level": "INFO", "message": " Size: 2063.29MB → 1517.94MB (73.6% of original, 26.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T18:09:31Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T18:09:31Z", "level": "INFO", "message": "Deleted original and processing copy for Fargo (2014) - S02E04 - Fear and Trembling (1080p BluRay x265 Silence).mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T18:09:31Z", "level": "INFO", "message": "Processing: Fargo (2014) - S02E05 - The Gift of the Magi (1080p BluRay x265 Silence).mkv", "module": "process_manager", "funcName": "process_folder", "line": 126} +{"timestamp": "2026-01-01T18:10:01Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Fargo (2014) -> P:\\tv\\Fargo (2014)", "module": "main", "funcName": "normalize_input_path", "line": 46} +{"timestamp": "2026-01-01T18:10:01Z", "level": "INFO", "message": "Skipped 15 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T18:10:01Z", "level": "INFO", "message": "Processing: Fargo (2014) - S02E05 - The Gift of the Magi (1080p BluRay x265 Silence).mkv", "module": "process_manager", "funcName": "process_folder", "line": 108} +{"timestamp": "2026-01-01T18:10:12Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Fargo (2014) -> P:\\tv\\Fargo (2014)", "module": "main", "funcName": "normalize_input_path", "line": 46} +{"timestamp": "2026-01-01T18:10:12Z", "level": "INFO", "message": "Skipped 15 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T18:10:12Z", "level": "INFO", "message": "Processing: Fargo (2014) - S02E05 - The Gift of the Magi (1080p BluRay x265 Silence).mkv", "module": "process_manager", "funcName": "process_folder", "line": 108} +{"timestamp": "2026-01-01T18:10:44Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Fargo (2014) -> P:\\tv\\Fargo (2014)", "module": "main", "funcName": "normalize_input_path", "line": 46} +{"timestamp": "2026-01-01T18:10:44Z", "level": "INFO", "message": "Skipped 15 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 104} +{"timestamp": "2026-01-01T18:10:44Z", "level": "INFO", "message": "Processing: Fargo (2014) - S02E05 - The Gift of the Magi (1080p BluRay x265 Silence).mkv", "module": "process_manager", "funcName": "process_folder", "line": 108} +{"timestamp": "2026-01-01T18:11:02Z", "level": "INFO", "message": "Copied Fargo (2014) - S02E05 - The Gift of the Magi (1080p BluRay x265 Silence).mkv → Fargo (2014) - S02E05 - The Gift of the Magi (1080p BluRay x265 Silence).mkv", "module": "process_manager", "funcName": "process_folder", "line": 113} +{"timestamp": "2026-01-01T18:11:02Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T18:11:02Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T18:11:02Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 140} +{"timestamp": "2026-01-01T18:11:05Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T18:11:05Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T18:11:05Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T18:11:05Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T18:11:05Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T18:11:05Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T18:11:05Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T18:11:05Z", "level": "INFO", "message": " • CQ Value: 28", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T18:11:05Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T18:11:05Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 667kbps | Action: ENCODE | Target: 448kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T18:11:05Z", "level": "INFO", "message": "Running CQ encode: Fargo (2014) - S02E05 - The Gift of the Magi (1080p BluRay x265 Silence) - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T18:15:03Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/The Office (US) -> P:\\tv\\The Office (US)", "module": "main", "funcName": "normalize_input_path", "line": 46} +{"timestamp": "2026-01-01T18:15:03Z", "level": "INFO", "message": "Processing: The Office (US) - S08E04 - Garden Party x265 AAC Bluray-1080p Silence.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T18:15:10Z", "level": "INFO", "message": "Copied The Office (US) - S08E04 - Garden Party x265 AAC Bluray-1080p Silence.mkv → The Office (US) - S08E04 - Garden Party x265 AAC Bluray-1080p Silence.mkv", "module": "process_manager", "funcName": "process_folder", "line": 114} +{"timestamp": "2026-01-01T18:15:10Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T18:15:10Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T18:15:10Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 141} +{"timestamp": "2026-01-01T18:15:11Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T18:15:11Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T18:15:11Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T18:15:11Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T18:15:11Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T18:15:11Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T18:15:11Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T18:15:11Z", "level": "INFO", "message": " • CQ Value: 28", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T18:15:11Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T18:15:11Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 439kbps | Action: ENCODE | Target: 384kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T18:15:11Z", "level": "INFO", "message": "Running CQ encode: The Office (US) - S08E04 - Garden Party x265 AAC Bluray-1080p Silence - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T18:17:15Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T18:17:15Z", "level": "INFO", "message": " Original Size: 706.61 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T18:17:15Z", "level": "INFO", "message": " Encoded Size: 863.32 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T18:17:15Z", "level": "INFO", "message": " Reduction: 122.2% of original (-22.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T18:17:15Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T18:17:15Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T18:17:15Z", "level": "WARNING", "message": "Could not delete temp output The Office (US) - S08E04 - Garden Party x265 AAC Bluray-1080p Silence - [EHX].mkv: [WinError 32] The process cannot access the file because it is being used by another process: 'C:\\\\Users\\\\Tyler\\\\Documents\\\\GitHub\\\\conversion_project\\\\processing\\\\The Office (US) - S08E04 - Garden Party x265 AAC Bluray-1080p Silence - [EHX].mkv'", "module": "process_manager", "funcName": "_cleanup_temp_files", "line": 34} +{"timestamp": "2026-01-01T18:17:15Z", "level": "INFO", "message": "Processing: The Office (US) - S03E13 - The Return x265 AAC WEBDL-1080p Silence.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T18:17:23Z", "level": "INFO", "message": "Copied The Office (US) - S03E13 - The Return x265 AAC WEBDL-1080p Silence.mkv → The Office (US) - S03E13 - The Return x265 AAC WEBDL-1080p Silence.mkv", "module": "process_manager", "funcName": "process_folder", "line": 114} +{"timestamp": "2026-01-01T18:17:23Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T18:17:23Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T18:17:23Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 141} +{"timestamp": "2026-01-01T18:18:02Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Fargo (2014) -> P:\\tv\\Fargo (2014)", "module": "main", "funcName": "normalize_input_path", "line": 46} +{"timestamp": "2026-01-01T18:18:02Z", "level": "INFO", "message": "Skipped 15 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 105} +{"timestamp": "2026-01-01T18:18:02Z", "level": "INFO", "message": "Processing: Fargo (2014) - S02E05 - The Gift of the Magi (1080p BluRay x265 Silence).mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T18:18:31Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Fargo (2014) -> P:\\tv\\Fargo (2014)", "module": "main", "funcName": "normalize_input_path", "line": 46} +{"timestamp": "2026-01-01T18:18:31Z", "level": "INFO", "message": "Skipped 15 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 105} +{"timestamp": "2026-01-01T18:18:31Z", "level": "INFO", "message": "Processing: Fargo (2014) - S02E05 - The Gift of the Magi (1080p BluRay x265 Silence).mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T18:18:50Z", "level": "INFO", "message": "Copied Fargo (2014) - S02E05 - The Gift of the Magi (1080p BluRay x265 Silence).mkv → Fargo (2014) - S02E05 - The Gift of the Magi (1080p BluRay x265 Silence).mkv", "module": "process_manager", "funcName": "process_folder", "line": 114} +{"timestamp": "2026-01-01T18:18:50Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T18:18:50Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T18:18:50Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 141} +{"timestamp": "2026-01-01T18:18:52Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T18:18:52Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T18:18:52Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T18:18:52Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T18:18:52Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T18:18:52Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T18:18:52Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T18:18:52Z", "level": "INFO", "message": " • CQ Value: 30", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T18:18:52Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T18:18:52Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 663kbps | Action: ENCODE | Target: 448kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T18:18:52Z", "level": "INFO", "message": "Running CQ encode: Fargo (2014) - S02E05 - The Gift of the Magi (1080p BluRay x265 Silence) - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T18:20:17Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/The Office (US) -> P:\\tv\\The Office (US)", "module": "main", "funcName": "normalize_input_path", "line": 46} +{"timestamp": "2026-01-01T18:20:17Z", "level": "INFO", "message": "Processing: The Office (US) - S08E04 - Garden Party x265 AAC Bluray-1080p Silence.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T18:20:23Z", "level": "INFO", "message": "Copied The Office (US) - S08E04 - Garden Party x265 AAC Bluray-1080p Silence.mkv → The Office (US) - S08E04 - Garden Party x265 AAC Bluray-1080p Silence.mkv", "module": "process_manager", "funcName": "process_folder", "line": 114} +{"timestamp": "2026-01-01T18:20:23Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T18:20:23Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T18:20:23Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 141} +{"timestamp": "2026-01-01T18:20:24Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T18:20:24Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T18:20:24Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T18:20:24Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T18:20:24Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T18:20:24Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T18:20:24Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T18:20:24Z", "level": "INFO", "message": " • CQ Value: 30", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T18:20:24Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T18:20:24Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 437kbps | Action: ENCODE | Target: 384kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T18:20:24Z", "level": "INFO", "message": "Running CQ encode: The Office (US) - S08E04 - Garden Party x265 AAC Bluray-1080p Silence - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T18:22:48Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T18:22:48Z", "level": "INFO", "message": " Original Size: 706.61 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T18:22:48Z", "level": "INFO", "message": " Encoded Size: 715.82 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T18:22:48Z", "level": "INFO", "message": " Reduction: 101.3% of original (-1.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T18:22:48Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T18:22:48Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T18:22:49Z", "level": "INFO", "message": "Processing: The Office (US) - S03E13 - The Return x265 AAC WEBDL-1080p Silence.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T18:23:54Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Supernatural -> P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 46} +{"timestamp": "2026-01-01T18:23:54Z", "level": "INFO", "message": "Skipped 152 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 105} +{"timestamp": "2026-01-01T18:23:54Z", "level": "INFO", "message": "Processing: Supernatural - S06E01 - Exile on Main Street x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T18:24:05Z", "level": "INFO", "message": "Copied Supernatural - S06E01 - Exile on Main Street x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E01 - Exile on Main Street x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 114} +{"timestamp": "2026-01-01T18:24:05Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T18:24:05Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T18:24:05Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 141} +{"timestamp": "2026-01-01T18:24:06Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T18:24:06Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T18:24:06Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T18:24:06Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T18:24:06Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T18:24:06Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T18:24:06Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T18:24:06Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T18:24:06Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T18:24:06Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T18:24:06Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 257kbps | Action: COPY (preserve) | Target: 257kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T18:24:06Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T18:24:06Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E01 - Exile on Main Street x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T18:26:30Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T18:26:30Z", "level": "INFO", "message": " Original Size: 1216.10 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T18:26:30Z", "level": "INFO", "message": " Encoded Size: 461.66 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T18:26:30Z", "level": "INFO", "message": " Reduction: 38.0% of original (62.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T18:26:30Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T18:26:30Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T18:26:34Z", "level": "INFO", "message": "Moved Supernatural - S06E01 - Exile on Main Street x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E01 - Exile on Main Street x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 384} +{"timestamp": "2026-01-01T18:26:34Z", "level": "INFO", "message": "Tagged file with [EHX]: Supernatural - S06E01 - Exile on Main Street x265 AC3 Bluray-1080p HiQVE - [EHX] - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 394} +{"timestamp": "2026-01-01T18:26:36Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E01 - Exile on Main Street x265 AC3 Bluray-1080p HiQVE - [EHX] - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 434} +{"timestamp": "2026-01-01T18:26:36Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 435} +{"timestamp": "2026-01-01T18:26:36Z", "level": "INFO", "message": " Size: 1216.1MB → 461.66MB (38.0% of original, 62.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 436} +{"timestamp": "2026-01-01T18:26:36Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 437} +{"timestamp": "2026-01-01T18:26:36Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E01 - Exile on Main Street x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 443} +{"timestamp": "2026-01-01T18:26:36Z", "level": "INFO", "message": "Processing: Supernatural - S06E02 - Two and a Half Men x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T18:26:53Z", "level": "INFO", "message": "Copied Supernatural - S06E02 - Two and a Half Men x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E02 - Two and a Half Men x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 114} +{"timestamp": "2026-01-01T18:26:53Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T18:26:53Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T18:26:53Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 141} +{"timestamp": "2026-01-01T18:26:54Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T18:26:54Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T18:26:54Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T18:26:54Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T18:26:54Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T18:26:54Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T18:26:54Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T18:26:54Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T18:26:54Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T18:26:54Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T18:26:54Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T18:26:54Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T18:26:54Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E02 - Two and a Half Men x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T18:29:18Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T18:29:18Z", "level": "INFO", "message": " Original Size: 1222.62 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T18:29:18Z", "level": "INFO", "message": " Encoded Size: 505.86 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T18:29:18Z", "level": "INFO", "message": " Reduction: 41.4% of original (58.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T18:29:18Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T18:29:18Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T18:29:22Z", "level": "INFO", "message": "Moved Supernatural - S06E02 - Two and a Half Men x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E02 - Two and a Half Men x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 384} +{"timestamp": "2026-01-01T18:29:22Z", "level": "INFO", "message": "Tagged file with [EHX]: Supernatural - S06E02 - Two and a Half Men x265 AC3 Bluray-1080p HiQVE - [EHX] - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 394} +{"timestamp": "2026-01-01T18:29:23Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E02 - Two and a Half Men x265 AC3 Bluray-1080p HiQVE - [EHX] - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 434} +{"timestamp": "2026-01-01T18:29:23Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 435} +{"timestamp": "2026-01-01T18:29:23Z", "level": "INFO", "message": " Size: 1222.62MB → 505.86MB (41.4% of original, 58.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 436} +{"timestamp": "2026-01-01T18:29:23Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 437} +{"timestamp": "2026-01-01T18:29:24Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E02 - Two and a Half Men x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 443} +{"timestamp": "2026-01-01T18:29:24Z", "level": "INFO", "message": "Processing: Supernatural - S06E03 - The Third Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T18:29:42Z", "level": "INFO", "message": "Copied Supernatural - S06E03 - The Third Man x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E03 - The Third Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 114} +{"timestamp": "2026-01-01T18:29:42Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T18:29:42Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T18:29:42Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 141} +{"timestamp": "2026-01-01T18:29:43Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T18:29:43Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T18:29:43Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T18:29:43Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T18:29:43Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T18:29:43Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T18:29:43Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T18:29:43Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T18:29:43Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T18:29:43Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T18:29:43Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T18:29:43Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T18:29:43Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E03 - The Third Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T18:32:05Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 107} +{"timestamp": "2026-01-01T18:32:05Z", "level": "INFO", "message": " Original Size: 1204.98 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 108} +{"timestamp": "2026-01-01T18:32:05Z", "level": "INFO", "message": " Encoded Size: 485.43 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 109} +{"timestamp": "2026-01-01T18:32:05Z", "level": "INFO", "message": " Reduction: 40.3% of original (59.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 110} +{"timestamp": "2026-01-01T18:32:05Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 111} +{"timestamp": "2026-01-01T18:32:05Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 112} +{"timestamp": "2026-01-01T18:32:09Z", "level": "INFO", "message": "Moved Supernatural - S06E03 - The Third Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E03 - The Third Man x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 384} +{"timestamp": "2026-01-01T18:32:09Z", "level": "INFO", "message": "Tagged file with [EHX]: Supernatural - S06E03 - The Third Man x265 AC3 Bluray-1080p HiQVE - [EHX] - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 394} +{"timestamp": "2026-01-01T18:32:10Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E03 - The Third Man x265 AC3 Bluray-1080p HiQVE - [EHX] - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 434} +{"timestamp": "2026-01-01T18:32:10Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 435} +{"timestamp": "2026-01-01T18:32:10Z", "level": "INFO", "message": " Size: 1204.98MB → 485.43MB (40.3% of original, 59.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 436} +{"timestamp": "2026-01-01T18:32:10Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 437} +{"timestamp": "2026-01-01T18:32:11Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E03 - The Third Man x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 443} +{"timestamp": "2026-01-01T18:32:11Z", "level": "INFO", "message": "Processing: Supernatural - S06E04 - Weekend at Bobby's x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T18:32:25Z", "level": "INFO", "message": "Copied Supernatural - S06E04 - Weekend at Bobby's x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E04 - Weekend at Bobby's x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 114} +{"timestamp": "2026-01-01T18:32:25Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T18:32:25Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T18:32:25Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 141} +{"timestamp": "2026-01-01T18:32:27Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T18:32:27Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T18:32:27Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T18:32:27Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T18:32:27Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T18:32:27Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T18:32:27Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T18:32:27Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T18:32:27Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T18:32:27Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T18:32:27Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 257kbps | Action: COPY (preserve) | Target: 257kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T18:32:27Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T18:32:27Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E04 - Weekend at Bobby's x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 98} +{"timestamp": "2026-01-01T18:34:06Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Dirty Laundry\\Season 3", "module": "main", "funcName": "normalize_input_path", "line": 64} +{"timestamp": "2026-01-01T18:34:06Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 109} +{"timestamp": "2026-01-01T18:34:20Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4 → Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 114} +{"timestamp": "2026-01-01T18:34:20Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T18:34:20Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T18:34:20Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 153} +{"timestamp": "2026-01-01T18:34:21Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T18:34:21Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T18:34:21Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T18:34:21Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T18:34:21Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T18:34:21Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T18:34:21Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T18:34:21Z", "level": "INFO", "message": " • CQ Value: 28", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T18:34:21Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T18:34:21Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 253kbps | Action: ENCODE | Target: 192kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T18:34:21Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex? - [EHX].mp4", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 119} +{"timestamp": "2026-01-01T18:36:52Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 128} +{"timestamp": "2026-01-01T18:36:52Z", "level": "INFO", "message": " Original Size: 1541.33 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 129} +{"timestamp": "2026-01-01T18:36:52Z", "level": "INFO", "message": " Encoded Size: 1014.09 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 130} +{"timestamp": "2026-01-01T18:36:52Z", "level": "INFO", "message": " Reduction: 65.8% of original (34.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 131} +{"timestamp": "2026-01-01T18:36:52Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 132} +{"timestamp": "2026-01-01T18:36:52Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T18:36:52Z", "level": "INFO", "message": "TEST MODE - File: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4 | Ratio: 65.8% | Method: CQ", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 395} +{"timestamp": "2026-01-01T18:36:52Z", "level": "INFO", "message": "Batch processing complete", "module": "process_manager", "funcName": "process_folder", "line": 372} +{"timestamp": "2026-01-01T18:40:29Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Dirty Laundry\\Season 3", "module": "main", "funcName": "normalize_input_path", "line": 64} +{"timestamp": "2026-01-01T18:40:29Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T18:40:42Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4 → Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T18:40:42Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T18:40:42Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T18:40:42Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T18:40:42Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T18:40:44Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T18:40:44Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T18:40:44Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T18:40:44Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T18:40:44Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T18:40:44Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T18:40:44Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T18:40:44Z", "level": "INFO", "message": " • CQ Value: 28", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T18:40:44Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T18:40:44Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 254kbps | Action: ENCODE | Target: 192kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T18:40:44Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex? - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T18:43:27Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T18:43:27Z", "level": "INFO", "message": " Original Size: 1541.33 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T18:43:27Z", "level": "INFO", "message": " Encoded Size: 1014.17 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T18:43:27Z", "level": "INFO", "message": " Reduction: 65.8% of original (34.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T18:43:27Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T18:43:27Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T18:43:27Z", "level": "INFO", "message": "TEST MODE - File: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4 | Ratio: 65.8% | Method: CQ", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 410} +{"timestamp": "2026-01-01T18:43:27Z", "level": "INFO", "message": "Batch processing complete", "module": "process_manager", "funcName": "process_folder", "line": 387} +{"timestamp": "2026-01-01T18:44:15Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Dirty Laundry\\Season 3", "module": "main", "funcName": "normalize_input_path", "line": 64} +{"timestamp": "2026-01-01T18:44:15Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T18:44:28Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4 → Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T18:44:28Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T18:44:28Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T18:44:28Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T18:44:28Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T18:44:30Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T18:44:30Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T18:44:30Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T18:44:30Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T18:44:30Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T18:44:30Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T18:44:30Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T18:44:30Z", "level": "INFO", "message": " • CQ Value: 30", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T18:44:30Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T18:44:30Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 255kbps | Action: ENCODE | Target: 192kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T18:44:30Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex? - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T18:47:03Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T18:47:03Z", "level": "INFO", "message": " Original Size: 1541.33 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T18:47:03Z", "level": "INFO", "message": " Encoded Size: 826.67 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T18:47:03Z", "level": "INFO", "message": " Reduction: 53.6% of original (46.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T18:47:03Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T18:47:03Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T18:47:03Z", "level": "INFO", "message": "TEST MODE - File: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4 | Ratio: 53.6% | Method: CQ", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 410} +{"timestamp": "2026-01-01T18:47:03Z", "level": "INFO", "message": "Batch processing complete", "module": "process_manager", "funcName": "process_folder", "line": 387} +{"timestamp": "2026-01-01T18:56:26Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Dirty Laundry\\Season 3", "module": "main", "funcName": "normalize_input_path", "line": 64} +{"timestamp": "2026-01-01T18:56:26Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T18:56:40Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4 → Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T18:56:40Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T18:56:40Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T18:56:40Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T18:56:40Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T18:56:41Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T18:56:41Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T18:56:41Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T18:56:41Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T18:56:41Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T18:56:41Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T18:56:41Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T18:56:41Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T18:56:41Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T18:56:41Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 255kbps | Action: ENCODE | Target: 192kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T18:56:41Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex? - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T18:59:26Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T18:59:26Z", "level": "INFO", "message": " Original Size: 1541.33 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T18:59:26Z", "level": "INFO", "message": " Encoded Size: 681.76 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T18:59:26Z", "level": "INFO", "message": " Reduction: 44.2% of original (55.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T18:59:26Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T18:59:26Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T18:59:26Z", "level": "INFO", "message": "TEST MODE - File: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4 | Ratio: 44.2% | Method: CQ", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 410} +{"timestamp": "2026-01-01T18:59:26Z", "level": "INFO", "message": "Batch processing complete", "module": "process_manager", "funcName": "process_folder", "line": 387} +{"timestamp": "2026-01-01T19:01:42Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Dirty Laundry", "module": "main", "funcName": "normalize_input_path", "line": 64} +{"timestamp": "2026-01-01T19:01:42Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:01:55Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4 → Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:01:55Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T19:01:55Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:01:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:01:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:01:57Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:01:57Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:01:57Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:01:57Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:01:57Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:01:57Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:01:57Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:01:57Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:01:57Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:01:57Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 253kbps | Action: ENCODE | Target: 192kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:01:57Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex? - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:04:40Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:04:40Z", "level": "INFO", "message": " Original Size: 1541.33 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:04:40Z", "level": "INFO", "message": " Encoded Size: 681.76 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:04:40Z", "level": "INFO", "message": " Reduction: 44.2% of original (55.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:04:40Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:04:40Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:04:46Z", "level": "INFO", "message": "Moved Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex? - [EHX].mkv → Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 416} +{"timestamp": "2026-01-01T19:04:46Z", "level": "INFO", "message": "Tagged file with [EHX]: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex? - [EHX] - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 426} +{"timestamp": "2026-01-01T19:04:48Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex? - [EHX] - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:04:48Z", "level": "INFO", "message": " Type: TV | Show: Dirty Laundry", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 467} +{"timestamp": "2026-01-01T19:04:48Z", "level": "INFO", "message": " Size: 1541.33MB → 681.76MB (44.2% of original, 55.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 468} +{"timestamp": "2026-01-01T19:04:48Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 469} +{"timestamp": "2026-01-01T19:04:48Z", "level": "INFO", "message": "Deleted original and processing copy for Dirty Laundry - S03E01 - Who Threw Pretzels at a Couple Having Sex?.mp4", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 475} +{"timestamp": "2026-01-01T19:04:48Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E02 - Who Got High and Reenacted a Concert Using Eggs?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:05:13Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E02 - Who Got High and Reenacted a Concert Using Eggs?.mp4 → Dirty Laundry - S03E02 - Who Got High and Reenacted a Concert Using Eggs?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:05:13Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E02 - Who Got High and Reenacted a Concert Using Eggs?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T19:05:13Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:05:13Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:05:13Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:05:15Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:05:15Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:05:15Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:05:15Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:05:15Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:05:15Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:05:15Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:05:15Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:05:15Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:05:15Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 255kbps | Action: ENCODE | Target: 192kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:05:15Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E02 - Who Got High and Reenacted a Concert Using Eggs? - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:08:04Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:08:04Z", "level": "INFO", "message": " Original Size: 1758.32 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:08:04Z", "level": "INFO", "message": " Encoded Size: 816.99 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:08:04Z", "level": "INFO", "message": " Reduction: 46.5% of original (53.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:08:04Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:08:04Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:08:11Z", "level": "INFO", "message": "Moved Dirty Laundry - S03E02 - Who Got High and Reenacted a Concert Using Eggs? - [EHX].mkv → Dirty Laundry - S03E02 - Who Got High and Reenacted a Concert Using Eggs? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 416} +{"timestamp": "2026-01-01T19:08:11Z", "level": "INFO", "message": "Tagged file with [EHX]: Dirty Laundry - S03E02 - Who Got High and Reenacted a Concert Using Eggs? - [EHX] - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 426} +{"timestamp": "2026-01-01T19:08:13Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Dirty Laundry - S03E02 - Who Got High and Reenacted a Concert Using Eggs? - [EHX] - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:08:13Z", "level": "INFO", "message": " Type: TV | Show: Dirty Laundry", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 467} +{"timestamp": "2026-01-01T19:08:13Z", "level": "INFO", "message": " Size: 1758.32MB → 816.99MB (46.5% of original, 53.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 468} +{"timestamp": "2026-01-01T19:08:13Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 469} +{"timestamp": "2026-01-01T19:08:13Z", "level": "INFO", "message": "Deleted original and processing copy for Dirty Laundry - S03E02 - Who Got High and Reenacted a Concert Using Eggs?.mp4", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 475} +{"timestamp": "2026-01-01T19:08:13Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E03 - Who Came Out to Their High School Girlfriend Via Jesus Christ?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:08:31Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E03 - Who Came Out to Their High School Girlfriend Via Jesus Christ?.mp4 → Dirty Laundry - S03E03 - Who Came Out to Their High School Girlfriend Via Jesus Christ?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:08:31Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E03 - Who Came Out to Their High School Girlfriend Via Jesus Christ?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T19:08:31Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:08:31Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:08:31Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:12:35Z", "level": "INFO", "message": "Using path as-is: P:\\tv\\Dirty Laundry", "module": "main", "funcName": "normalize_input_path", "line": 64} +{"timestamp": "2026-01-01T19:12:35Z", "level": "INFO", "message": "Skipped 2 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T19:12:35Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E03 - Who Came Out to Their High School Girlfriend Via Jesus Christ?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:12:50Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E03 - Who Came Out to Their High School Girlfriend Via Jesus Christ?.mp4 → Dirty Laundry - S03E03 - Who Came Out to Their High School Girlfriend Via Jesus Christ?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:12:50Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E03 - Who Came Out to Their High School Girlfriend Via Jesus Christ?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T19:12:50Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:12:50Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:12:50Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:12:52Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:12:52Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:12:52Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:12:52Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:12:52Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:12:52Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:12:52Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:12:52Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:12:52Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:12:52Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 254kbps | Action: ENCODE | Target: 192kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:12:52Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E03 - Who Came Out to Their High School Girlfriend Via Jesus Christ? - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:15:46Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:15:46Z", "level": "INFO", "message": " Original Size: 1790.83 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:15:46Z", "level": "INFO", "message": " Encoded Size: 1009.79 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:15:46Z", "level": "INFO", "message": " Reduction: 56.4% of original (43.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:15:46Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:15:46Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:15:55Z", "level": "INFO", "message": "Moved Dirty Laundry - S03E03 - Who Came Out to Their High School Girlfriend Via Jesus Christ? - [EHX].mkv → Dirty Laundry - S03E03 - Who Came Out to Their High School Girlfriend Via Jesus Christ? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:15:56Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Dirty Laundry - S03E03 - Who Came Out to Their High School Girlfriend Via Jesus Christ? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:15:56Z", "level": "INFO", "message": " Type: TV | Show: Dirty Laundry", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:15:56Z", "level": "INFO", "message": " Size: 1790.83MB → 1009.79MB (56.4% of original, 43.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:15:56Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:15:57Z", "level": "INFO", "message": "Deleted original and processing copy for Dirty Laundry - S03E03 - Who Came Out to Their High School Girlfriend Via Jesus Christ?.mp4", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:15:57Z", "level": "INFO", "message": "Removed embedded subtitle: Dirty Laundry - S03E03 - Who Came Out to Their High School Girlfriend Via Jesus Christ?.en.vtt", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 473} +{"timestamp": "2026-01-01T19:15:57Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E04 - Who Got Stung in the Crotch by a Jellyfish?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:16:12Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E04 - Who Got Stung in the Crotch by a Jellyfish?.mp4 → Dirty Laundry - S03E04 - Who Got Stung in the Crotch by a Jellyfish?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:16:12Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E04 - Who Got Stung in the Crotch by a Jellyfish?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T19:16:12Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:16:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:16:12Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:16:13Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:16:13Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:16:13Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:16:13Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:16:13Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:16:13Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:16:13Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:16:13Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:16:13Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:16:13Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 254kbps | Action: ENCODE | Target: 192kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:16:13Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E04 - Who Got Stung in the Crotch by a Jellyfish? - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:19:04Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:19:04Z", "level": "INFO", "message": " Original Size: 1675.86 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:19:04Z", "level": "INFO", "message": " Encoded Size: 849.95 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:19:04Z", "level": "INFO", "message": " Reduction: 50.7% of original (49.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:19:04Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:19:04Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:19:11Z", "level": "INFO", "message": "Moved Dirty Laundry - S03E04 - Who Got Stung in the Crotch by a Jellyfish? - [EHX].mkv → Dirty Laundry - S03E04 - Who Got Stung in the Crotch by a Jellyfish? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:19:13Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Dirty Laundry - S03E04 - Who Got Stung in the Crotch by a Jellyfish? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:19:13Z", "level": "INFO", "message": " Type: TV | Show: Dirty Laundry", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:19:13Z", "level": "INFO", "message": " Size: 1675.86MB → 849.95MB (50.7% of original, 49.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:19:13Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:19:13Z", "level": "INFO", "message": "Deleted original and processing copy for Dirty Laundry - S03E04 - Who Got Stung in the Crotch by a Jellyfish?.mp4", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:19:13Z", "level": "INFO", "message": "Removed embedded subtitle: Dirty Laundry - S03E04 - Who Got Stung in the Crotch by a Jellyfish?.en.vtt", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 473} +{"timestamp": "2026-01-01T19:19:13Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E05 - Who Watched a Woman Pump Breast Milk While Snorting Cocaine?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:19:28Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E05 - Who Watched a Woman Pump Breast Milk While Snorting Cocaine?.mp4 → Dirty Laundry - S03E05 - Who Watched a Woman Pump Breast Milk While Snorting Cocaine?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:19:28Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E05 - Who Watched a Woman Pump Breast Milk While Snorting Cocaine?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T19:19:28Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:19:28Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:19:28Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:19:29Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:19:29Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:19:29Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:19:29Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:19:29Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:19:29Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:19:29Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:19:29Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:19:29Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:19:29Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 255kbps | Action: ENCODE | Target: 192kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:19:29Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E05 - Who Watched a Woman Pump Breast Milk While Snorting Cocaine? - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:22:17Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:22:17Z", "level": "INFO", "message": " Original Size: 1566.21 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:22:17Z", "level": "INFO", "message": " Encoded Size: 700.88 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:22:17Z", "level": "INFO", "message": " Reduction: 44.7% of original (55.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:22:17Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:22:17Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:22:23Z", "level": "INFO", "message": "Moved Dirty Laundry - S03E05 - Who Watched a Woman Pump Breast Milk While Snorting Cocaine? - [EHX].mkv → Dirty Laundry - S03E05 - Who Watched a Woman Pump Breast Milk While Snorting Cocaine? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:22:24Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Dirty Laundry - S03E05 - Who Watched a Woman Pump Breast Milk While Snorting Cocaine? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:22:24Z", "level": "INFO", "message": " Type: TV | Show: Dirty Laundry", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:22:24Z", "level": "INFO", "message": " Size: 1566.21MB → 700.88MB (44.8% of original, 55.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:22:24Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:22:25Z", "level": "INFO", "message": "Deleted original and processing copy for Dirty Laundry - S03E05 - Who Watched a Woman Pump Breast Milk While Snorting Cocaine?.mp4", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:22:25Z", "level": "INFO", "message": "Removed embedded subtitle: Dirty Laundry - S03E05 - Who Watched a Woman Pump Breast Milk While Snorting Cocaine?.en.vtt", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 473} +{"timestamp": "2026-01-01T19:22:25Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E06 - Who Was Found Naked in a Hallway by a Drug Dealer?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:22:38Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E06 - Who Was Found Naked in a Hallway by a Drug Dealer?.mp4 → Dirty Laundry - S03E06 - Who Was Found Naked in a Hallway by a Drug Dealer?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:22:38Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E06 - Who Was Found Naked in a Hallway by a Drug Dealer?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T19:22:38Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:22:38Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:22:38Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:22:39Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:22:39Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:22:39Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:22:39Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:22:39Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:22:39Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:22:39Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:22:39Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:22:39Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:22:39Z", "level": "INFO", "message": "Stereo audio 190kbps ≤ 192k threshold - copying original", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 193} +{"timestamp": "2026-01-01T19:22:39Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 190kbps | Action: COPY (preserve) | Target: 190kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:22:39Z", "level": "INFO", "message": "Stereo audio 190kbps ≤ 192k threshold - copying original", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 193} +{"timestamp": "2026-01-01T19:22:39Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E06 - Who Was Found Naked in a Hallway by a Drug Dealer? - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:24:09Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:24:09Z", "level": "INFO", "message": " Original Size: 1481.71 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:24:09Z", "level": "INFO", "message": " Encoded Size: 645.05 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:24:09Z", "level": "INFO", "message": " Reduction: 43.5% of original (56.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:24:09Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:24:09Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:24:14Z", "level": "INFO", "message": "Moved Dirty Laundry - S03E06 - Who Was Found Naked in a Hallway by a Drug Dealer? - [EHX].mkv → Dirty Laundry - S03E06 - Who Was Found Naked in a Hallway by a Drug Dealer? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:24:16Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Dirty Laundry - S03E06 - Who Was Found Naked in a Hallway by a Drug Dealer? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:24:16Z", "level": "INFO", "message": " Type: TV | Show: Dirty Laundry", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:24:16Z", "level": "INFO", "message": " Size: 1481.71MB → 645.05MB (43.5% of original, 56.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:24:16Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:24:16Z", "level": "INFO", "message": "Deleted original and processing copy for Dirty Laundry - S03E06 - Who Was Found Naked in a Hallway by a Drug Dealer?.mp4", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:24:16Z", "level": "INFO", "message": "Removed embedded subtitle: Dirty Laundry - S03E06 - Who Was Found Naked in a Hallway by a Drug Dealer?.en.vtt", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 473} +{"timestamp": "2026-01-01T19:24:16Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E07 - Who Is an Honorary Member at a Sex Club?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:24:31Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E07 - Who Is an Honorary Member at a Sex Club?.mp4 → Dirty Laundry - S03E07 - Who Is an Honorary Member at a Sex Club?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:24:31Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E07 - Who Is an Honorary Member at a Sex Club?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T19:24:31Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:24:31Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:24:31Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:24:32Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:24:32Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:24:32Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:24:32Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:24:32Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:24:32Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:24:32Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:24:32Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:24:32Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:24:32Z", "level": "INFO", "message": "Stereo audio 191kbps ≤ 192k threshold - copying original", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 193} +{"timestamp": "2026-01-01T19:24:32Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 191kbps | Action: COPY (preserve) | Target: 191kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:24:32Z", "level": "INFO", "message": "Stereo audio 191kbps ≤ 192k threshold - copying original", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 193} +{"timestamp": "2026-01-01T19:24:32Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E07 - Who Is an Honorary Member at a Sex Club? - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:26:10Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:26:10Z", "level": "INFO", "message": " Original Size: 1668.77 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:26:10Z", "level": "INFO", "message": " Encoded Size: 732.43 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:26:10Z", "level": "INFO", "message": " Reduction: 43.9% of original (56.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:26:10Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:26:10Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:26:16Z", "level": "INFO", "message": "Moved Dirty Laundry - S03E07 - Who Is an Honorary Member at a Sex Club? - [EHX].mkv → Dirty Laundry - S03E07 - Who Is an Honorary Member at a Sex Club? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:26:18Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Dirty Laundry - S03E07 - Who Is an Honorary Member at a Sex Club? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:26:18Z", "level": "INFO", "message": " Type: TV | Show: Dirty Laundry", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:26:18Z", "level": "INFO", "message": " Size: 1668.77MB → 732.43MB (43.9% of original, 56.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:26:18Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:26:18Z", "level": "INFO", "message": "Deleted original and processing copy for Dirty Laundry - S03E07 - Who Is an Honorary Member at a Sex Club?.mp4", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:26:18Z", "level": "INFO", "message": "Removed embedded subtitle: Dirty Laundry - S03E07 - Who Is an Honorary Member at a Sex Club?.en.vtt", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 473} +{"timestamp": "2026-01-01T19:26:18Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E08 - Who Went to a War Criminal's Birthday?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:26:33Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E08 - Who Went to a War Criminal's Birthday?.mp4 → Dirty Laundry - S03E08 - Who Went to a War Criminal's Birthday?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:26:33Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E08 - Who Went to a War Criminal's Birthday?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T19:26:33Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:26:33Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:26:33Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:26:34Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:26:34Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:26:34Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:26:34Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:26:34Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:26:34Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:26:34Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:26:34Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:26:34Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:26:34Z", "level": "INFO", "message": "Stereo audio 192kbps ≤ 192k threshold - copying original", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 193} +{"timestamp": "2026-01-01T19:26:34Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 192kbps | Action: COPY (preserve) | Target: 192kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:26:34Z", "level": "INFO", "message": "Stereo audio 192kbps ≤ 192k threshold - copying original", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 193} +{"timestamp": "2026-01-01T19:26:34Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E08 - Who Went to a War Criminal's Birthday? - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:28:10Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:28:10Z", "level": "INFO", "message": " Original Size: 1600.26 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:28:10Z", "level": "INFO", "message": " Encoded Size: 672.57 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:28:10Z", "level": "INFO", "message": " Reduction: 42.0% of original (58.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:28:10Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:28:10Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:28:15Z", "level": "INFO", "message": "Moved Dirty Laundry - S03E08 - Who Went to a War Criminal's Birthday? - [EHX].mkv → Dirty Laundry - S03E08 - Who Went to a War Criminal's Birthday? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:28:17Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Dirty Laundry - S03E08 - Who Went to a War Criminal's Birthday? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:28:17Z", "level": "INFO", "message": " Type: TV | Show: Dirty Laundry", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:28:17Z", "level": "INFO", "message": " Size: 1600.26MB → 672.57MB (42.0% of original, 58.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:28:17Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:28:17Z", "level": "INFO", "message": "Deleted original and processing copy for Dirty Laundry - S03E08 - Who Went to a War Criminal's Birthday?.mp4", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:28:17Z", "level": "INFO", "message": "Removed embedded subtitle: Dirty Laundry - S03E08 - Who Went to a War Criminal's Birthday?.en.vtt", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 473} +{"timestamp": "2026-01-01T19:28:17Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E09 - Who Blamed Their Sex Noises on a Videogame?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:28:30Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E09 - Who Blamed Their Sex Noises on a Videogame?.mp4 → Dirty Laundry - S03E09 - Who Blamed Their Sex Noises on a Videogame?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:28:30Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E09 - Who Blamed Their Sex Noises on a Videogame?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T19:28:30Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:28:30Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:28:30Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:28:32Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:28:32Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:28:32Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:28:32Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:28:32Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:28:32Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:28:32Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:28:32Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:28:32Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:28:32Z", "level": "INFO", "message": "Stereo audio 191kbps ≤ 192k threshold - copying original", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 193} +{"timestamp": "2026-01-01T19:28:32Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 191kbps | Action: COPY (preserve) | Target: 191kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:28:32Z", "level": "INFO", "message": "Stereo audio 191kbps ≤ 192k threshold - copying original", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 193} +{"timestamp": "2026-01-01T19:28:32Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E09 - Who Blamed Their Sex Noises on a Videogame? - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:29:58Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:29:58Z", "level": "INFO", "message": " Original Size: 1434.91 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:29:58Z", "level": "INFO", "message": " Encoded Size: 657.23 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:29:58Z", "level": "INFO", "message": " Reduction: 45.8% of original (54.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:29:58Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:29:58Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:30:03Z", "level": "INFO", "message": "Moved Dirty Laundry - S03E09 - Who Blamed Their Sex Noises on a Videogame? - [EHX].mkv → Dirty Laundry - S03E09 - Who Blamed Their Sex Noises on a Videogame? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:30:05Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Dirty Laundry - S03E09 - Who Blamed Their Sex Noises on a Videogame? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:30:05Z", "level": "INFO", "message": " Type: TV | Show: Dirty Laundry", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:30:05Z", "level": "INFO", "message": " Size: 1434.91MB → 657.23MB (45.8% of original, 54.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:30:05Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:30:05Z", "level": "INFO", "message": "Deleted original and processing copy for Dirty Laundry - S03E09 - Who Blamed Their Sex Noises on a Videogame?.mp4", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:30:05Z", "level": "INFO", "message": "Removed embedded subtitle: Dirty Laundry - S03E09 - Who Blamed Their Sex Noises on a Videogame?.en.vtt", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 473} +{"timestamp": "2026-01-01T19:30:05Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E10 - Who Bugged Someone's Car to Catch Them Cheating?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:30:19Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E10 - Who Bugged Someone's Car to Catch Them Cheating?.mp4 → Dirty Laundry - S03E10 - Who Bugged Someone's Car to Catch Them Cheating?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:30:19Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E10 - Who Bugged Someone's Car to Catch Them Cheating?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T19:30:19Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:30:19Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:30:19Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:30:21Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:30:21Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:30:21Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:30:21Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:30:21Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:30:21Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:30:21Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:30:21Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:30:21Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:30:21Z", "level": "INFO", "message": "Stereo audio 190kbps ≤ 192k threshold - copying original", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 193} +{"timestamp": "2026-01-01T19:30:21Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 190kbps | Action: COPY (preserve) | Target: 190kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:30:21Z", "level": "INFO", "message": "Stereo audio 190kbps ≤ 192k threshold - copying original", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 193} +{"timestamp": "2026-01-01T19:30:21Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E10 - Who Bugged Someone's Car to Catch Them Cheating? - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:31:58Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:31:58Z", "level": "INFO", "message": " Original Size: 1631.16 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:31:58Z", "level": "INFO", "message": " Encoded Size: 697.22 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:31:58Z", "level": "INFO", "message": " Reduction: 42.7% of original (57.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:31:58Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:31:58Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:32:04Z", "level": "INFO", "message": "Moved Dirty Laundry - S03E10 - Who Bugged Someone's Car to Catch Them Cheating? - [EHX].mkv → Dirty Laundry - S03E10 - Who Bugged Someone's Car to Catch Them Cheating? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:32:05Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Dirty Laundry - S03E10 - Who Bugged Someone's Car to Catch Them Cheating? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:32:05Z", "level": "INFO", "message": " Type: TV | Show: Dirty Laundry", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:32:05Z", "level": "INFO", "message": " Size: 1631.16MB → 697.22MB (42.7% of original, 57.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:32:05Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:32:06Z", "level": "INFO", "message": "Deleted original and processing copy for Dirty Laundry - S03E10 - Who Bugged Someone's Car to Catch Them Cheating?.mp4", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:32:06Z", "level": "INFO", "message": "Removed embedded subtitle: Dirty Laundry - S03E10 - Who Bugged Someone's Car to Catch Them Cheating?.en.vtt", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 473} +{"timestamp": "2026-01-01T19:32:06Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E11 - Who Sent a Mean Email to a Famous Comedian as a Middle Schooler?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:32:20Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E11 - Who Sent a Mean Email to a Famous Comedian as a Middle Schooler?.mp4 → Dirty Laundry - S03E11 - Who Sent a Mean Email to a Famous Comedian as a Middle Schooler?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:32:20Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E11 - Who Sent a Mean Email to a Famous Comedian as a Middle Schooler?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T19:32:20Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:32:20Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:32:20Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:32:22Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:32:22Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:32:22Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:32:22Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:32:22Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:32:22Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:32:22Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:32:22Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:32:22Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:32:22Z", "level": "INFO", "message": "Stereo audio 190kbps ≤ 192k threshold - copying original", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 193} +{"timestamp": "2026-01-01T19:32:22Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 190kbps | Action: COPY (preserve) | Target: 190kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:32:22Z", "level": "INFO", "message": "Stereo audio 190kbps ≤ 192k threshold - copying original", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 193} +{"timestamp": "2026-01-01T19:32:22Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E11 - Who Sent a Mean Email to a Famous Comedian as a Middle Schooler? - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:33:55Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:33:55Z", "level": "INFO", "message": " Original Size: 1628.60 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:33:55Z", "level": "INFO", "message": " Encoded Size: 824.63 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:33:55Z", "level": "INFO", "message": " Reduction: 50.6% of original (49.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:33:55Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:33:55Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:34:02Z", "level": "INFO", "message": "Moved Dirty Laundry - S03E11 - Who Sent a Mean Email to a Famous Comedian as a Middle Schooler? - [EHX].mkv → Dirty Laundry - S03E11 - Who Sent a Mean Email to a Famous Comedian as a Middle Schooler? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:34:04Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Dirty Laundry - S03E11 - Who Sent a Mean Email to a Famous Comedian as a Middle Schooler? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:34:04Z", "level": "INFO", "message": " Type: TV | Show: Dirty Laundry", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:34:04Z", "level": "INFO", "message": " Size: 1628.6MB → 824.63MB (50.6% of original, 49.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:34:04Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:34:04Z", "level": "INFO", "message": "Deleted original and processing copy for Dirty Laundry - S03E11 - Who Sent a Mean Email to a Famous Comedian as a Middle Schooler?.mp4", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:34:04Z", "level": "INFO", "message": "Removed embedded subtitle: Dirty Laundry - S03E11 - Who Sent a Mean Email to a Famous Comedian as a Middle Schooler?.en.vtt", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 473} +{"timestamp": "2026-01-01T19:34:04Z", "level": "INFO", "message": "Processing: Dirty Laundry - S03E12 - Who Has an Active Warrant Out For Their Arrest?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:34:20Z", "level": "INFO", "message": "Copied Dirty Laundry - S03E12 - Who Has an Active Warrant Out For Their Arrest?.mp4 → Dirty Laundry - S03E12 - Who Has an Active Warrant Out For Their Arrest?.mp4", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:34:20Z", "level": "INFO", "message": "Found subtitle file: Dirty Laundry - S03E12 - Who Has an Active Warrant Out For Their Arrest?.en.vtt", "module": "process_manager", "funcName": "process_folder", "line": 144} +{"timestamp": "2026-01-01T19:34:20Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:34:20Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:34:20Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:34:21Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:34:21Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:34:21Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:34:21Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:34:21Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:34:21Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:34:21Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:34:21Z", "level": "INFO", "message": " • CQ Value: 32", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:34:21Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:34:21Z", "level": "INFO", "message": "Stereo audio 190kbps ≤ 192k threshold - copying original", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 193} +{"timestamp": "2026-01-01T19:34:21Z", "level": "INFO", "message": " - Stream #1: 2ch→2ch | Lang: und | Detected: 190kbps | Action: COPY (preserve) | Target: 190kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:34:21Z", "level": "INFO", "message": "Stereo audio 190kbps ≤ 192k threshold - copying original", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 193} +{"timestamp": "2026-01-01T19:34:21Z", "level": "INFO", "message": "Running CQ encode: Dirty Laundry - S03E12 - Who Has an Active Warrant Out For Their Arrest? - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:35:55Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:35:55Z", "level": "INFO", "message": " Original Size: 1638.37 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:35:55Z", "level": "INFO", "message": " Encoded Size: 718.68 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:35:55Z", "level": "INFO", "message": " Reduction: 43.9% of original (56.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:35:55Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:35:55Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:36:01Z", "level": "INFO", "message": "Moved Dirty Laundry - S03E12 - Who Has an Active Warrant Out For Their Arrest? - [EHX].mkv → Dirty Laundry - S03E12 - Who Has an Active Warrant Out For Their Arrest? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:36:02Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Dirty Laundry - S03E12 - Who Has an Active Warrant Out For Their Arrest? - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:36:02Z", "level": "INFO", "message": " Type: TV | Show: Dirty Laundry", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:36:02Z", "level": "INFO", "message": " Size: 1638.37MB → 718.68MB (43.9% of original, 56.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:36:02Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:36:03Z", "level": "INFO", "message": "Deleted original and processing copy for Dirty Laundry - S03E12 - Who Has an Active Warrant Out For Their Arrest?.mp4", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:36:03Z", "level": "INFO", "message": "Removed embedded subtitle: Dirty Laundry - S03E12 - Who Has an Active Warrant Out For Their Arrest?.en.vtt", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 473} +{"timestamp": "2026-01-01T19:36:03Z", "level": "INFO", "message": "Batch processing complete", "module": "process_manager", "funcName": "process_folder", "line": 388} +{"timestamp": "2026-01-01T19:39:45Z", "level": "INFO", "message": "Path mapping: /mnt/plex/tv/Supernatural -> P:\\tv\\Supernatural", "module": "main", "funcName": "normalize_input_path", "line": 46} +{"timestamp": "2026-01-01T19:39:45Z", "level": "INFO", "message": "Skipped 155 file(s)", "module": "process_manager", "funcName": "process_folder", "line": 106} +{"timestamp": "2026-01-01T19:39:45Z", "level": "INFO", "message": "Processing: Supernatural - S06E04 - Weekend at Bobby's x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:39:55Z", "level": "INFO", "message": "Copied Supernatural - S06E04 - Weekend at Bobby's x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E04 - Weekend at Bobby's x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:39:55Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:39:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:39:55Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:39:57Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:39:57Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:39:57Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:39:57Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:39:57Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:39:57Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:39:57Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:39:57Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:39:57Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:39:57Z", "level": "INFO", "message": "Multi-channel audio 254kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:39:57Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 254kbps | Action: COPY (preserve) | Target: 254kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:39:57Z", "level": "INFO", "message": "Multi-channel audio 254kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:39:57Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E04 - Weekend at Bobby's x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:41:46Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:41:46Z", "level": "INFO", "message": " Original Size: 1226.57 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:41:46Z", "level": "INFO", "message": " Encoded Size: 492.18 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:41:46Z", "level": "INFO", "message": " Reduction: 40.1% of original (59.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:41:46Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:41:46Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:41:50Z", "level": "INFO", "message": "Moved Supernatural - S06E04 - Weekend at Bobby's x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E04 - Weekend at Bobby's x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:41:52Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E04 - Weekend at Bobby's x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:41:52Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:41:52Z", "level": "INFO", "message": " Size: 1226.57MB → 492.18MB (40.1% of original, 59.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:41:52Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:41:52Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E04 - Weekend at Bobby's x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:41:52Z", "level": "INFO", "message": "Processing: Supernatural - S06E05 - Live Free or Twihard x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:42:07Z", "level": "INFO", "message": "Copied Supernatural - S06E05 - Live Free or Twihard x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E05 - Live Free or Twihard x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:42:07Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:42:07Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:42:07Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:42:09Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:42:09Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:42:09Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:42:09Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:42:09Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:42:09Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:42:09Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:42:09Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:42:09Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:42:09Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:42:09Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 255kbps | Action: COPY (preserve) | Target: 255kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:42:09Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:42:09Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E05 - Live Free or Twihard x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:43:59Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:43:59Z", "level": "INFO", "message": " Original Size: 1214.86 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:43:59Z", "level": "INFO", "message": " Encoded Size: 496.07 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:43:59Z", "level": "INFO", "message": " Reduction: 40.8% of original (59.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:43:59Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:43:59Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:44:03Z", "level": "INFO", "message": "Moved Supernatural - S06E05 - Live Free or Twihard x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E05 - Live Free or Twihard x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:44:05Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E05 - Live Free or Twihard x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:44:05Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:44:05Z", "level": "INFO", "message": " Size: 1214.86MB → 496.07MB (40.8% of original, 59.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:44:05Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:44:05Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E05 - Live Free or Twihard x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:44:05Z", "level": "INFO", "message": "Processing: Supernatural - S06E06 - You Can't Handle the Truth x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:44:20Z", "level": "INFO", "message": "Copied Supernatural - S06E06 - You Can't Handle the Truth x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E06 - You Can't Handle the Truth x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:44:20Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:44:20Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:44:20Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:44:22Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:44:22Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:44:22Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:44:22Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:44:22Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:44:22Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:44:22Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:44:22Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:44:22Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:44:22Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:44:22Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 255kbps | Action: COPY (preserve) | Target: 255kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:44:22Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:44:22Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E06 - You Can't Handle the Truth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:46:47Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:46:47Z", "level": "INFO", "message": " Original Size: 1173.67 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:46:47Z", "level": "INFO", "message": " Encoded Size: 443.16 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:46:47Z", "level": "INFO", "message": " Reduction: 37.8% of original (62.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:46:47Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:46:47Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:46:51Z", "level": "INFO", "message": "Moved Supernatural - S06E06 - You Can't Handle the Truth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E06 - You Can't Handle the Truth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:46:53Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E06 - You Can't Handle the Truth x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:46:53Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:46:53Z", "level": "INFO", "message": " Size: 1173.67MB → 443.16MB (37.8% of original, 62.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:46:53Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:46:53Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E06 - You Can't Handle the Truth x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:46:53Z", "level": "INFO", "message": "Processing: Supernatural - S06E07 - Family Matters x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:47:07Z", "level": "INFO", "message": "Copied Supernatural - S06E07 - Family Matters x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E07 - Family Matters x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:47:07Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:47:07Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:47:07Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:47:09Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:47:09Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:47:09Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:47:09Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:47:09Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:47:09Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:47:09Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:47:09Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:47:09Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:47:09Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:47:09Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:47:09Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:47:09Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E07 - Family Matters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:49:26Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:49:26Z", "level": "INFO", "message": " Original Size: 1099.59 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:49:26Z", "level": "INFO", "message": " Encoded Size: 380.26 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:49:26Z", "level": "INFO", "message": " Reduction: 34.6% of original (65.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:49:26Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:49:26Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:49:29Z", "level": "INFO", "message": "Moved Supernatural - S06E07 - Family Matters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E07 - Family Matters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:49:30Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E07 - Family Matters x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:49:30Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:49:30Z", "level": "INFO", "message": " Size: 1099.59MB → 380.26MB (34.6% of original, 65.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:49:30Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:49:31Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E07 - Family Matters x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:49:31Z", "level": "INFO", "message": "Processing: Supernatural - S06E08 - All Dogs Go to Heaven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:49:47Z", "level": "INFO", "message": "Copied Supernatural - S06E08 - All Dogs Go to Heaven x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E08 - All Dogs Go to Heaven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:49:47Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:49:47Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:49:47Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:49:48Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:49:48Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:49:48Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:49:48Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:49:48Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:49:48Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:49:48Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:49:48Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:49:48Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:49:48Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:49:48Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 255kbps | Action: COPY (preserve) | Target: 255kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:49:48Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:49:48Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E08 - All Dogs Go to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:52:16Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:52:16Z", "level": "INFO", "message": " Original Size: 1227.33 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:52:16Z", "level": "INFO", "message": " Encoded Size: 532.03 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:52:16Z", "level": "INFO", "message": " Reduction: 43.3% of original (56.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:52:16Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:52:16Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:52:21Z", "level": "INFO", "message": "Moved Supernatural - S06E08 - All Dogs Go to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E08 - All Dogs Go to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:52:22Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E08 - All Dogs Go to Heaven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:52:22Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:52:22Z", "level": "INFO", "message": " Size: 1227.33MB → 532.03MB (43.3% of original, 56.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:52:22Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:52:23Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E08 - All Dogs Go to Heaven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:52:23Z", "level": "INFO", "message": "Processing: Supernatural - S06E09 - Clap Your Hands If You Believe x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:52:36Z", "level": "INFO", "message": "Copied Supernatural - S06E09 - Clap Your Hands If You Believe x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E09 - Clap Your Hands If You Believe x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:52:36Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:52:36Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:52:36Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:52:37Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:52:37Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:52:37Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:52:37Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:52:37Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:52:37Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:52:37Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:52:37Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:52:37Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:52:37Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:52:37Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:52:37Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:52:37Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E09 - Clap Your Hands If You Believe x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:55:08Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:55:08Z", "level": "INFO", "message": " Original Size: 1212.57 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:55:08Z", "level": "INFO", "message": " Encoded Size: 546.56 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:55:08Z", "level": "INFO", "message": " Reduction: 45.1% of original (54.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:55:08Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:55:08Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:55:12Z", "level": "INFO", "message": "Moved Supernatural - S06E09 - Clap Your Hands If You Believe x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E09 - Clap Your Hands If You Believe x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:55:14Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E09 - Clap Your Hands If You Believe x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:55:14Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:55:14Z", "level": "INFO", "message": " Size: 1212.57MB → 546.56MB (45.1% of original, 54.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:55:14Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:55:14Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E09 - Clap Your Hands If You Believe x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:55:14Z", "level": "INFO", "message": "Processing: Supernatural - S06E10 - Caged Heat x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:55:25Z", "level": "INFO", "message": "Copied Supernatural - S06E10 - Caged Heat x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E10 - Caged Heat x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:55:25Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:55:25Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:55:25Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:55:26Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:55:26Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:55:26Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:55:26Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:55:26Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:55:26Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:55:26Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:55:26Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:55:26Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:55:26Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:55:26Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 255kbps | Action: COPY (preserve) | Target: 255kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:55:26Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:55:26Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E10 - Caged Heat x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T19:57:45Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T19:57:45Z", "level": "INFO", "message": " Original Size: 1154.72 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T19:57:45Z", "level": "INFO", "message": " Encoded Size: 420.73 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T19:57:45Z", "level": "INFO", "message": " Reduction: 36.4% of original (63.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T19:57:45Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T19:57:45Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T19:57:49Z", "level": "INFO", "message": "Moved Supernatural - S06E10 - Caged Heat x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E10 - Caged Heat x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T19:57:51Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E10 - Caged Heat x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T19:57:51Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T19:57:51Z", "level": "INFO", "message": " Size: 1154.72MB → 420.73MB (36.4% of original, 63.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T19:57:51Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T19:57:51Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E10 - Caged Heat x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T19:57:51Z", "level": "INFO", "message": "Processing: Supernatural - S06E11 - Appointment in Samarra x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T19:58:02Z", "level": "INFO", "message": "Copied Supernatural - S06E11 - Appointment in Samarra x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E11 - Appointment in Samarra x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T19:58:03Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T19:58:03Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T19:58:03Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T19:58:04Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T19:58:04Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T19:58:04Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T19:58:04Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T19:58:04Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T19:58:04Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T19:58:04Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T19:58:04Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T19:58:04Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T19:58:04Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:58:04Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 255kbps | Action: COPY (preserve) | Target: 255kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T19:58:04Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T19:58:04Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E11 - Appointment in Samarra x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T20:00:34Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T20:00:34Z", "level": "INFO", "message": " Original Size: 1241.18 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T20:00:34Z", "level": "INFO", "message": " Encoded Size: 468.26 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T20:00:34Z", "level": "INFO", "message": " Reduction: 37.7% of original (62.3% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T20:00:34Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T20:00:34Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T20:00:38Z", "level": "INFO", "message": "Moved Supernatural - S06E11 - Appointment in Samarra x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E11 - Appointment in Samarra x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T20:00:39Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E11 - Appointment in Samarra x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T20:00:39Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T20:00:39Z", "level": "INFO", "message": " Size: 1241.18MB → 468.26MB (37.7% of original, 62.3% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T20:00:39Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T20:00:40Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E11 - Appointment in Samarra x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T20:00:40Z", "level": "INFO", "message": "Processing: Supernatural - S06E12 - Like A Virgin x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T20:00:51Z", "level": "INFO", "message": "Copied Supernatural - S06E12 - Like A Virgin x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E12 - Like A Virgin x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T20:00:51Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T20:00:51Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T20:00:51Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T20:00:53Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T20:00:53Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T20:00:53Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T20:00:53Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T20:00:53Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T20:00:53Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T20:00:53Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T20:00:53Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T20:00:53Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T20:00:53Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:00:53Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T20:00:53Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:00:53Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E12 - Like A Virgin x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T20:03:24Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T20:03:24Z", "level": "INFO", "message": " Original Size: 1260.23 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T20:03:24Z", "level": "INFO", "message": " Encoded Size: 528.11 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T20:03:24Z", "level": "INFO", "message": " Reduction: 41.9% of original (58.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T20:03:24Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T20:03:24Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T20:03:29Z", "level": "INFO", "message": "Moved Supernatural - S06E12 - Like A Virgin x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E12 - Like A Virgin x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T20:03:30Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E12 - Like A Virgin x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T20:03:30Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T20:03:30Z", "level": "INFO", "message": " Size: 1260.23MB → 528.11MB (41.9% of original, 58.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T20:03:30Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T20:03:30Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E12 - Like A Virgin x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T20:03:30Z", "level": "INFO", "message": "Processing: Supernatural - S06E13 - Unforgiven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T20:03:41Z", "level": "INFO", "message": "Copied Supernatural - S06E13 - Unforgiven x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E13 - Unforgiven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T20:03:41Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T20:03:41Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T20:03:41Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T20:03:43Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T20:03:43Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T20:03:43Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T20:03:43Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T20:03:43Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T20:03:43Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T20:03:43Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T20:03:43Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T20:03:43Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T20:03:43Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:03:43Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 257kbps | Action: COPY (preserve) | Target: 257kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T20:03:43Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:03:43Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E13 - Unforgiven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T20:05:57Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T20:05:57Z", "level": "INFO", "message": " Original Size: 1243.94 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T20:05:57Z", "level": "INFO", "message": " Encoded Size: 616.35 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T20:05:57Z", "level": "INFO", "message": " Reduction: 49.5% of original (50.5% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T20:05:57Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T20:05:57Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T20:06:02Z", "level": "INFO", "message": "Moved Supernatural - S06E13 - Unforgiven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E13 - Unforgiven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T20:06:03Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E13 - Unforgiven x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T20:06:03Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T20:06:03Z", "level": "INFO", "message": " Size: 1243.94MB → 616.35MB (49.5% of original, 50.5% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T20:06:03Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T20:06:04Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E13 - Unforgiven x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T20:06:04Z", "level": "INFO", "message": "Processing: Supernatural - S06E14 - Mannequin 3 - The Reckoning x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T20:06:15Z", "level": "INFO", "message": "Copied Supernatural - S06E14 - Mannequin 3 - The Reckoning x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E14 - Mannequin 3 - The Reckoning x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T20:06:15Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T20:06:15Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T20:06:15Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T20:06:16Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T20:06:16Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T20:06:16Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T20:06:16Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T20:06:16Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T20:06:16Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T20:06:16Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T20:06:16Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T20:06:16Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T20:06:16Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:06:16Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 257kbps | Action: COPY (preserve) | Target: 257kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T20:06:16Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:06:16Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E14 - Mannequin 3 - The Reckoning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T20:08:45Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T20:08:45Z", "level": "INFO", "message": " Original Size: 1192.86 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T20:08:45Z", "level": "INFO", "message": " Encoded Size: 467.22 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T20:08:45Z", "level": "INFO", "message": " Reduction: 39.2% of original (60.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T20:08:45Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T20:08:45Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T20:08:49Z", "level": "INFO", "message": "Moved Supernatural - S06E14 - Mannequin 3 - The Reckoning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E14 - Mannequin 3 - The Reckoning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T20:08:50Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E14 - Mannequin 3 - The Reckoning x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T20:08:50Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T20:08:50Z", "level": "INFO", "message": " Size: 1192.86MB → 467.22MB (39.2% of original, 60.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T20:08:50Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T20:08:50Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E14 - Mannequin 3 - The Reckoning x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T20:08:50Z", "level": "INFO", "message": "Processing: Supernatural - S06E15 - The French Mistake x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T20:09:02Z", "level": "INFO", "message": "Copied Supernatural - S06E15 - The French Mistake x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E15 - The French Mistake x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T20:09:02Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T20:09:02Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T20:09:02Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T20:09:04Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T20:09:04Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T20:09:04Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T20:09:04Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T20:09:04Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T20:09:04Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T20:09:04Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T20:09:04Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T20:09:04Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T20:09:04Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:09:04Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T20:09:04Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:09:04Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E15 - The French Mistake x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T20:11:40Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T20:11:40Z", "level": "INFO", "message": " Original Size: 1286.57 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T20:11:40Z", "level": "INFO", "message": " Encoded Size: 580.32 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T20:11:40Z", "level": "INFO", "message": " Reduction: 45.1% of original (54.9% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T20:11:40Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T20:11:40Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T20:11:45Z", "level": "INFO", "message": "Moved Supernatural - S06E15 - The French Mistake x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E15 - The French Mistake x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T20:11:46Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E15 - The French Mistake x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T20:11:46Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T20:11:46Z", "level": "INFO", "message": " Size: 1286.57MB → 580.32MB (45.1% of original, 54.9% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T20:11:46Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T20:11:46Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E15 - The French Mistake x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T20:11:46Z", "level": "INFO", "message": "Processing: Supernatural - S06E16 - And Then There Were None x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T20:11:57Z", "level": "INFO", "message": "Copied Supernatural - S06E16 - And Then There Were None x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E16 - And Then There Were None x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T20:11:57Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T20:11:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T20:11:57Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T20:11:58Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T20:11:58Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T20:11:58Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T20:11:58Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T20:11:58Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T20:11:58Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T20:11:58Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T20:11:58Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T20:11:58Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T20:11:58Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:11:58Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 255kbps | Action: COPY (preserve) | Target: 255kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T20:11:58Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:11:58Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E16 - And Then There Were None x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T20:14:31Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T20:14:31Z", "level": "INFO", "message": " Original Size: 1235.20 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T20:14:31Z", "level": "INFO", "message": " Encoded Size: 511.66 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T20:14:31Z", "level": "INFO", "message": " Reduction: 41.4% of original (58.6% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T20:14:31Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T20:14:31Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T20:14:35Z", "level": "INFO", "message": "Moved Supernatural - S06E16 - And Then There Were None x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E16 - And Then There Were None x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T20:14:36Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E16 - And Then There Were None x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T20:14:36Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T20:14:36Z", "level": "INFO", "message": " Size: 1235.2MB → 511.66MB (41.4% of original, 58.6% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T20:14:36Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T20:14:37Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E16 - And Then There Were None x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T20:14:37Z", "level": "INFO", "message": "Processing: Supernatural - S06E17 - My Heart Will Go On x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T20:14:48Z", "level": "INFO", "message": "Copied Supernatural - S06E17 - My Heart Will Go On x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E17 - My Heart Will Go On x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T20:14:48Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T20:14:48Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T20:14:48Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T20:14:49Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T20:14:49Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T20:14:49Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T20:14:49Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T20:14:49Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T20:14:49Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T20:14:49Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T20:14:49Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T20:14:49Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T20:14:49Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:14:49Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 255kbps | Action: COPY (preserve) | Target: 255kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T20:14:49Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:14:49Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E17 - My Heart Will Go On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T20:17:19Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T20:17:19Z", "level": "INFO", "message": " Original Size: 1219.94 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T20:17:19Z", "level": "INFO", "message": " Encoded Size: 547.37 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T20:17:19Z", "level": "INFO", "message": " Reduction: 44.9% of original (55.1% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T20:17:19Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T20:17:19Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T20:17:24Z", "level": "INFO", "message": "Moved Supernatural - S06E17 - My Heart Will Go On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E17 - My Heart Will Go On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T20:17:25Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E17 - My Heart Will Go On x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T20:17:25Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T20:17:25Z", "level": "INFO", "message": " Size: 1219.94MB → 547.37MB (44.9% of original, 55.1% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T20:17:25Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T20:17:26Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E17 - My Heart Will Go On x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T20:17:26Z", "level": "INFO", "message": "Processing: Supernatural - S06E18 - Frontierland x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T20:17:38Z", "level": "INFO", "message": "Copied Supernatural - S06E18 - Frontierland x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E18 - Frontierland x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T20:17:38Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T20:17:38Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T20:17:38Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T20:17:39Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T20:17:39Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T20:17:39Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T20:17:39Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T20:17:39Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T20:17:39Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T20:17:39Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T20:17:39Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T20:17:39Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T20:17:39Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:17:39Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T20:17:39Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:17:39Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E18 - Frontierland x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T20:20:10Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T20:20:10Z", "level": "INFO", "message": " Original Size: 1217.06 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T20:20:10Z", "level": "INFO", "message": " Encoded Size: 476.93 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T20:20:10Z", "level": "INFO", "message": " Reduction: 39.2% of original (60.8% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T20:20:10Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T20:20:10Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T20:20:15Z", "level": "INFO", "message": "Moved Supernatural - S06E18 - Frontierland x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E18 - Frontierland x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T20:20:16Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E18 - Frontierland x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T20:20:16Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T20:20:16Z", "level": "INFO", "message": " Size: 1217.06MB → 476.93MB (39.2% of original, 60.8% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T20:20:16Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T20:20:16Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E18 - Frontierland x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T20:20:16Z", "level": "INFO", "message": "Processing: Supernatural - S06E19 - Mommy Dearest x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T20:20:28Z", "level": "INFO", "message": "Copied Supernatural - S06E19 - Mommy Dearest x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E19 - Mommy Dearest x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T20:20:28Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T20:20:28Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T20:20:28Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T20:20:29Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T20:20:29Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T20:20:29Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T20:20:29Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T20:20:29Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T20:20:29Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T20:20:29Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T20:20:29Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T20:20:29Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T20:20:29Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:20:29Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T20:20:29Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:20:29Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E19 - Mommy Dearest x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T20:23:07Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T20:23:07Z", "level": "INFO", "message": " Original Size: 1236.08 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T20:23:07Z", "level": "INFO", "message": " Encoded Size: 498.65 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T20:23:07Z", "level": "INFO", "message": " Reduction: 40.3% of original (59.7% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T20:23:07Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T20:23:07Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T20:23:11Z", "level": "INFO", "message": "Moved Supernatural - S06E19 - Mommy Dearest x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E19 - Mommy Dearest x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T20:23:12Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E19 - Mommy Dearest x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T20:23:12Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T20:23:12Z", "level": "INFO", "message": " Size: 1236.08MB → 498.65MB (40.3% of original, 59.7% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T20:23:12Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T20:23:13Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E19 - Mommy Dearest x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T20:23:13Z", "level": "INFO", "message": "Processing: Supernatural - S06E20 - The Man Who Would Be King x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T20:23:23Z", "level": "INFO", "message": "Copied Supernatural - S06E20 - The Man Who Would Be King x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E20 - The Man Who Would Be King x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T20:23:24Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T20:23:24Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T20:23:24Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T20:23:25Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T20:23:25Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T20:23:25Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T20:23:25Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T20:23:25Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T20:23:25Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T20:23:25Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T20:23:25Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T20:23:25Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T20:23:25Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:23:25Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T20:23:25Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:23:25Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E20 - The Man Who Would Be King x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T20:25:51Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T20:25:51Z", "level": "INFO", "message": " Original Size: 1195.44 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T20:25:51Z", "level": "INFO", "message": " Encoded Size: 487.82 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T20:25:51Z", "level": "INFO", "message": " Reduction: 40.8% of original (59.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T20:25:51Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T20:25:51Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T20:25:56Z", "level": "INFO", "message": "Moved Supernatural - S06E20 - The Man Who Would Be King x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E20 - The Man Who Would Be King x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T20:25:57Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E20 - The Man Who Would Be King x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T20:25:57Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T20:25:57Z", "level": "INFO", "message": " Size: 1195.44MB → 487.82MB (40.8% of original, 59.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T20:25:57Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T20:25:57Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E20 - The Man Who Would Be King x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T20:25:57Z", "level": "INFO", "message": "Processing: Supernatural - S06E21 - Let It Bleed x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T20:26:08Z", "level": "INFO", "message": "Copied Supernatural - S06E21 - Let It Bleed x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E21 - Let It Bleed x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T20:26:08Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T20:26:08Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T20:26:08Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T20:26:10Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T20:26:10Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T20:26:10Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T20:26:10Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T20:26:10Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T20:26:10Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T20:26:10Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T20:26:10Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T20:26:10Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T20:26:10Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:26:10Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 255kbps | Action: COPY (preserve) | Target: 255kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T20:26:10Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:26:10Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E21 - Let It Bleed x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T20:28:36Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T20:28:36Z", "level": "INFO", "message": " Original Size: 1258.11 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T20:28:36Z", "level": "INFO", "message": " Encoded Size: 502.94 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T20:28:36Z", "level": "INFO", "message": " Reduction: 40.0% of original (60.0% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T20:28:36Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T20:28:36Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T20:28:40Z", "level": "INFO", "message": "Moved Supernatural - S06E21 - Let It Bleed x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E21 - Let It Bleed x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T20:28:42Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E21 - Let It Bleed x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T20:28:42Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T20:28:42Z", "level": "INFO", "message": " Size: 1258.11MB → 502.94MB (40.0% of original, 60.0% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T20:28:42Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T20:28:42Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E21 - Let It Bleed x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T20:28:42Z", "level": "INFO", "message": "Processing: Supernatural - S06E22 - The Man Who Knew Too Much x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T20:28:54Z", "level": "INFO", "message": "Copied Supernatural - S06E22 - The Man Who Knew Too Much x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S06E22 - The Man Who Knew Too Much x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T20:28:54Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T20:28:54Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T20:28:54Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T20:28:55Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T20:28:55Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T20:28:55Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T20:28:55Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T20:28:55Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T20:28:55Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T20:28:55Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T20:28:55Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T20:28:55Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T20:28:55Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:28:55Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T20:28:55Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:28:55Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S06E22 - The Man Who Knew Too Much x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T20:31:16Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T20:31:16Z", "level": "INFO", "message": " Original Size: 1257.75 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T20:31:16Z", "level": "INFO", "message": " Encoded Size: 561.37 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T20:31:16Z", "level": "INFO", "message": " Reduction: 44.6% of original (55.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T20:31:16Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T20:31:16Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T20:31:21Z", "level": "INFO", "message": "Moved Supernatural - S06E22 - The Man Who Knew Too Much x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S06E22 - The Man Who Knew Too Much x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T20:31:22Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S06E22 - The Man Who Knew Too Much x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T20:31:22Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T20:31:22Z", "level": "INFO", "message": " Size: 1257.75MB → 561.37MB (44.6% of original, 55.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T20:31:22Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T20:31:23Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S06E22 - The Man Who Knew Too Much x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T20:31:23Z", "level": "INFO", "message": "Processing: Supernatural - S05E01 - Sympathy for the Devil x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T20:31:34Z", "level": "INFO", "message": "Copied Supernatural - S05E01 - Sympathy for the Devil x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S05E01 - Sympathy for the Devil x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T20:31:34Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T20:31:34Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T20:31:34Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T20:31:36Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T20:31:36Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T20:31:36Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T20:31:36Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T20:31:36Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T20:31:36Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T20:31:36Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T20:31:36Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T20:31:36Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T20:31:36Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:31:36Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 255kbps | Action: COPY (preserve) | Target: 255kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T20:31:36Z", "level": "INFO", "message": "Multi-channel audio 255kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:31:36Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S05E01 - Sympathy for the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T20:33:49Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T20:33:49Z", "level": "INFO", "message": " Original Size: 1286.70 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T20:33:49Z", "level": "INFO", "message": " Encoded Size: 512.54 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T20:33:49Z", "level": "INFO", "message": " Reduction: 39.8% of original (60.2% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T20:33:49Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T20:33:49Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T20:33:53Z", "level": "INFO", "message": "Moved Supernatural - S05E01 - Sympathy for the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S05E01 - Sympathy for the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T20:33:55Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S05E01 - Sympathy for the Devil x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T20:33:55Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T20:33:55Z", "level": "INFO", "message": " Size: 1286.7MB → 512.54MB (39.8% of original, 60.2% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T20:33:55Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T20:33:55Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S05E01 - Sympathy for the Devil x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T20:33:55Z", "level": "INFO", "message": "Processing: Supernatural - S05E02 - Good God, Y'All! x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T20:34:09Z", "level": "INFO", "message": "Copied Supernatural - S05E02 - Good God, Y'All! x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S05E02 - Good God, Y'All! x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T20:34:09Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T20:34:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T20:34:09Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T20:34:10Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T20:34:10Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T20:34:10Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T20:34:10Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T20:34:10Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T20:34:10Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T20:34:10Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T20:34:10Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T20:34:10Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T20:34:10Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:34:10Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 257kbps | Action: COPY (preserve) | Target: 257kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T20:34:10Z", "level": "INFO", "message": "Multi-channel audio 257kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:34:10Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S05E02 - Good God, Y'All! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} +{"timestamp": "2026-01-01T20:36:24Z", "level": "INFO", "message": "\n📊 ENCODE RESULTS:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 133} +{"timestamp": "2026-01-01T20:36:24Z", "level": "INFO", "message": " Original Size: 1290.80 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 134} +{"timestamp": "2026-01-01T20:36:24Z", "level": "INFO", "message": " Encoded Size: 640.05 MB", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 135} +{"timestamp": "2026-01-01T20:36:24Z", "level": "INFO", "message": " Reduction: 49.6% of original (50.4% saved)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 136} +{"timestamp": "2026-01-01T20:36:24Z", "level": "INFO", "message": " Resolution: 1920x1080 → 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 137} +{"timestamp": "2026-01-01T20:36:24Z", "level": "INFO", "message": " Audio Streams: 1 streams processed", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 138} +{"timestamp": "2026-01-01T20:36:29Z", "level": "INFO", "message": "Moved Supernatural - S05E02 - Good God, Y'All! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv → Supernatural - S05E02 - Good God, Y'All! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 417} +{"timestamp": "2026-01-01T20:36:31Z", "level": "INFO", "message": "\n✅ CONVERSION COMPLETE: Supernatural - S05E02 - Good God, Y'All! x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 457} +{"timestamp": "2026-01-01T20:36:31Z", "level": "INFO", "message": " Type: TV | Show: Supernatural", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 458} +{"timestamp": "2026-01-01T20:36:31Z", "level": "INFO", "message": " Size: 1290.8MB → 640.05MB (49.6% of original, 50.4% reduction)", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 459} +{"timestamp": "2026-01-01T20:36:31Z", "level": "INFO", "message": " Method: CQ | Status: SUCCESS", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 460} +{"timestamp": "2026-01-01T20:36:31Z", "level": "INFO", "message": "Deleted original and processing copy for Supernatural - S05E02 - Good God, Y'All! x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "_save_successful_encoding", "line": 466} +{"timestamp": "2026-01-01T20:36:31Z", "level": "INFO", "message": "Processing: Supernatural - S05E03 - Free to Be You and Me x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 110} +{"timestamp": "2026-01-01T20:36:41Z", "level": "INFO", "message": "Copied Supernatural - S05E03 - Free to Be You and Me x265 AC3 Bluray-1080p HiQVE.mkv → Supernatural - S05E03 - Free to Be You and Me x265 AC3 Bluray-1080p HiQVE.mkv", "module": "process_manager", "funcName": "process_folder", "line": 115} +{"timestamp": "2026-01-01T20:36:42Z", "level": "INFO", "message": "Source resolution detected: 1920x1080", "module": "video_handler", "funcName": "get_source_resolution", "line": 29} +{"timestamp": "2026-01-01T20:36:42Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "video_handler", "funcName": "determine_target_resolution", "line": 68} +{"timestamp": "2026-01-01T20:36:42Z", "level": "INFO", "message": "Source 1920x1080 (<=1080p). Preserving source resolution.", "module": "process_manager", "funcName": "process_folder", "line": 169} +{"timestamp": "2026-01-01T20:36:43Z", "level": "INFO", "message": "\n🧩 ENCODE SETTINGS", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 25} +{"timestamp": "2026-01-01T20:36:43Z", "level": "INFO", "message": " Video:", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 28} +{"timestamp": "2026-01-01T20:36:43Z", "level": "INFO", "message": " • Source Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 29} +{"timestamp": "2026-01-01T20:36:43Z", "level": "INFO", "message": " • Target Resolution: 1920x1080", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 30} +{"timestamp": "2026-01-01T20:36:43Z", "level": "INFO", "message": " • Encoder: av1_nvenc (preset p1, pix_fmt p010le)", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 31} +{"timestamp": "2026-01-01T20:36:43Z", "level": "INFO", "message": " • Scale Filter: bicubic", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 32} +{"timestamp": "2026-01-01T20:36:43Z", "level": "INFO", "message": " • Encode Method: CQ", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 33} +{"timestamp": "2026-01-01T20:36:43Z", "level": "INFO", "message": " • CQ Value: 34", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 35} +{"timestamp": "2026-01-01T20:36:43Z", "level": "INFO", "message": " Audio Streams (1 detected):", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 42} +{"timestamp": "2026-01-01T20:36:43Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:36:43Z", "level": "INFO", "message": " - Stream #1: 6ch→6ch | Lang: und | Detected: 256kbps | Action: COPY (preserve) | Target: 256kbps", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 60} +{"timestamp": "2026-01-01T20:36:43Z", "level": "INFO", "message": "Multi-channel audio 256kbps < 384k minimum - copying original to avoid artifical inflation", "module": "audio_handler", "funcName": "choose_audio_bitrate", "line": 212} +{"timestamp": "2026-01-01T20:36:43Z", "level": "INFO", "message": "Running CQ encode: Supernatural - S05E03 - Free to Be You and Me x265 AC3 Bluray-1080p HiQVE - [EHX].mkv", "module": "encode_engine", "funcName": "run_ffmpeg", "line": 124} diff --git a/logs/failure.log b/logs/failure.log index 2395219..db8a37a 100644 --- a/logs/failure.log +++ b/logs/failure.log @@ -19,3 +19,15 @@ 2025-12-31 15:31:08 | Death From Above.mkv | CQ failed: Size threshold not met (90.5%) 2025-12-31 15:31:19 | Deleted Scenes.mkv | CQ failed: Size threshold not met (75.2%) 2025-12-31 15:31:57 | FX Comparisons.mkv | CQ failed: Size threshold not met (86.5%) +2025-12-31 15:51:25 | Behind the Scenes.mkv | CQ failed: Size threshold not met (124.6%) +2025-12-31 15:51:51 | Bikes, Blades, Bridges, and Bits.mkv | CQ failed: Size threshold not met (133.2%) +2025-12-31 15:52:30 | Check Your Sights.mkv | CQ failed: Size threshold not met (130.9%) +2025-12-31 16:11:32 | A Museum Tour with Sir Jonathan Wick.mkv | CQ failed: Size threshold not met (118.6%) +2025-12-31 16:11:51 | As Above, So Below - The Underworld of John Wick.mkv | CQ failed: Size threshold not met (125.2%) +2025-12-31 16:12:09 | Car Fu Ride-Along.mkv | CQ failed: Size threshold not met (173.8%) +2025-12-31 16:40:05 | TAYLOR SWIFT THE ERAS TOUR (2023) x265 EAC3 5.1 WEBRip-1080p GalaxyRG265.mkv | CQ failed: Size threshold not met (83.5%) +2025-12-31 18:10:24 | Interview with director Joe Dante.mkv | CQ failed: Size threshold not met (97.8%) +2025-12-31 19:15:56 | Supernatural - S03E01 - The Magnificent Seven x265 AC3 Bluray-1080p HiQVE.mkv | CQ failed: Size threshold not met (88.5%) +2026-01-01 01:25:05 | Supernatural - S07E17 - The Born-Again Identity x265 AC3 Bluray-1080p HiQVE.mkv | CQ error: Command '['ffmpeg', '-y', '-i', 'C:\\Users\\Tyler\\Documents\\GitHub\\conversion_project\\processing +2026-01-01 13:17:15 | The Office (US) - S08E04 - Garden Party x265 AAC Bluray-1080p Silence.mkv | CQ failed: Size threshold not met (122.2%) +2026-01-01 13:22:48 | The Office (US) - S08E04 - Garden Party x265 AAC Bluray-1080p Silence.mkv | CQ failed: Size threshold not met (101.3%) diff --git a/main.py b/main.py index 1e7a6ce..99a5dde 100644 --- a/main.py +++ b/main.py @@ -33,14 +33,29 @@ def normalize_input_path(input_path: str, path_mappings: dict) -> Path: """ # First, try to map Linux paths to Windows paths (reverse mapping) # If user provides "/mnt/plex/tv", find the mapping and convert to "P:\\tv" - for win_path, linux_path in path_mappings.items(): - if input_path.lower().startswith(linux_path.lower()): - # Found a matching Linux path, convert to Windows - relative = input_path[len(linux_path):].lstrip("/").lstrip("\\") - result = Path(win_path) / relative if relative else Path(win_path) - logger.info(f"Path mapping: {input_path} -> {result}") - print(f"ℹ️ Mapped Linux path {input_path} to {result}") - return result + if isinstance(path_mappings, list): + # New format: list of dicts + for mapping in path_mappings: + if isinstance(mapping, dict): + win_path = mapping.get("from") + linux_path = mapping.get("to") + if linux_path and input_path.lower().startswith(linux_path.lower()): + # Found a matching Linux path, convert to Windows + relative = input_path[len(linux_path):].lstrip("/").lstrip("\\") + result = Path(win_path) / relative if relative else Path(win_path) + logger.info(f"Path mapping: {input_path} -> {result}") + print(f"ℹ️ Mapped Linux path {input_path} to {result}") + return result + else: + # Old format: dict (for backwards compatibility) + for win_path, linux_path in path_mappings.items(): + if input_path.lower().startswith(linux_path.lower()): + # Found a matching Linux path, convert to Windows + relative = input_path[len(linux_path):].lstrip("/").lstrip("\\") + result = Path(win_path) / relative if relative else Path(win_path) + logger.info(f"Path mapping: {input_path} -> {result}") + print(f"ℹ️ Mapped Linux path {input_path} to {result}") + return result # No mapping found, use path as-is (normalize separators to Windows) # Convert forward slashes to backslashes for Windows @@ -93,7 +108,14 @@ Examples: choices=["480", "720", "1080"], help="Force target resolution (if not specified: 4K->1080p, else preserve)" ) - + parser.add_argument( + "--test", dest="test_mode", default=False, action="store_true", + help="Test mode: encode only first file, show ratio, don't move or delete (default: False)" + ) + parser.add_argument( + "--language", dest="audio_language", default=None, + help="Tag audio streams with language code (e.g., eng, spa, fra). If not set, audio language is unchanged" + ) args = parser.parse_args() # Load configuration @@ -110,7 +132,7 @@ Examples: return # Process folder - process_folder(folder, args.cq, args.transcode_mode, args.resolution, config, TRACKER_FILE) + process_folder(folder, args.cq, args.transcode_mode, args.resolution, config, TRACKER_FILE, args.test_mode, args.audio_language) if __name__ == "__main__": main() diff --git a/.folder_cache.json b/path_manager/cache/.folder_cache.json similarity index 100% rename from .folder_cache.json rename to path_manager/cache/.folder_cache.json diff --git a/gui_path_manager.py b/path_manager/gui_path_manager.py similarity index 100% rename from gui_path_manager.py rename to path_manager/gui_path_manager.py diff --git a/paths.txt b/path_manager/paths.txt similarity index 100% rename from paths.txt rename to path_manager/paths.txt diff --git a/transcode.bat b/path_manager/transcode.bat similarity index 100% rename from transcode.bat rename to path_manager/transcode.bat