diff --git a/MAINTENANCE.md b/MAINTENANCE.md new file mode 100644 index 0000000..63b9806 --- /dev/null +++ b/MAINTENANCE.md @@ -0,0 +1,52 @@ +# VMAF Optimizer - Maintenance Guide + +## Project Goals +To automatically optimize a large video library (TV Shows & Content) on Windows using an **AMD RX 9070 XT** GPU. +The goal is to reduce file size while maintaining "Visually Lossless" quality (VMAF 93+). + +## Core Strategy +1. **Hybrid Encoding:** + * **Encode:** Use Hardware Acceleration (`av1_amf` / `hevc_amf`) for speed (critical for 2TB+ library). + * **Verify:** Use `ab-av1` (software) strictly for VMAF score calculation. +2. **Safety Net:** + * Extract a 60s sample. + * Encode sample with AV1 (QP 32). + * Calculate VMAF & Savings. + * **Decision Logic:** + * If VMAF > 97: Re-encode with higher QP (more compression) to save space. + * If VMAF < 93 or Savings < 12%: Fallback to HEVC. + * If HEVC fails: Keep original. +3. **Architecture:** + * `smart_gpu_encoder.py`: The "Engine". Handles logic, ffmpeg calls, VMAF checks. Can run standalone. + * `smart_monitor.py`: The "UI/Controller". Runs the engine in threads, displays a TUI (Rich), handles caching and directory scanning. + +## Current Status +* **Working:** + * Hardware detection (AMD/NVIDIA/Intel). + * VMAF calculation (fixed regex for raw number output). + * Optimization logic (Smart QP adjustment). + * Multithreading (4 workers). + * Caching (Instant startup on second run). +* **Issues:** + * **UI Progress:** The TUI shows "Action" but Progress/Speed columns are empty. + * *Root Cause:* `smart_gpu_encoder.py` sends status updates like `Encoding AV1 (size=...)` but `smart_monitor.py` expects format `Action | Progress% | Speed`. + * **Logs:** User reported logs might be hard to find or missing if permissions fail on `Z:`. + +## Debugging Instructions +To run a simplified test without scanning the whole library: +1. Create a folder `test_media` with 1 small video file. +2. Run: + ```powershell + python smart_gpu_encoder.py --tv-dir ".\test_media" --content-dir ".\test_media" --jobs 1 + ``` + +## Future Todos +1. **Fix TUI Parsing:** Update `smart_gpu_encoder.py` to format strings as `Action | Percent% | Speed`. +2. **Sonarr Integration:** Add webhook triggers on success. +3. **Linux Support:** Verify `av1_qsv` or `av1_vaapi` flags for Linux/Docker deployments. + +--- +**Key Files:** +* `smart_gpu_encoder.py`: Core logic. +* `smart_monitor.py`: TUI and Watchdog. +* `library_cache.json`: Cache of scanned files to speed up startup. diff --git a/README.md b/README.md index ef965d7..1b0eaf5 100644 --- a/README.md +++ b/README.md @@ -1,556 +1,103 @@ # VMAF Optimiser -Automated video library optimization to AV1 using VMAF (Video Multimethod Assessment Fusion) quality targets. Intelligently searches for optimal encoding parameters and gracefully degrades quality when needed to achieve target file size savings. - -## Quick Start - -### Requirements - -**Prerequisites:** -- Python 3.8+ -- FFmpeg with VMAF support (`ffmpeg -filters 2>&1 | grep libvmaf`) -- ab-av1 binary (v0.10.3+) - -**Installation:** -```bash -# Install ab-av1 via cargo -cargo install ab-av1 - -# Or download pre-built binary -wget https://github.com/alexheretic/ab-av1/releases/download/v0.10.3/ab-av1-x86_64-unknown-linux-musl -chmod +x ab-av1 -``` - -## Running the Optimiser - -### Windows / macOS - -Use the PowerShell wrapper script: - -```powershell -# Interactive mode (shows prompts) -.\run_optimisation.ps1 - -# Direct execution with parameters -.\run_optimisation.ps1 --directory "D:\Movies" --vmaf 95 --preset 6 --workers 1 -``` - -**Available flags:** -- `--directory ` - Root directory to scan (default: current directory) -- `--vmaf ` - Target VMAF score (default: 95.0) -- `--preset ` - SVT-AV1 Preset (default: 6) -- `--workers ` - Concurrent files to process (default: 1) -- `--samples ` - Samples for CRF search (default: 4) -- `--thorough` - Use thorough mode (slower, more accurate) -- `--encoder ` - ab-av1 encoder (default: svt-av1) -- `--hwaccel ` - Hardware acceleration (default: none) - -### Linux / WSL - -Use the bash wrapper script: - -```bash -# Interactive mode -./run_optimisation.sh - -# Direct execution with parameters -./run_optimisation.sh --directory /mnt/Media/Movies --vmaf 95 --workers 1 -``` - -**Same flags as PowerShell version:** -- `--directory ` - Root directory to scan -- `--vmaf ` - Target VMAF score -- `--preset ` - SVT-AV1 Preset -- `--workers ` - Concurrent files to process -- `--samples ` - Samples for CRF search -- `--thorough` - Use thorough mode -- `--encoder ` - ab-av1 encoder -- `--hwaccel ` - Hardware acceleration - -## How It Works - -### Phase 1: Video Analysis -1. Scans directory for video files (.mkv, .mp4) -2. Uses `ffprobe` to get: - - Codec (h264, hevc, etc.) - - Resolution (width × height) - - Bitrate (calculated from size/duration) - - HDR status (color transfer detection) -3. Skips if already AV1 encoded - -### Phase 2: VMAF Target Search (Intelligent Fallback) - -The script tries VMAF targets in **descending order** (highest quality first): - -``` -Try VMAF 94 (Premium) - ↓ -Can achieve? - ↓ Yes ↓ No -Calculate savings Try VMAF 93 - ↓ - Savings ≥ 12%? - ↓ Yes ↓ No - Encode at VMAF 94 Calculate savings - ↓ - Savings ≥ 12%? - ↓ Yes ↓ No - Encode at VMAF 93 Find 15% (test 92, 90) -``` - -**Fallback Logic:** -- If VMAF 94 gives ≥12% savings → **Encode at VMAF 94** -- If VMAF 94 <12% but VMAF 93 ≥12% → **Encode at VMAF 93** -- If both <12% → Find what VMAF gives 15%+ savings: - - Tests VMAF 93, 92, 90 - - Reports "FOUND 15%+ SAVINGS" with exact parameters - - Logs for manual review (no encoding) - -### Phase 3: CRF Search - -Uses `ab-av1 crf-search` with `--thorough` flag: -- Takes multiple samples (20-30s segments) from video -- Interpolates binary search for optimal CRF -- Outputs: Best CRF, Mean VMAF, Predicted size -- Uses `--samples` to control accuracy (default: 4 samples) - -### Phase 4: Full Encoding (with Real-time Output) - -If savings threshold met: -1. Runs `ab-av1 encode` with found CRF -2. **Streams all output in real-time** (you see progress live) -3. Shows ETA, encoding speed, frame count -4. Uses `--acodec copy` to preserve audio/subtitles - -**Real-time output example:** -``` -→ Running encoding (CRF 34) - Encoded 4320/125400 frames (3.4%) - Encoded 8640/125400 frames (6.9%) - Encoded 12960/125400 frames (10.3%) - ... - Encoded 125400/125400 frames (100.0%) - Speed: 15.2 fps, ETA: 2s -``` - -### Phase 5: Verification & Replacement - -1. Probes encoded file for actual stats -2. Calculates actual savings -3. Only replaces original if new file is smaller -4. Converts .mp4 to .mkv if needed - -## Configuration - -Key settings (edit in `optimize_library.py`): - -```python -TARGETS = [94.0, 93.0, 92.0, 90.0] # VMAF targets to try -MIN_SAVINGS_PERCENT = 12.0 # Encode if savings ≥12% -TARGET_SAVINGS_FOR_ESTIMATE = 15.0 # Estimate for this level -PRESET = 6 # SVT-AV1 preset (4=best, 8=fast) -EXTENSIONS = {".mkv", ".mp4", ".mov", ".avi", ".ts"} -``` - -### What is CRF? - -**Constant Rate Factor (CRF):** Quality/bitrate trade-off -- **Lower CRF** = Higher quality, larger files (e.g., CRF 20) -- **Higher CRF** = Lower quality, smaller files (e.g., CRF 40) -- **AV1 CRF range:** 0-63 (default for VMAF 94 is ~34-36) - -### What is VMAF? - -**Video Multimethod Assessment Fusion:** Netflix's quality metric -- **VMAF 95:** "Visually lossless" - indistinguishable from source -- **VMAF 94:** Premium quality - minor artifacts -- **VMAF 93:** Good quality - acceptable for most content -- **VMAF 90:** Standard quality - may have noticeable artifacts -- **VMAF 85:** Acceptable quality for mobile/low bandwidth - -## Hardware Acceleration - -**Automatic hwaccel detection:** -When `--hwaccel auto` is specified, the script selects appropriate hardware acceleration: - -| Platform | Auto Selection | Notes | -|-----------|----------------|--------| -| Windows | d3d11va | Direct3D Video Acceleration | -| macOS | videotoolbox | VideoToolbox framework | -| Linux/WSL | vaapi | Video Acceleration via VA-API | - -**Discrete GPU vs iGPU priority:** -- **Discrete GPU (e.g., AMD RX 7900 XT) takes priority over iGPU** -- FFmpeg/ab-av1 will prefer the more capable encoder -- For AV1 encoding, discrete GPU is selected if present - -**To disable hardware acceleration:** -```powershell -.\run_optimisation.ps1 --hwaccel none -``` - -```bash -./run_optimisation.sh --hwaccel none -``` - -## Running on Multiple Machines - -### Lock File Mechanism - -Each video file has a corresponding lock file: -``` -/opt/Optmiser/.lock/{video_filename} -``` - -**Process:** -1. Machine A checks for lock → None found, creates lock -2. Machine A starts encoding -3. Machine B checks for lock → Found, skips file -4. Machine A finishes, removes lock -5. Machine B can now process that file - -**Result:** Different machines automatically process different files! - -### Multi-Machine Setup - -**Machine 1 (Linux Server - Intel i9-12900H):** -```bash -cd /opt/Optmiser -git pull origin main -./run_optimisation.sh /mnt/Media/movies --vmaf 95 -``` - -**Machine 2 (Windows PC - AMD RX 7900 XT):** -```powershell -cd C:\Optmiser -git pull origin main -.\run_optimisation.ps1 D:\Media\movies --vmaf 95 --hwaccel auto -``` - -**Machine 3 (Another Linux PC):** -```bash -cd /opt/Optmiser -git pull origin main -./run_optimisation.sh /home/user/Media/tv --vmaf 95 -``` - -All three can run simultaneously - lock files prevent duplicates! - -## Logging System - -All logs stored in `/opt/Optmiser/logs/` directory: - -| File | Purpose | -|------|---------| -| `tv_movies.jsonl` | Successful TV & Movie encodes | -| `content.jsonl` | Successful Content folder encodes | -| `low_savings_skips.jsonl` | Files with <12% savings + 15% estimates | -| `failed_searches.jsonl` | Files that couldn't hit any VMAF target | -| `failed_encodes.jsonl` | Encoding errors | - -### Log Entry Format - -**Successful encode:** -```json -{ - "file": "/path/to/file.mkv", - "status": "success", - "vmaf": 94.0, - "crf": 34.0, - "before": { - "codec": "h264", - "bitrate": 8500, - "size": 2684354560, - "duration": 1379.44 - }, - "after": { - "codec": "av1", - "bitrate": 6400, - "size": 2013265920, - "duration": 1379.44 - }, - "duration": 145.2, - "savings": 25.0, - "timestamp": "2025-12-31T12:00:00.000Z" -} -``` - -**Low savings with 15% estimate:** -```json -{ - "file": "/path/to/file.mkv", - "vmaf_94": 94.0, - "savings_94": 7.0, - "vmaf_93": 93.0, - "savings_93": 18.0, - "target_for_15_percent": { - "target_vmaf": 93, - "crf": 37, - "savings": 18.0, - "quality_drop": 1, - "found": true - }, - "recommendations": "logged_for_review", - "timestamp": "2025-12-31T12:00:00.000Z" -} -``` - -### Viewing Logs - -```bash -# Watch logs in real-time -tail -f /opt/Optmiser/logs/tv_movies.jsonl | jq '.' - -# Check files logged for review (both 94 and 93 <12%) -cat /opt/Optmiser/logs/low_savings_skips.jsonl | jq '.[] | select(.recommendations=="logged_for_review")' - -# Statistics -jq -r '.status' /opt/Optmiser/logs/tv_movies.jsonl | sort | uniq -c - -# Find what CRF/VMAF combinations are being used most -jq -r '[.vmaf, .crf] | @tsv' /opt/Optmiser/logs/tv_movies.jsonl | sort | uniq -c -``` - -## Troubleshooting - -### Issue: "0k bitrate" display - -**Cause:** VBR (Variable Bitrate) files show 0 in ffprobe's format bitrate field. - -**Solution:** Calculate from `(size × 8) / duration` - -### Issue: Multiple machines encoding same file - -**Cause:** No coordination between machines. - -**Solution:** Lock files in `/opt/Optmiser/.lock/{video_filename}` - -### Issue: Encode fails with "unexpected argument" - -**Cause:** Using wrong flags for ab-av1 commands. - -**Solution:** Script now validates ab-av1 support at runtime and warns gracefully. - -### Issue: Out of Memory - -**Solution:** Reduce workers or increase swap: -```bash -# Increase swap (if needed) -sudo fallocate -l 4G /swapfile -sudo chmod 600 /swapfile -sudo mkswap /swapfile -sudo swapon /swapfile - -# Use more conservative settings -./run_optimisation.sh --workers 1 --vmaf 93 -``` - -## Best Practices - -### For Servers (Intel i9-12900H) - -1. **Use 50% CPU mode** if running other services (Plex, Jellyfin): - ```bash - ./run_optimisation.sh --workers 1 --cpu-limit 50 - ``` - -2. **Run during off-peak hours** to minimize impact on users - -3. **Monitor CPU temperature**: - ```bash - watch -n 2 'sensors | grep "Package id"' - ``` - -4. **Use higher preset for faster encodes** (preset 7-8): - ```bash - ./run_optimisation.sh --preset 8 --vmaf 93 - ``` - -### For Windows PC (AMD RX 7900 XT) - -1. **Enable hardware acceleration** for massive speedup: - ```powershell - .\run_optimisation.ps1 --hwaccel auto - ``` - -2. **Test small sample first** to verify settings: - ```powershell - .\run_optimisation.ps1 --directory "D:\Media\sample" --thorough --vmaf 95 - ``` - -3. **Monitor GPU usage**: - ```powershell - # Task Manager or radeontop (if available) - ``` - -4. **Consider quality compensation:** GPU encoding may need slightly lower VMAF target (e.g., VMAF 92) to match CPU quality. - -### For WSL - -1. **Access Windows drives via /mnt/c/:** - ```bash - ls /mnt/c/Media/movies - ``` - -2. **Increase memory limits** if encoding 4K content: - ```bash - # Edit ~/.wslconfig - [wsl2] - memory=16GB - ``` - -## Customization - -### Changing VMAF Targets - -Edit `optimize_library.py`: - -```python -# More aggressive (smaller files, lower quality) -TARGETS = [92.0, 90.0, 88.0] - -# Conservative (larger files, higher quality) -TARGETS = [95.0, 94.0, 93.0] -``` - -### Changing Savings Threshold - -```python -# More aggressive (encode more) -MIN_SAVINGS_PERCENT = 8.0 - -# Less aggressive (encode fewer) -MIN_SAVINGS_PERCENT = 15.0 -``` - -### Changing Encoder Preset - -```python -# Faster encodes (larger files, lower quality) -PRESET = 8 - -# Better quality (slower encodes, smaller files) -PRESET = 4 -``` - -### Changing Estimate Target - -```python -# Target higher savings for estimates -TARGET_SAVINGS_FOR_ESTIMATE = 20.0 -``` - -## File Structure - -``` -/opt/Optmiser/ -├── optimize_library.py # Main encoding engine -├── run_optimisation.sh # Linux/Server wrapper -├── run_optimisation.ps1 # Windows wrapper -├── bin/ -│ └── ab-av1 # ab-av1 binary -├── tmp/ # Temporary encoding files -├── logs/ # Log files (JSONL format) -│ ├── tv_movies.jsonl -│ ├── content.jsonl -│ ├── low_savings_skips.jsonl -│ ├── failed_searches.jsonl -│ └── failed_encodes.jsonl -├── .lock/ # Multi-machine coordination (created at runtime) -├── README.md # This file -├── SETUP.md # Setup instructions -└── AGENTS.md # Technical documentation -``` - -## Platform Support Matrix - -| Platform | Status | Notes | -|-----------|--------|-------| -| Linux (Intel CPU) | ✅ Supported | Software encoding, multi-worker capable | -| Windows (AMD GPU) | ✅ Supported | Hardware acceleration via d3d11va (auto-detects) | -| Windows (Intel CPU) | ✅ Supported | Software encoding | -| macOS (Apple Silicon) | ✅ Supported | Hardware via videotoolbox (auto-detects) | -| WSL (Ubuntu/Debian) | ✅ Supported | Linux compatibility layer | -| WSL (Windows drives) | ✅ Supported | Access via /mnt/c/ | - -## Git Workflow - -### Initial Setup - -```bash -cd /opt/Optmiser -git init -git remote add origin https://gitea.theflagroup.com/bnair/VMAFOptimiser.git -git branch -M main -git add . -git commit -m "Initial commit: VMAF optimisation pipeline" -git push -u origin main -``` - -### Daily Updates - -```bash -cd /opt/Optmiser -git pull origin main - -# Run optimisation -./run_optimisation.sh /media tv_movies - -# Review changes -git diff -``` - -### Committing Changes - -```bash -cd /opt/Optmiser -git status - -# Add changed files -git add optimize_library.py run_optimisation.sh run_optimisation.ps1 - -# Commit with message -git commit -m "feat: add Windows and Linux wrapper scripts" - -# Push -git push -``` - -### View History - -```bash -cd /opt/Optmiser -git log --oneline -git log --graph --all -``` - -## FAQ - -**Q: Can I run this on multiple machines at once?** -A: Yes! Each machine will process different files due to lock file mechanism. - -**Q: Should I use Windows or WSL?** -A: WSL is recommended for Linux compatibility. Use Windows native if you need direct hardware access or performance. - -**Q: Will hardware encoding work better than CPU?** -A: For AMD RX 7900 XT, hardware AV1 encoding is ~3-10x faster than CPU. However, GPU encoding may need slightly lower VMAF targets to match quality. - -**Q: What VMAF target should I use?** -A: Start with VMAF 94 or 95. Drop to 92-90 if you need more savings. - -**Q: How do I know which files are being processed?** -A: Check `.lock/` directory: `ls -la /opt/Optmiser/.lock/` - -**Q: Can I pause/resume?** -A: Pause by stopping the script (Ctrl+C). Resume by running again - it skips processed files. - -**Q: What happens if encoding fails?** -A: Error is logged to `failed_encodes.jsonl`. Original file is NOT modified. - -**Q: How much CPU does encoding use?** -A: Full CPU by default. Use `--workers 1` for single-threaded, or limit with `--cpu-limit 50` for 50% (12 threads on 24-core). +**Intelligent Video Library Optimization Pipeline** + +Automatically optimizes your video library (Movies/TV) by finding the best compression (AV1/HEVC) that maintains a high visual quality target (VMAF 93+). + +## Features + +- **Hybrid Encoding:** + - Uses **Hardware Acceleration** (NVIDIA NVENC, AMD AMF, Intel QSV, Apple VideoToolbox) for fast encoding. + - Uses **Software Encoding** (CPU) as a robust fallback. +- **VMAF Targeted:** Ensures visual quality matches the original (Target VMAF 93+). +- **Multi-Platform:** Runs on **Windows**, **Linux**, and **macOS**. +- **Distributed Processing:** Run multiple workers across multiple PCs sharing the same network library. +- **Safety First:** + - Locks files to prevent double-processing. + - Verifies output size and integrity before replacing. + - "Smart Resume" - skips already processed files. --- -**Last Updated:** December 31, 2025 -**Version:** 2.0 with Windows and Linux Wrapper Scripts +## Directory Structure + +``` +VMAFOptimiser/ +├── bin/ # Place ab-av1.exe here (or install to PATH) +├── logs/ # Local logs (processed, rejected, stats) +├── locks/ # Local lock files (if network not available) +├── src/ +│ ├── smart_gpu_encoder.py # Main encoder engine +│ ├── smart_monitor.py # TUI Dashboard (Watchdog) +│ ├── vmaf_common.py # Shared logic +│ └── smart_encoder.py # Legacy CPU-only engine +├── run.ps1 # Windows One-Click Start +└── README.md +``` + +## Setup & Installation + +### 1. Requirements + +- **Python 3.10+** +- **FFmpeg** (with libsvtav1/libx265 and HW drivers) + - Windows: `choco install ffmpeg` + - macOS: `brew install ffmpeg` + - Linux: `sudo apt install ffmpeg` +- **ab-av1** (VMAF calculator) + - Download from [GitHub](https://github.com/alexheretic/ab-av1) and place in `bin/` OR install via `cargo install ab-av1` + +### 2. Install Python Deps + +```bash +pip install watchdog rich +``` + +### 3. Usage + +#### Interactive Dashboard (Recommended) + +Monitors directories and shows a TUI with progress bars. + +```bash +python src/smart_monitor.py --tv-dir "Z:\tv" --content-dir "Z:\content" --jobs 2 +``` + +#### Headless / Background (Cron/Task Scheduler) + +Runs once through the library and exits. + +```bash +python src/smart_gpu_encoder.py --tv-dir "Z:\tv" --content-dir "Z:\content" --jobs 4 +``` + +--- + +## Multi-PC Setup + +To speed up processing, you can run this script on multiple computers simultaneously pointing to the same NAS/Network Share. + +1. **Map Network Drive:** Ensure `Z:\` (or whatever path) is mapped on ALL computers. +2. **Shared Locks:** The script automatically attempts to create a `.vmaf_locks` folder in the parent directory of your TV folder (e.g., `Z:\.vmaf_locks`). +3. **Run:** Start the script on PC 1, PC 2, etc. They will respect each other's locks and not process the same file. + +**Note:** Logs are stored LOCALLY on each PC in the `logs/` folder to prevent network file contention. + +--- + +## Advanced Options + +| Flag | Description | +|------|-------------| +| `--jobs N` | Number of parallel encoders (Default: 2) | +| `--tv-only` | Scan only TV Shows | +| `--content-only` | Scan only Movies | +| `--skip-until "Name"` | Skip files until this keyword is found (good for resuming) | +| `--debug` | Enable verbose logging | + +--- + +## Credits + +- Powered by `ab-av1` for VMAF calculation. +- Uses `ffmpeg` for heavy lifting. diff --git a/bin/ab-av1.exe b/bin/ab-av1.exe new file mode 100644 index 0000000..f4b81ff Binary files /dev/null and b/bin/ab-av1.exe differ diff --git a/debug_status.py b/debug_status.py new file mode 100644 index 0000000..c4721ef --- /dev/null +++ b/debug_status.py @@ -0,0 +1,51 @@ +import os +from pathlib import Path + +# Paths +Z_LOGS = Path(r"Z:\.vmaf_logs") +C_LOGS = Path(r"C:\Users\bnair\Videos\encodes\logs") +LOCAL_LOGS = Path("logs").resolve() +Z_LOCKS = Path(r"Z:\.vmaf_locks") +C_LOCKS = Path(r"C:\Users\bnair\Videos\encodes\locks") + +print("--- DEBUG STATUS ---") + +print(f"\n1. Checking Logs on Z: ({Z_LOGS})") +if Z_LOGS.exists(): + print(" [OK] Folder exists.") + for f in Z_LOGS.glob("*"): + print(f" - {f.name} ({f.stat().st_size} bytes)") +else: + print(" [MISSING] Folder does not exist.") + +print(f"\n2. Checking Logs on C: ({C_LOGS})") +if C_LOGS.exists(): + print(" [OK] Folder exists.") + for f in C_LOGS.glob("*"): + print(f" - {f.name} ({f.stat().st_size} bytes)") +else: + print(" [MISSING] Folder does not exist.") + +print(f"\n3. Checking Local Logs: ({LOCAL_LOGS})") +if LOCAL_LOGS.exists(): + print(" [OK] Folder exists.") + for f in LOCAL_LOGS.glob("*"): + print(f" - {f.name} ({f.stat().st_size} bytes)") +else: + print(" [MISSING] Folder does not exist.") + +print(f"\n4. Checking Locks") +z_count = len(list(Z_LOCKS.glob("*"))) if Z_LOCKS.exists() else 0 +c_count = len(list(C_LOCKS.glob("*"))) if C_LOCKS.exists() else 0 +print(f" Z: Locks: {z_count}") +print(f" C: Locks: {c_count}") + +print(f"\n4. Checking Temp Encodes") +temp = Path(r"C:\Users\bnair\Videos\encodes") +if temp.exists(): + mkv_files = list(temp.glob("*.mkv")) + print(f" Found {len(mkv_files)} mkv files.") + for f in mkv_files: + print(f" - {f.name} ({f.stat().st_size / 1024**3:.2f} GB)") +else: + print(" [MISSING] Temp folder missing.") diff --git a/legacy/finalOptimiser.ps1 b/legacy/finalOptimiser.ps1 new file mode 100644 index 0000000..3e7744c --- /dev/null +++ b/legacy/finalOptimiser.ps1 @@ -0,0 +1,207 @@ +# SMART PRE-FLIGHT ENCODER - VERBOSE CONSOLE OUTPUT +# Usage: .\Encode-TVShows.ps1 + +param( + [string]$TvDir = "Z:\tv", + [string]$ContentDir = "Z:\content", + [int]$MaxJobs = 2, + [int]$Av1Q = 34, + [int]$HevcQ = 28, + [string]$EncoderAV1 = "av1_amf", + [string]$EncoderHEVC = "hevc_amf", + [switch]$SkipAV1 = $true +) + +# --- CONFIGURATION --- +$Global:FFMPEG = "ffmpeg" +$Global:FFPROBE = "ffprobe" +$Global:TEMP_DIR = "C:\Users\bnair\Videos\encodes" +$Global:LockDir = "C:\Users\bnair\Videos\encodes\locks" +$LogFileTV = "C:\Users\bnair\Videos\encodes\encoding-log-tv.csv" +$LogFileContent = "C:\Users\bnair\Videos\encodes\encoding-log-content.csv" + +if (-not (Test-Path $Global:TEMP_DIR)) { New-Item -ItemType Directory -Path $Global:TEMP_DIR -Force | Out-Null } +if (-not (Test-Path $Global:LockDir)) { New-Item -ItemType Directory -Path $Global:LockDir -Force | Out-Null } + +function Init-LogFile { + param([string]$Path) + if (-not (Test-Path $Path)) { "Timestamp,File,InputSize,OutputSize,CodecUsed,Status,Savings" | Out-File -FilePath $Path -Encoding UTF8 } +} +Init-LogFile $LogFileTV +Init-LogFile $LogFileContent + +function Test-Tools { + Write-Host "Setup: Checking required tools..." -ForegroundColor Cyan + if (-not (Get-Command $Global:FFMPEG -ErrorAction SilentlyContinue)) { Write-Host "ERROR: ffmpeg not found!" -ForegroundColor Red; exit 1 } + Write-Host "Setup: Tools found." -ForegroundColor Green +} + +$SharedFunctions = { + function Get-LockId { + param([string]$FilePath) + try { + $pathBytes = [System.Text.Encoding]::UTF8.GetBytes($FilePath) + $hash = [System.Security.Cryptography.SHA256]::Create().ComputeHash($pathBytes) + return [BitConverter]::ToString($hash).Replace("-", "").Substring(0, 16) + } catch { return "unknown_lock" } + } + + function Run-FFmpeg { + param($In, $Out, $Enc, $Q, $Seek=$null, $Duration=$null) + $argsList = "-hide_banner -loglevel error -y" + if ($Seek) { $argsList += " -ss $Seek" } + $argsList += " -i `"$In`"" + if ($Duration) { $argsList += " -t $Duration" } + $argsList += " -c:v $Enc -usage transcoding -quality quality -rc cqp -qp_i $Q -qp_p $Q -qp_b $Q -c:a copy `"$Out`"" + return Start-Process -FilePath "ffmpeg" -ArgumentList $argsList -NoNewWindow -Wait -PassThru + } + + function Process-VideoFile { + param($InputFile, $CurrentLogFile, $LockDir, $TempDir, $Av1Q, $HevcQ, $EncAV1, $EncHEVC, $SkipAV1) + + $pidStr = $PID.ToString() + $lockId = Get-LockId -FilePath $InputFile + $lockFile = Join-Path $LockDir "$lockId.lock" + + try { + if (Test-Path $lockFile) { return } + $pidStr | Out-File -FilePath $lockFile -Force + + $fileName = Split-Path $InputFile -Leaf + Write-Host "[$pidStr] Found: $fileName" -ForegroundColor White + + # Skip Logic + $currentCodec = (& "ffprobe" -v error -select_streams v:0 -show_entries stream=codec_name -of csv=p=0 "$InputFile" 2>&1) + if ($SkipAV1 -and ($currentCodec -match "av1" -or $currentCodec -match "hevc")) { + Write-Host "[$pidStr] SKIP: Already optimized ($currentCodec)" -ForegroundColor DarkGray + return + } + + $inputSize = (Get-Item $InputFile).Length + + # --- PHASE 1: PRE-FLIGHT SAMPLE --- + Write-Host "[$pidStr] Testing: Generating 60s sample..." -ForegroundColor Yellow + $tempSample = Join-Path $TempDir "$fileName.sample.mkv" + $procSample = Run-FFmpeg $InputFile $tempSample $EncAV1 $Av1Q "00:05:00" "60" + + $doFullAV1 = $true + + if ($procSample.ExitCode -eq 0 -and (Test-Path $tempSample)) { + $sampleSize = (Get-Item $tempSample).Length + # Threshold: 150MB for 60s is ~20Mbps (Likely bloat) + if ($sampleSize -gt 150MB) { + Write-Host "[$pidStr] Test Result: FAIL. Sample was $([math]::Round($sampleSize/1MB))MB. Too big for AV1." -ForegroundColor Red + $doFullAV1 = $false + } else { + Write-Host "[$pidStr] Test Result: PASS. Sample was $([math]::Round($sampleSize/1MB))MB. Proceeding with AV1." -ForegroundColor Green + } + Remove-Item $tempSample -Force + } + + $finalStatus = "Failed" + $finalCodec = "None" + $finalSize = 0 + $finalSavings = 0.00 + + # --- PHASE 2: FULL AV1 --- + if ($doFullAV1) { + Write-Host "[$pidStr] Action: Starting Full AV1 Encode..." -ForegroundColor Cyan + $tempAV1 = Join-Path $TempDir "$fileName.av1.mkv" + $procAV1 = Run-FFmpeg $InputFile $tempAV1 $EncAV1 $Av1Q + + if ($procAV1.ExitCode -eq 0 -and (Test-Path $tempAV1)) { + $sizeAV1 = (Get-Item $tempAV1).Length + + if ($sizeAV1 -lt $inputSize) { + $finalSavings = [math]::Round((1 - ($sizeAV1 / $inputSize)) * 100, 2) + Write-Host "[$pidStr] AV1 ACCEPTED: Saved ${finalSavings}%" -ForegroundColor Green + + $finalOut = $InputFile -replace '\.mkv$', '_av1.mkv' -replace '\.mp4$', '_av1.mp4' + Move-Item $tempAV1 -Destination $finalOut -Force + Remove-Item $InputFile -Force + Rename-Item $finalOut -NewName $fileName -Force + + "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss'),`"$InputFile`",$inputSize,$sizeAV1,AV1,`"Replaced (AV1)`",$finalSavings%" | Out-File -FilePath $CurrentLogFile -Append -Encoding UTF8 + return + } else { + Write-Host "[$pidStr] AV1 REJECTED: Larger than source ($([math]::Round($sizeAV1/1GB,2)) GB). Deleting..." -ForegroundColor Red + Remove-Item $tempAV1 -Force + } + } + } + + # --- PHASE 3: HEVC FALLBACK --- + Write-Host "[$pidStr] Action: Trying HEVC Fallback..." -ForegroundColor Cyan + $tempHEVC = Join-Path $TempDir "$fileName.hevc.mkv" + $procHEVC = Run-FFmpeg $InputFile $tempHEVC $EncHEVC $HevcQ + + if ($procHEVC.ExitCode -eq 0 -and (Test-Path $tempHEVC)) { + $sizeHEVC = (Get-Item $tempHEVC).Length + + if ($sizeHEVC -lt $inputSize) { + $finalSavings = [math]::Round((1 - ($sizeHEVC / $inputSize)) * 100, 2) + Write-Host "[$pidStr] HEVC ACCEPTED: Saved ${finalSavings}%" -ForegroundColor Green + + $finalOut = $InputFile -replace '\.mkv$', '_hevc.mkv' -replace '\.mp4$', '_hevc.mp4' + Move-Item $tempHEVC -Destination $finalOut -Force + Remove-Item $InputFile -Force + Rename-Item $finalOut -NewName $fileName -Force + + $finalStatus = "Replaced (HEVC)" + $finalCodec = "HEVC" + $finalSize = $sizeHEVC + } else { + Write-Host "[$pidStr] HEVC REJECTED: Also larger. Keeping original." -ForegroundColor Red + Remove-Item $tempHEVC -Force + $finalStatus = "Rejected (Both Larger)" + $finalSize = $sizeHEVC + $finalCodec = "HEVC" + } + } + + "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss'),`"$InputFile`",$inputSize,$finalSize,$finalCodec,`"$finalStatus`",$finalSavings%" | Out-File -FilePath $CurrentLogFile -Append -Encoding UTF8 + + } finally { + Remove-Item $lockFile -Force -ErrorAction SilentlyContinue + } + } +} + +function Process-Directory { + param($TargetDirectory, $TargetLogFile, $PhaseName) + if (-not (Test-Path $TargetDirectory)) { return } + + Write-Host "`n=== PHASE: $PhaseName ===" -ForegroundColor Magenta + $files = Get-ChildItem -Path $TargetDirectory -Include *.mkv, *.mp4 -Recurse -File -ErrorAction SilentlyContinue + $videoFiles = $files | Where-Object { $_.Name -notmatch "_av1" -and $_.Name -notmatch "_hevc" } + + Write-Host "Found $($videoFiles.Count) files." -ForegroundColor Cyan + + $processed = 0 + while ($processed -lt $videoFiles.Count) { + $batchSize = [math]::Min($MaxJobs, ($videoFiles.Count - $processed)) + $currentBatch = $videoFiles[$processed..($processed + $batchSize - 1)] + $jobs = @() + + foreach ($file in $currentBatch) { + $jobs += Start-Job -InitializationScript $SharedFunctions -ScriptBlock { + param($f, $log, $lock, $temp, $av1q, $hevcq, $e1, $e2, $skip) + Process-VideoFile $f $log $lock $temp $av1q $hevcq $e1 $e2 $skip + } -ArgumentList $file.FullName, $TargetLogFile, $Global:LockDir, $Global:TEMP_DIR, $Av1Q, $HevcQ, $EncoderAV1, $EncoderHEVC, $SkipAV1 + } + + while (($jobs | Where-Object { $_.State -eq 'Running' }).Count -gt 0) { + $jobs | Receive-Job + Start-Sleep -Seconds 2 + } + $jobs | Receive-Job + $jobs | Remove-Job -Force + $processed += $batchSize + Write-Host "Progress Phase ${PhaseName}: $processed / $($videoFiles.Count)" -ForegroundColor Yellow + } +} + +Test-Tools +Process-Directory $TvDir $LogFileTV "TV-Shows" +Process-Directory $ContentDir $LogFileContent "Content" +Write-Host "`nDone." -ForegroundColor Green \ No newline at end of file diff --git a/optimize_library.py b/legacy/optimize_library.py similarity index 94% rename from optimize_library.py rename to legacy/optimize_library.py index c9c0491..14b2815 100644 --- a/optimize_library.py +++ b/legacy/optimize_library.py @@ -150,7 +150,15 @@ def get_probe_data(filepath): "-show_format", str(filepath), ] - res = subprocess.run(cmd, capture_output=True, text=True, check=True) + # FIX: Added encoding="utf-8" and errors="ignore" + res = subprocess.run( + cmd, + capture_output=True, + text=True, + check=True, + encoding="utf-8", + errors="ignore" + ) return json.loads(res.stdout) except Exception as e: print(f"Error probing {filepath}: {e}") @@ -235,6 +243,7 @@ def run_crf_search( target_vmaf + HW_ENCODER_VMAF_OFFSET if is_hw_encoder else target_vmaf ) + # --- Build the Command (Used for both running and parsing) --- cmd = [ "ab-av1", "crf-search", @@ -252,10 +261,9 @@ def run_crf_search( "4", ] - # Add encoder if not default - if encoder != "svt-av1": - if ab_av1_supports("crf-search", "--encoder"): - cmd.extend(["--encoder", encoder]) + # FORCE use of the specified encoder (Fixes the CPU default crash) + if ab_av1_supports("crf-search", "--encoder"): + cmd.extend(["--encoder", encoder]) # Hardware decode acceleration if use_hw and hwaccel: @@ -266,27 +274,19 @@ def run_crf_search( vmaf_label = f"VMAF {effective_vmaf}" if is_hw_encoder else f"VMAF {target_vmaf}" print(f" - Searching for CRF to hit {vmaf_label}...") + + # 1. First Run: Stream output to console returncode = run_command_streaming(cmd, f"crf-search {vmaf_label}") if returncode == 0: - # Parse output to find CRF and predicted size + # 2. Second Run: Capture output to parse the CRF + # FIX: Reuse 'cmd' and add encoding parameters to prevent charmap crashes res = subprocess.run( - [ - "ab-av1", - "crf-search", - "-i", - str(filepath), - "--min-vmaf", - str(target_vmaf), - "--preset", - str(preset), - "--temp-dir", - temp_dir, - "--samples", - "4", - ], + cmd, capture_output=True, text=True, + encoding="utf-8", + errors="ignore" ) lines = res.stdout.strip().split("\n") @@ -463,13 +463,18 @@ def process_file( """Process a single video file with intelligent VMAF targeting""" global _shutdown_requested - # Determine if THIS worker should use hardware encoder - use_hw = False - if use_hw_mode and hwaccel and hw_encoder in HW_ENCODERS: - use_hw = claim_hardware_worker() - - # HW worker uses hardware encoder; CPU workers use svt-av1 - encoder = hw_encoder if use_hw else "svt-av1" + # --- LOGIC FIX START --- + # If "use_hw_mode" (Hybrid) is FALSE, use the requested encoder for EVERYONE. + if not use_hw_mode: + encoder = hw_encoder + use_hw = (encoder in HW_ENCODERS) + else: + # Hybrid Mode: Only 1 worker gets HW, rest get CPU + use_hw = False + if hwaccel and hw_encoder in HW_ENCODERS: + use_hw = claim_hardware_worker() + encoder = hw_encoder if use_hw else "svt-av1" + # --- LOGIC FIX END --- filepath = Path(filepath) lock_file = Path(log_dir).parent / ".lock" / f"{filepath.name}.lock" @@ -502,9 +507,13 @@ def process_file( _processed_files.add(file_key) print(f"\n--- Processing: {filepath.name} ---") - print( - f" Source: {stats_before['codec']} @ {stats_before['bitrate']}k, {stats_before['size'] / (1024**3):.2f} GB" - ) + # Added 'errors="ignore"' to print to avoid Unicode crashes on console + try: + print( + f" Source: {stats_before['codec']} @ {stats_before['bitrate']}k, {stats_before['size'] / (1024**3):.2f} GB" + ) + except UnicodeEncodeError: + print(f" Source: {stats_before['codec']} @ {stats_before['bitrate']}k") if _shutdown_requested: return False diff --git a/run_optimisation.ps1 b/legacy/run_optimisation.ps1 similarity index 96% rename from run_optimisation.ps1 rename to legacy/run_optimisation.ps1 index d26f32e..bcac32e 100644 --- a/run_optimisation.ps1 +++ b/legacy/run_optimisation.ps1 @@ -28,7 +28,7 @@ function Invoke-OptimizeLibrary { exit 1 } - $pythonCmd = Get-Command python3, python, py -ErrorAction SilentlyContinue | Select-Object -First 1 + $pythonCmd = Get-Command "python" if (-not $pythonCmd) { Write-ColorOutput -Message "ERROR: Python 3 not found. Please install Python 3." -Color "Red" exit 1 diff --git a/run_optimisation.sh b/legacy/run_optimisation.sh similarity index 100% rename from run_optimisation.sh rename to legacy/run_optimisation.sh diff --git a/legacy/run_smart_encoder.ps1 b/legacy/run_smart_encoder.ps1 new file mode 100644 index 0000000..871f059 --- /dev/null +++ b/legacy/run_smart_encoder.ps1 @@ -0,0 +1,30 @@ +# Run Smart GPU Encoder +# Wrapper to ensure correct environment + +$ScriptPath = "$PSScriptRoot\smart_gpu_encoder.py" +$PythonPath = "python" # Or specific path like "C:\Python39\python.exe" + +# Directories (Change these to your actual paths) +$TvDir = "Z:\tv" +$ContentDir = "Z:\content" + +Write-Host "==========================================" -ForegroundColor Cyan +Write-Host " SMART GPU ENCODER (AMD AMF + VMAF)" -ForegroundColor Cyan +Write-Host "==========================================" -ForegroundColor Cyan +Write-Host "Script: $ScriptPath" +Write-Host "TV Dir: $TvDir" +Write-Host "Content Dir: $ContentDir" +Write-Host "" + +# Check if ab-av1 exists in bin +if (-not (Test-Path "$PSScriptRoot\bin\ab-av1.exe")) { + Write-Host "WARNING: ab-av1.exe not found in bin folder!" -ForegroundColor Red + Write-Host "Please download it and place it in $PSScriptRoot\bin\" + exit 1 +} + +# Run the python script +& $PythonPath $ScriptPath --tv-dir $TvDir --content-dir $ContentDir + +Write-Host "`nDone." -ForegroundColor Green +Read-Host "Press Enter to exit..." diff --git a/library_cache.json b/library_cache.json new file mode 100644 index 0000000..2237116 --- /dev/null +++ b/library_cache.json @@ -0,0 +1 @@ +["Z:\\tv\\Shows\\24\\Season 1\\24 - S01E01 - 12-00 A.M. - 1-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E02 - 1-00 A.M. - 2-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E03 - 2-00 A.M. - 3-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E04 - 3-00 A.M. - 4-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E05 - 4-00 A.M. - 5-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E06 - 5-00 A.M. - 6-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E07 - 6-00 A.M. - 7-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E08 - 7-00 A.M. - 8-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E09 - 8-00 A.M. - 9-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E10 - 9-00 A.M. - 10-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E11 - 10-00 A.M. - 11-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E12 - 11-00 A.M. - 12-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E13 - 12-00 P.M. - 1-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E14 - 1-00 P.M. - 2-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E15 - 2-00 P.M. - 3-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E16 - 3-00 P.M. - 4-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E17 - 4-00 P.M. - 5-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E18 - 5-00 P.M. - 6-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E19 - 6-00 P.M. - 7-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E20 - 7-00 P.M. - 8-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E21 - 8-00 P.M. - 9-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E22 - 9-00 P.M. - 10-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E23 - 10-00 P.M. - 11-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 1\\24 - S01E24 - 11-00 P.M. - 12-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E01 - Day 2 - 8-00 A.M. - 9-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E02 - Day 2 - 9-00 A.M. - 10-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E03 - Day 2 - 10-00 A.M. - 11-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E04 - Day 2 - 11-00 A.M. - 12-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E05 - Day 2 - 12-00 P.M. - 1-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E06 - Day 2 - 1-00 P.M. - 2-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E07 - Day 2 - 2-00 P.M. - 3-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E08 - Day 2 - 3-00 P.M. - 4-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E09 - Day 2 - 4-00 P.M. - 5-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E10 - Day 2 - 5-00 P.M. - 6-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E11 - Day 2 - 6-00 P.M. - 7-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E12 - Day 2 - 7-00 P.M. - 8-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E13 - Day 2 - 8-00 P.M. - 9-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E14 - Day 2 - 9-00 P.M. - 10-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E15 - Day 2 - 10-00 P.M. - 11-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E16 - Day 2 - 11-00 P.M. - 12-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E17 - Day 2 - 12-00 A.M. - 1-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E18 - Day 2 - 1-00 A.M. - 2-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E19 - Day 2 - 2-00 A.M. - 3-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E20 - Day 2 - 3-00 A.M. - 4-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E21 - Day 2 - 4-00 A.M. - 5-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E22 - Day 2 - 5-00 A.M. - 6-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E23 - Day 2 - 6-00 A.M. - 7-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 2\\24 - S02E24 - Day 2 - 7-00 A.M. - 8-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E01 - Day 3 - 1-00 P.M. - 2-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E02 - Day 3 - 2-00 P.M. - 3-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E03 - Day 3 - 3-00 P.M. - 4-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E04 - Day 3 - 4-00 P.M. - 5-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E05 - Day 3 - 5-00 P.M. - 6-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E06 - Day 3 - 6-00 P.M. - 7-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E07 - Day 3 - 7-00 P.M. - 8-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E08 - Day 3 - 8-00 P.M. - 9-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E09 - Day 3 - 9-00 P.M. - 10-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E10 - Day 3 - 10-00 P.M. - 11-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E11 - Day 3 - 11-00 P.M. - 12-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E12 - Day 3 - 12-00 A.M. - 1-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E13 - Day 3 - 1-00 A.M. - 2-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E14 - Day 3 - 2-00 A.M. - 3-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E15 - Day 3 - 3-00 A.M. - 4-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E16 - Day 3 - 4-00 A.M. - 5-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E17 - Day 3 - 5-00 A.M. - 6-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E18 - Day 3 - 6-00 A.M. - 7-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E19 - Day 3 - 7-00 A.M. - 8-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E20 - Day 3 - 8-00 A.M. - 9-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E21 - Day 3 - 9-00 A.M. - 10-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E22 - Day 3 - 10-00 A.M. - 11-00 A.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E23 - Day 3 - 11-00 A.M. - 12-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\24\\Season 3\\24 - S03E24 - Day 3 - 12-00 P.M. - 1-00 P.M Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 1\\Battlestar Galactica (2003) - S01E01 - 33 Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 1\\Battlestar Galactica (2003) - S01E02 - Water Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 1\\Battlestar Galactica (2003) - S01E03 - Bastille Day Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 1\\Battlestar Galactica (2003) - S01E04 - Act of Contrition Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 1\\Battlestar Galactica (2003) - S01E05 - You Can't Go Home Again Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 1\\Battlestar Galactica (2003) - S01E06 - Litmus Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 1\\Battlestar Galactica (2003) - S01E07 - Six Degrees of Separation Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 1\\Battlestar Galactica (2003) - S01E08 - Flesh and Bone Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 1\\Battlestar Galactica (2003) - S01E09 - Tigh Me Up, Tigh Me Down Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 1\\Battlestar Galactica (2003) - S01E10 - The Hand of God Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 1\\Battlestar Galactica (2003) - S01E11 - Colonial Day Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 1\\Battlestar Galactica (2003) - S01E12 - Kobol's Last Gleaming (1) Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 1\\Battlestar Galactica (2003) - S01E13 - Kobol's Last Gleaming (2) Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E01 - Scattered Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E02 - Valley of Darkness Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E03 - Fragged Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E04 - Resistance Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E05 - The Farm Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E06 - Home (1) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E07 - Home (2) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E08 - Final Cut Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E09 - Flight of the Phoenix Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E10 - Pegasus Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E11 - Resurrection Ship (1) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E12 - Resurrection Ship (2) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E13 - Epiphanies Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E14 - Black Market Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E15 - Scar Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E16 - Sacrifice Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E17 - The Captain's Hand Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E18 - Downloaded Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E19 - Lay Down Your Burdens (1) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 2\\Battlestar Galactica (2003) - S02E20 - Lay Down Your Burdens (2) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E01 - Occupation Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E02 - Precipice Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E03 - Exodus (1) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E04 - Exodus (2) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E05 - Collaborators Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E06 - Torn (1) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E07 - A Measure of Salvation (2) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E08 - Hero Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E09 - Unfinished Business Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E10 - The Passage Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E11 - The Eye of Jupiter (1) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E12 - Rapture (2) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E13 - Taking a Break from All Your Worries Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E14 - The Woman King Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E15 - A Day in the Life Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E16 - Dirty Hands Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E17 - Maelstrom Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E18 - The Son Also Rises Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E19 - Crossroads (1) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 3\\Battlestar Galactica (2003) - S03E20 - Crossroads (2) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E01 - He That Believeth in Me Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E02 - Six of One Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E03 - The Ties That Bind Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E04 - Escape Velocity Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E05 - The Road Less Traveled Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E06 - Faith Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E07 - Guess What's Coming to Dinner Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E08 - Sine Qua Non Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E09 - The Hub Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E10 - Revelations Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E11 - Sometimes a Great Notion Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E12 - A Disquiet Follows My Soul Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E13 - The Oath Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E14 - Blood on the Scales Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E15 - No Exit Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E16 - Deadlock Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E17 - Someone to Watch Over Me Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E18 - Islanded in a Stream of Stars Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E19 - Daybreak (1) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Battlestar Galactica (2003)\\Season 4\\Battlestar Galactica (2003) - S04E20 - Daybreak (2) Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E01 - Pilot Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E02 - The Tagger Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E03 - The Slump Bluray-1080p Proper.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E04 - M.E. Time Bluray-1080p Proper.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E05 - The Vulture Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E06 - Halloween Bluray-1080p Proper.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E07 - 48 Hours Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E08 - Old School Bluray-1080p Proper.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E09 - Sal's Pizza Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E10 - Thanksgiving Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E11 - Christmas Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E12 - Pontiac Bandit Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E13 - The Bet Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E14 - The Ebony Falcon Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E15 - Operation - Broken Feather Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E16 - The Party Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E17 - Full Boyle Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E18 - The Apartment Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E19 - Tactical Village Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E20 - Fancy Brudgom Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E21 - Unsolvable Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 1\\Brooklyn Nine-Nine - S01E22 - Charges and Specs Bluray-1080p.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E01 - Undercover Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E02 - Chocolate Milk Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E03 - The Jimmy Jab Games Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E04 - Halloween II Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E05 - The Mole Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E06 - Jake and Sophia Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E07 - Lockdown Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E08 - USPIS Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E09 - The Road Trip Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E10 - The Pontiac Bandit Returns Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E11 - Stakeout Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E12 - Beach House Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E13 - Payback Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E14 - Defense Rests Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E15 - Windbreaker City Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E16 - The Wednesday Incident Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E17 - Boyle-Linetti Wedding Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E18 - Captain Peralta Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E19 - Sabotage Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E20 - AC+DC Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E21 - Det. Dave Majors Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E22 - The Chopper Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 2\\Brooklyn Nine-Nine - S02E23 - Johnny and Dora Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E01 - New Captain Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E02 - The Funeral Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E03 - Boyle's Hunch Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E04 - The Oolong Slayer Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E05 - Halloween III Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E06 - Into the Woods Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E07 - The Mattress Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E08 - Ava Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E09 - The Swedes Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E10 - Yippie Kayak Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E11 - Hostage Situation Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E12 - 9 Days Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E13 - The Cruise Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E14 - Karen Peralta Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E15 - The 9-8 Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E16 - House Mouses Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E17 - Adrian Pimento Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E18 - Cheddar Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E19 - Terry Kitties Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E20 - Paranoia Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E21 - Maximum Security Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E22 - Bureau Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 3\\Brooklyn Nine-Nine - S03E23 - Greg and Larry Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E01 - Coral Palms (1) Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E02 - Coral Palms (2) Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E03 - Coral Palms (3) Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E04 - The Night Shift (1) Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E05 - Halloween IV Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E06 - Monster in the Closet Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E07 - Mr. Santiago Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E08 - Skyfire Cycle Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E09 - The Overmining Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E10 - Captain Latvia Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E11 - The Fugitive (1) Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E12 - The Fugitive (2) Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E13 - The Audit Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E14 - Serve & Protect Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E15 - The Last Ride Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E16 - Moo Moo Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E17 - Cop-Con Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E18 - Chasing Amy Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E19 - Your Honor Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E20 - The Slaughterhouse Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E21 - The Bank Job Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 4\\Brooklyn Nine-Nine - S04E22 - Crime & Punishment Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E01 - The Big House (1) Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E02 - The Big House (2) Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E03 - Kicks Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E04 - HalloVeen Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E05 - Bad Beat Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E06 - The Venue Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E07 - Two Turkeys Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E08 - Return to Skyfire Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E09 - 99 Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E10 - Game Night Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E11 - The Favor Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E12 - Safe House Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E13 - The Negotiation Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E14 - The Box Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E15 - The Puzzle Master Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E16 - NutriBoom Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E17 - DFW Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E18 - Gray Star Mutual Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E19 - Bachelor+ette Party Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E20 - Show Me Going Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E21 - White Whale Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 5\\Brooklyn Nine-Nine - S05E22 - Jake & Amy Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E01 - Honeymoon Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E02 - Hitchcock & Scully Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E03 - The Tattler Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E04 - Four Movements Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E05 - A Tale of Two Bandits Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E06 - The Crime Scene Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E07 - The Honeypot Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E08 - He Said, She Said Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E09 - The Golden Child Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E10 - Gintars Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E11 - The Therapist Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E12 - Casecation Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E13 - The Bimbo Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E14 - Ticking Clocks Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E15 - Return of the King Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E16 - Cinco de Mayo Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E17 - Sicko Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 6\\Brooklyn Nine-Nine - S06E18 - Suicide Squad Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 7\\Brooklyn Nine-Nine - S07E01 - Manhunter Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 7\\Brooklyn Nine-Nine - S07E02 - Captain Kim Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 7\\Brooklyn Nine-Nine - S07E03 - Pimemento Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 7\\Brooklyn Nine-Nine - S07E04 - The Jimmy Jab Games II Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 7\\Brooklyn Nine-Nine - S07E05 - Debbie Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 7\\Brooklyn Nine-Nine - S07E06 - Trying Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 7\\Brooklyn Nine-Nine - S07E07 - Ding Dong Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 7\\Brooklyn Nine-Nine - S07E08 - The Takeback Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 7\\Brooklyn Nine-Nine - S07E09 - Dillman Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 7\\Brooklyn Nine-Nine - S07E10 - Admiral Peralta Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 7\\Brooklyn Nine-Nine - S07E11 - Valloweaster Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 7\\Brooklyn Nine-Nine - S07E12 - Ransom Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 7\\Brooklyn Nine-Nine - S07E13 - Lights Out Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 8\\Brooklyn Nine-Nine - S08E01 - The Good Ones Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 8\\Brooklyn Nine-Nine - S08E02 - The Lake House Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 8\\Brooklyn Nine-Nine - S08E03 - Blue Flu Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 8\\Brooklyn Nine-Nine - S08E04 - Balancing Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 8\\Brooklyn Nine-Nine - S08E05 - PB & J Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 8\\Brooklyn Nine-Nine - S08E06 - The Set Up Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 8\\Brooklyn Nine-Nine - S08E07 - Game of Boyles Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 8\\Brooklyn Nine-Nine - S08E08 - Renewal Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 8\\Brooklyn Nine-Nine - S08E09 - The Last Day (1) Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Brooklyn Nine-Nine\\Season 8\\Brooklyn Nine-Nine - S08E10 - The Last Day (2) Bluray-1080p Remux.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 1\\Castle (2009) - S01E01 - Flowers for Your Grave WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 1\\Castle (2009) - S01E02 - Nanny McDead WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 1\\Castle (2009) - S01E03 - Hedge Fund Homeboys WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 1\\Castle (2009) - S01E04 - Hell Hath No Fury WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 1\\Castle (2009) - S01E05 - A Chill Goes Through Her Veins WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 1\\Castle (2009) - S01E06 - Always Buy Retail WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 1\\Castle (2009) - S01E07 - Home Is Where the Heart Stops WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 1\\Castle (2009) - S01E08 - Ghosts WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 1\\Castle (2009) - S01E09 - Little Girl Lost WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 1\\Castle (2009) - S01E10 - A Death in the Family WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E01 - Deep in Death WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E02 - The Double Down WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E03 - Inventing the Girl WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E04 - Fool Me Once WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E05 - When the Bough Breaks WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E06 - Vampire Weekend WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E07 - Famous Last Words WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E08 - Kill the Messenger WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E09 - Love Me Dead WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E10 - One Man's Treasure WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E11 - The Fifth Bullet WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E12 - A Rose for Everafter WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E13 - Sucker Punch WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E14 - The Third Man WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E15 - Suicide Squeeze WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E16 - The Mistress Always Spanks Twice WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E17 - Tick, Tick, Tick. (1) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E18 - Boom! (2) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E19 - Wrapped Up in Death WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E20 - The Late Shaft WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E21 - Den of Thieves WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E22 - Food to Die For WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E23 - Overkill WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 2\\Castle (2009) - S02E24 - A Deadly Game WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E01 - A Deadly Affair WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E02 - He's Dead, She's Dead WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E03 - Under the Gun WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E04 - Punked WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E05 - Anatomy of a Murder WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E06 - 3XK WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E07 - Almost Famous WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E08 - Murder Most Fowl WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E09 - Close Encounters of the Murderous Kind WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E10 - Last Call WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E11 - Nikki Heat WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E12 - Poof! You're Dead WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E13 - Knockdown WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E14 - Lucky Stiff WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E15 - The Final Nail WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E16 - Setup (1) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E17 - Countdown (2) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E18 - One Life to Lose WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E19 - Law & Murder WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E20 - Slice of Death WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E21 - The Dead Pool WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E22 - To Love and Die in L.A WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E23 - Pretty Dead WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 3\\Castle (2009) - S03E24 - Knockout WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E01 - Rise WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E02 - Heroes and Villains WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E03 - Head Case WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E04 - Kick the Ballistics WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E05 - Eye of the Beholder WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E06 - Demons WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E07 - Cops & Robbers WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E08 - Heartbreak Hotel WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E09 - Kill Shot WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E10 - Cuffed WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E11 - Till Death Do Us Part WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E12 - Dial M for Mayor WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E13 - An Embarrassment of Bitches WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E14 - The Blue Butterfly WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E15 - Pandora (1) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E16 - Linchpin (2) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E17 - Once Upon a Crime WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E18 - A Dance with Death WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E19 - 47 Seconds WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E20 - The Limey WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E21 - Headhunters WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E22 - Undead Again WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 4\\Castle (2009) - S04E23 - Always WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E01 - After the Storm WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E02 - Cloudy With a Chance of Murder WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E03 - Secret's Safe with Me WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E04 - Murder, He Wrote WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E05 - Probable Cause WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E06 - The Final Frontier WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E07 - Swan Song WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E08 - After Hours WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E09 - Secret Santa WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E10 - Significant Others WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E11 - Under the Influence WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E12 - Death Gone Crazy WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E13 - Recoil WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E14 - Reality Star Struck WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E15 - Target (1) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E16 - Hunt (2) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E17 - Scared to Death WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E18 - The Wild Rover WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E19 - The Lives of Others WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E20 - The Fast and the Furriest WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E21 - The Squab and the Quail WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E22 - Still WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E23 - The Human Factor WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 5\\Castle (2009) - S05E24 - Watershed WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E01 - Valkyrie (1) WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E02 - Dreamworld (2) WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E03 - Need to Know WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E04 - Number One Fan WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E05 - Time Will Tell WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E06 - Get a Clue WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E07 - Like Father, Like Daughter WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E08 - A Murder Is Forever WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E09 - Disciple WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E10 - The Good, The Bad & The Baby WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E11 - Under Fire WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E12 - Deep Cover WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E13 - Limelight WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E14 - Dressed to Kill WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E15 - Smells Like Teen Spirit WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E16 - Room 147 WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E17 - In the Belly of the Beast WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E18 - The Way of the Ninja WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E19 - The Greater Good WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E20 - That '70s Show WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E21 - Law & Boarder WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E22 - Veritas WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 6\\Castle (2009) - S06E23 - For Better or Worse WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E01 - Driven WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E02 - Montreal WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E03 - Clear & Present Danger WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E04 - Child's Play WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E05 - Meme Is Murder WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E06 - The Time of Our Lives WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E07 - Once Upon a Time in the West WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E08 - Kill Switch WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E09 - Last Action Hero WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E10 - Bad Santa WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E11 - Castle, P.I WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E12 - Private Eye Caramba! WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E13 - I, Witness WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E14 - Resurrection (1) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E15 - Reckoning (2) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E16 - The Wrong Stuff WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E17 - Hong Kong Hustle WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E18 - At Close Range WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E19 - Habeas Corpse WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E20 - Sleeper WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E21 - In Plane Sight WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E22 - Dead From New York WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 7\\Castle (2009) - S07E23 - Hollander's Woods WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E01 - XY (1) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E02 - XX (2) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E03 - PhDead WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E04 - What Lies Beneath WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E05 - The Nose WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E06 - Cool Boys WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E07 - The Last Seduction WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E08 - Mr. & Mrs. Castle WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E09 - Tone Death WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E10 - Witness for the Prosecution WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E11 - Dead Red WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E12 - The Blame Game WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E13 - And Justice for All WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E14 - The G.D.S WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E15 - Fidelis Ad Mortem WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E16 - Heartbreaker WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E17 - Death Wish WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E18 - Backstabber WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E19 - Dead Again WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E20 - Much Ado About Murder WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E21 - Hell to Pay WEBDL-720p.mkv", "Z:\\tv\\Shows\\Castle (2009)\\Season 8\\Castle (2009) - S08E22 - Crossfire WEBDL-720p.mkv", "Z:\\tv\\Shows\\Citadel - Honey Bunny\\Season 1\\Citadel - Honey Bunny - S01E01 - Dancing and Fighting WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\Citadel - Honey Bunny\\Season 1\\Citadel - Honey Bunny - S01E02 - Talwar WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Citadel - Honey Bunny\\Season 1\\Citadel - Honey Bunny - S01E03 - Spy Game WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Citadel - Honey Bunny\\Season 1\\Citadel - Honey Bunny - S01E04 - Home WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Citadel - Honey Bunny\\Season 1\\Citadel - Honey Bunny - S01E05 - Traitor WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Citadel - Honey Bunny\\Season 1\\Citadel - Honey Bunny - S01E06 - Play WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E01 - I Hardly Recognized You WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E02 - Spit It Out WEBRip-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E03 - Guilt is for Insecure People WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E04 - Private as a Circus WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E05 - Company Slut WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E06 - I Only Exist for Me WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E07 - A Taste of Your Own Medicine WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E08 - The Best Things in Life WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E09 - Rotten Things WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E10 - A Well-Dressed Tarantula WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E11 - I Answer to No Man WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E12 - Promises You Can't Keep WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E13 - Nothing But Trouble WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E14 - The Gospel According to Blake Carrington WEBRip-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E15 - Our Turn Now WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E16 - Poor Little Rich Girl WEBRip-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E17 - Enter Alexis WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E18 - Don't Con a Con Artist WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E19 - Use or Be Used WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E20 - A Line From the Past WEBRip-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E21 - Trashy Little Tramp WEBRip-1080p.mkv", "Z:\\tv\\Shows\\Dynasty (2017)\\Season 1\\Dynasty (2017) - S01E22 - Dead Scratch WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E01 - Pilot WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E02 - While You Were Sleeping WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E03 - Child Predator WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E04 - The Rat Race WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E05 - Lesser Evils WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E06 - Flight Risk WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E07 - One Way to Get Off WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E08 - The Long Fuse WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E09 - You Do It to Yourself WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E10 - The Leviathan WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E11 - Dirty Laundry WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E12 - M WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E13 - The Red Team WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E14 - The Deductionist WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E15 - A Giant Gun, Filled with Drugs WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E16 - Details WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E17 - Possibility Two WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E18 - Deja Vu All Over Again WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E19 - Snow Angels WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E20 - Dead Man's Switch WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E21 - A Landmark Story WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E22 - Risk Management WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E23 - The Woman (1) WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Elementary\\Season 1\\Elementary - S01E24 - Heroine (2) WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Fallout\\Season 1\\Fallout - S01E01 - The End Bluray-2160p Remux.mkv", "Z:\\tv\\Shows\\Fallout\\Season 1\\Fallout - S01E02 - The Target Bluray-2160p Remux.mkv", "Z:\\tv\\Shows\\Fallout\\Season 1\\Fallout - S01E03 - The Head Bluray-2160p Remux.mkv", "Z:\\tv\\Shows\\Fallout\\Season 1\\Fallout - S01E04 - The Ghouls Bluray-2160p Remux.mkv", "Z:\\tv\\Shows\\Fallout\\Season 1\\Fallout - S01E05 - The Past Bluray-2160p Remux.mkv", "Z:\\tv\\Shows\\Fallout\\Season 1\\Fallout - S01E06 - The Trap Bluray-2160p Remux.mkv", "Z:\\tv\\Shows\\Fallout\\Season 1\\Fallout - S01E07 - The Radio Bluray-2160p Remux.mkv", "Z:\\tv\\Shows\\Fallout\\Season 1\\Fallout - S01E08 - The Beginning Bluray-2160p Remux.mkv", "Z:\\tv\\Shows\\Fallout\\Season 2\\Fallout - S02E01 - The Innovator WEBDL-2160p Proper.mkv", "Z:\\tv\\Shows\\Fallout\\Season 2\\Fallout - S02E02 - The Golden Rule WEBDL-2160p Proper.mkv", "Z:\\tv\\Shows\\Fallout\\Season 2\\Fallout - S02E03 - The Profligate WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 1\\Homeland - S01E01 - Pilot Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 1\\Homeland - S01E02 - Grace Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 1\\Homeland - S01E03 - Clean Skin Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 1\\Homeland - S01E04 - Semper I Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 1\\Homeland - S01E05 - Blind Spot Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 1\\Homeland - S01E06 - The Good Soldier Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 1\\Homeland - S01E07 - The Weekend Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 1\\Homeland - S01E08 - Achilles Heel Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 1\\Homeland - S01E09 - Crossfire Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 1\\Homeland - S01E10 - Representative Brody Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 1\\Homeland - S01E11 - The Vest Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 1\\Homeland - S01E12 - Marine One Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 2\\Homeland - S02E01 - The Smile Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 2\\Homeland - S02E02 - Beirut Is Back Bluray-1080p Proper.mkv", "Z:\\tv\\Shows\\Homeland\\Season 2\\Homeland - S02E03 - State of Independence Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 2\\Homeland - S02E04 - New Car Smell Bluray-1080p Proper.mkv", "Z:\\tv\\Shows\\Homeland\\Season 2\\Homeland - S02E05 - Q&A Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 2\\Homeland - S02E06 - A Gettysburg Address Bluray-1080p Proper.mkv", "Z:\\tv\\Shows\\Homeland\\Season 2\\Homeland - S02E07 - The Clearing Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 2\\Homeland - S02E08 - I'll Fly Away Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 2\\Homeland - S02E09 - Two Hats Bluray-1080p Proper.mkv", "Z:\\tv\\Shows\\Homeland\\Season 2\\Homeland - S02E10 - Broken Hearts Bluray-1080p Proper.mkv", "Z:\\tv\\Shows\\Homeland\\Season 2\\Homeland - S02E11 - In Memoriam Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 2\\Homeland - S02E12 - The Choice Bluray-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 3\\Homeland - S03E01 - Tin Man Is Down Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 3\\Homeland - S03E02 - Uh. Oh. Ah Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 3\\Homeland - S03E03 - Tower of David Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 3\\Homeland - S03E04 - Game On Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 3\\Homeland - S03E05 - The Yoga Play Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 3\\Homeland - S03E06 - Still Positive Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 3\\Homeland - S03E07 - Gerontion Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 3\\Homeland - S03E08 - A Red Wheelbarrow Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 3\\Homeland - S03E09 - One Last Thing Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 3\\Homeland - S03E10 - Good Night Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 3\\Homeland - S03E11 - Big Man in Tehran Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 3\\Homeland - S03E12 - The Star Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 4\\Homeland - S04E01 - The Drone Queen Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 4\\Homeland - S04E02 - Trylon and Perisphere Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 4\\Homeland - S04E03 - Shalwar Kameez Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 4\\Homeland - S04E04 - Iron in the Fire Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 4\\Homeland - S04E05 - About a Boy Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 4\\Homeland - S04E06 - From A to B and Back Again Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 4\\Homeland - S04E07 - Redux Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 4\\Homeland - S04E08 - Halfway to a Donut Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 4\\Homeland - S04E09 - There's Something Else Going On Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 4\\Homeland - S04E10 - 13 Hours in Islamabad Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 4\\Homeland - S04E11 - Krieg Nicht Lieb Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 4\\Homeland - S04E12 - Long Time Coming Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 5\\Homeland - S05E01 - Separation Anxiety Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 5\\Homeland - S05E02 - The Tradition of Hospitality Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 5\\Homeland - S05E03 - Super Powers Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 5\\Homeland - S05E04 - Why Is This Night Different Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 5\\Homeland - S05E05 - Better Call Saul Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 5\\Homeland - S05E06 - Parabiosis Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 5\\Homeland - S05E07 - Oriole Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 5\\Homeland - S05E08 - All About Allison Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 5\\Homeland - S05E09 - The Litvinov Ruse Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 5\\Homeland - S05E10 - New Normal Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 5\\Homeland - S05E11 - Our Man in Damascus Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 5\\Homeland - S05E12 - A False Glimmer Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 6\\Homeland - S06E01 - Fair Game Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 6\\Homeland - S06E02 - The Man in the Basement Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 6\\Homeland - S06E03 - The Covenant Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 6\\Homeland - S06E04 - A Flash of Light Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 6\\Homeland - S06E05 - Casus Belli Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 6\\Homeland - S06E06 - The Return Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 6\\Homeland - S06E07 - Imminent Risk Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 6\\Homeland - S06E08 - Alt.Truth Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 6\\Homeland - S06E09 - Sock Puppets Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 6\\Homeland - S06E10 - The Flag House Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 6\\Homeland - S06E11 - R Is for Romeo Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 6\\Homeland - S06E12 - America First Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 7\\Homeland - S07E01 - Enemy of the State Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 7\\Homeland - S07E02 - Rebel Rebel Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 7\\Homeland - S07E03 - Standoff Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 7\\Homeland - S07E04 - Like Bad at Things Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 7\\Homeland - S07E05 - Active Measures Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 7\\Homeland - S07E06 - Species Jump Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 7\\Homeland - S07E07 - Andante Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 7\\Homeland - S07E08 - Lies, Amplifiers, F-king Twitter Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 7\\Homeland - S07E09 - Useful Idiot Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 7\\Homeland - S07E10 - Clarity Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 7\\Homeland - S07E11 - All In Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 7\\Homeland - S07E12 - Paean to the People Bluray-1080p.mp4", "Z:\\tv\\Shows\\Homeland\\Season 8\\Homeland - S08E01 - Deception Indicated WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 8\\Homeland - S08E02 - Catch and Release WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 8\\Homeland - S08E03 - False Friends WEBRip-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 8\\Homeland - S08E04 - Chalk One Up WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 8\\Homeland - S08E05 - Chalk Two Down WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\Homeland\\Season 8\\Homeland - S08E06 - Two Minutes WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 8\\Homeland - S08E07 - F-ker Shot Me WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 8\\Homeland - S08E08 - Threnody(s) WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 8\\Homeland - S08E09 - In Full Flight WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 8\\Homeland - S08E10 - Designated Driver WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 8\\Homeland - S08E11 - The English Teacher WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Homeland\\Season 8\\Homeland - S08E12 - Prisoners of War WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E01 - Pilot Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E02 - The Bicycle Thief Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E03 - Come Fly with Me Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E04 - The Incident Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E05 - Coal Digger Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E06 - Run for Your Wife Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E07 - En Garde Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E08 - Great Expectations Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E09 - Fizbo Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E10 - Undeck the Halls Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E11 - Up All Night Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E12 - Not in My House Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E13 - Fifteen Percent Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E14 - Moon Landing Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E15 - My Funky Valentine Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E16 - Fears Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E17 - Truth Be Told Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E18 - Starry Night Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E19 - Game Changer Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E20 - Benched Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E21 - Travels with Scout Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E22 - Airport 2010 Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E23 - Hawaii Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 1\\Modern Family - S01E24 - Family Portrait Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E01 - I Love a Parade WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E02 - Kiss and Tell WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E03 - A Sketchy Area WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E04 - Torn Between Two Lovers WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E05 - Good Grief WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E06 - On the Same Paige WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E07 - Did the Chicken Cross the Road WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E08 - Kids These Days WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E09 - Putting Down Roots WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E10 - Stuck in a Moment WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E11 - A Moving Day WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E12 - Blasts from the Past WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E13 - Whanex WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E14 - We Need to Talk About Lily WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E15 - SuperShowerBabyBowl WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E16 - Red Alert WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E17 - The Wild WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E18 - Stand By Your Man WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E19 - Yes-Woman WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E20 - Can't Elope WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E21 - Commencement WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 10\\Modern Family - S10E22 - A Year of Birthdays WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E01 - New Kids on the Block WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E02 - Snapped WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E03 - Perfect Pairs WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E04 - Pool Party WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E05 - The Last Halloween WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E06 - A Game of Chicken WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E07 - The Last Thanksgiving WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E08 - Tree's a Crowd WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E09 - The Last Christmas WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E10 - The Prescott WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E11 - Legacy WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E12 - Dead on a Rival WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E13 - Paris WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E14 - Spuds WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E15 - Baby Steps WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E16 - I'm Going to Miss This WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 11\\Modern Family - S11E17-E18 - Finale WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E01 - The Old Wagon Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E02 - The Kiss Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E03 - Earthquake Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E04 - Strangers on a Treadmill Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E05 - Unplugged Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E06 - Halloween Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E07 - Chirp Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E08 - Manny Get Your Gun Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E09 - Mother Tucker Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E10 - Dance Dance Revelation Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E11 - Slow Down Your Neighbors Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E12 - Our Children, Ourselves Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E13 - Caught in the Act Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E14 - Bixby's Back Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E15 - Princess Party Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E16 - Regrets Only Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E17 - Two Monkeys and a Panda Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E18 - Boys' Night Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E19 - The Musical Man Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E20 - Someone to Watch Over Lily Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E21 - Mother's Day Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E22 - Good Cop, Bad Dog Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E23 - See You Next Fall Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 2\\Modern Family - S02E24 - The One That Got Away Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E01 - Dude Ranch Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E02 - When Good Kids Go Bad Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E03 - Phil on Wire Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E04 - Door to Door Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E05 - Hit and Run Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E06 - Go Bullfrogs! Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E07 - Treehouse Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E08 - After the Fire Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E09 - Punkin Chunkin Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E10 - Express Christmas Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E11 - Lifetime Supply Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E12 - Egg Drop Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E13 - Little Bo Bleep Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E14 - Me! Jealous Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E15 - Aunt Mommy Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E16 - Virgin Territory Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E17 - Leap Day Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E18 - Send Out the Clowns Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E19 - Election Day Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E20 - The Last Walt Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E21 - Planes, Trains and Cars Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E22 - Disneyland Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E23 - Tableau Vivant Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 3\\Modern Family - S03E24 - Baby on Board Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E01 - Bringing Up Baby Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E02 - Schooled Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E03 - Snip Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E04 - The Butler's Escape Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E05 - Open House of Horrors Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E06 - Yard Sale Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E07 - Arrested Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E08 - Mistery Date Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E09 - When a Tree Falls Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E10 - Diamond in the Rough Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E11 - New Year's Eve Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E12 - Party Crasher Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E13 - Fulgencio Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E14 - A Slight at the Opera Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E15 - Heart Broken Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E16 - Bad Hair Day Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E17 - Best Men Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E18 - The Wow Factor Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E19 - The Future Dunphys Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E20 - Flip Flop Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E21 - Career Day Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E22 - My Hero Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E23 - Games People Play Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 4\\Modern Family - S04E24 - Goodnight, Gracie Bluray-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E01 - Suddenly, Last Summer WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E02 - First Days WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E03 - Larry's Wife WEBDL-720p REAL.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E04 - Farm Strong WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E05 - The Late Show WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E06 - The Help WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E07 - A Fair to Remember WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E08 - ClosetCon '13 WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E09 - The Big Game WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E10 - The Old Man & the Tree WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E11 - And One to Grow On WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E12 - Under Pressure WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E13 - Three Dinners WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E14 - iSpy WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E15 - The Feud WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E16 - Spring-a-Ding-Fling WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E17 - Other People's Children WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E18 - Las Vegas WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E19 - A Hard Jay's Night WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E20 - Australia WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E21 - Sleeper WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E22 - Message Received WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E23 - The Wedding (1) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 5\\Modern Family - S05E24 - The Wedding (2) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E01 - The Long Honeymoon WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E02 - Do Not Push WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E03 - The Cold WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E04 - Marco Polo WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E05 - Won't You Be Our Neighbor WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E06 - Halloween 3 - AwesomeLand WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E07 - Queer Eyes, Full Hearts WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E08 - Three Turkeys WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E09 - Strangers in the Night WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E10 - Haley's 21st Birthday WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E11 - The Day We Almost Died WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E12 - The Big Guns WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E13 - Rash Decisions WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E14 - Valentine's Day 4 - Twisted Sister WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E15 - Fight or Flight WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E16 - Connection Lost WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E17 - Closet! You'll Love It! WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E18 - Spring Break WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E19 - Grill, Interrupted WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E20 - Knock 'Em Down WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E21 - Integrity WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E22 - Patriot Games WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E23 - Crying Out Loud WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 6\\Modern Family - S06E24 - American Skyper WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E01 - Summer Lovin' WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E02 - The Day Alex Left for College WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E03 - The Closet Case WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E04 - She Crazy WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E05 - The Verdict WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E06 - The More You Ignore Me WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E07 - Phil's Sexy, Sexy House WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E08 - Clean Out Your Junk Drawer WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E09 - White Christmas WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E10 - Playdates WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E11 - Spread Your Wings WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E12 - Clean for a Day WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E13 - Thunk in the Trunk WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E14 - The Storm WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E15 - I Don't Know How She Does It WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E16 - The Cover-Up WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E17 - Express Yourself WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E18 - The Party WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E19 - Man Shouldn't Lie WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E20 - Promposal WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E21 - Crazy Train WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 7\\Modern Family - S07E22 - Double Click WEBRip-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E01 - A Tale of Three Cities WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E02 - A Stereotypical Day WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E03 - Blindsided WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E04 - Weathering Heights WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E05 - Halloween 4 - The Revenge of Rod Skyhook WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E06 - Grab It WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E07 - Thanksgiving Jamboree WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E08 - The Alliance WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E09 - Snow Ball WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E10 - Ringmaster Keifth WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E11 - Sarge & Pea WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E12 - Do You Believe in Magic WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E13 - Do It Yourself WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E14 - Heavy Is the Head WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E15 - Finding Fizbo WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E16 - Basketball WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E17 - Pig Moon Rising WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E18 - Five Minutes WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E19 - Frank's Wedding WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E20 - All Things Being Equal WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E21 - Alone Time WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 8\\Modern Family - S08E22 - The Graduates WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E01 - Lake Life WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E02 - The Long Goodbye WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E03 - Catch of the Day WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E04 - Sex, Lies & Kickball WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E05 - It's the Great Pumpkin, Phil Dunphy WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E06 - Ten Years Later WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E07 - Winner Winner Turkey Dinner WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E08 - Brushes with Celebrity WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E09 - Tough Love WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E10 - No Small Feet WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E11 - He Said, She Shed WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E12 - Dear Beloved Family WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E13 - In Your Head WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E14 - Written in the Stars WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E15 - Spanks for the Memories WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E16 - Wine Weekend WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E17 - Royal Visit WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E18 - Daddy Issues WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E19 - CHiPs and Salsa WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E20 - Mother! WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E21 - The Escape WEBDL-720p.mkv", "Z:\\tv\\Shows\\Modern Family\\Season 9\\Modern Family - S09E22 - Clash of Swords WEBDL-720p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E01 - Pilot WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E02 - Kryptonite WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E03 - Wedding WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E04 - Naked WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E05 - Cece Crashes WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E06 - Thanksgiving WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E07 - Bells WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E08 - Bad in Bed WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E09 - The 23rd WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E10 - The Story of the 50 WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E11 - Jess and Julia WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E12 - The Landlord WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E13 - Valentine's Day WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E14 - Bully WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E15 - Injured WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E16 - Control WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E17 - Fancyman Part 1 WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E18 - Fancyman Part 2 WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E19 - Secrets WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E20 - Normal WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E21 - Kids WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E22 - Tomatoes WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E23 - Backslide WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 1\\New Girl - S01E24 - See Ya WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E01 - Re-Launch WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E02 - Katie WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E03 - Fluffer WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E04 - Neighbors WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E05 - Models WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E06 - Halloween WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E07 - Menzies WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E08 - Parents WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E09 - Eggs WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E10 - Bathtub WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E11 - Santa WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E12 - Cabin WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E13 - A Father's Love WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E14 - Pepperwood WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E15 - Cooler WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E16 - Table 34 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E17 - Parking Spot WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E18 - TinFinity WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E19 - Quick Hardening Caulk WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E20 - Chicago WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E21 - First Date WEBRip-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E22 - Bachelorette Party WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E23 - Virgins WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E24 - Winston's Birthday WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 2\\New Girl - S02E25 - Elaine's Big Day WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E01 - All In WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E02 - Nerd WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E03 - Double Date WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E04 - The Captain WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E05 - The Box WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E06 - Keaton WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E07 - Coach WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E08 - Menus WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E09 - Longest Night Ever WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E10 - Thanksgiving III WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E11 - Clavado En Un Bar WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E12 - Basketsball WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E13 - Birthday WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E14 - Prince WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E15 - Exes WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E16 - Sister WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E17 - Sister II WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E18 - Sister III WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E19 - Fired Up WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E20 - Mars Landing WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E21 - Big News WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E22 - Dance WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 3\\New Girl - S03E23 - Cruise WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E01 - The Last Wedding WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E02 - Dice WEBRip-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E03 - Julie Berkman's Older Sister WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E04 - Micro WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E05 - Landline WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E06 - Background Check WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E07 - Goldmine WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E08 - Teachers WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E09 - Thanksgiving IV WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E10 - Girl Fight WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E11 - LAXmas WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E12 - Shark WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E13 - Coming Out WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E14 - Swuit WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E15 - The Crawl WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E16 - Oregon WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E17 - Spiderhunt WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E18 - Walk of Shame WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E19 - The Right Thing WEBRip-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E20 - Par 5 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E21 - Panty Gate WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 4\\New Girl - S04E22 - Clean Break WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E01 - Big Mama P WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E02 - What About Fred WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E03 - Jury Duty WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E04 - No Girl WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E05 - Bob & Carol & Nick & Schmidt WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E06 - Reagan WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E07 - Wig WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E08 - The Decision WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E09 - Heat Wave WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E10 - Goosebumps Walkaway WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E11 - The Apartment WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E12 - D-Day WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E13 - Sam, Again WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E14 - 300 Feet WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E15 - Jeff Day WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E16 - Helmet WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E17 - Road Trip WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E18 - A Chill Day In WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E19 - Dress WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E20 - Return To Sender WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E21 - Wedding Eve WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 5\\New Girl - S05E22 - Landing Gear WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E01 - House Hunt WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E02 - Hubbedy Bubby WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E03 - Single and Sufficient WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E04 - Homecoming (2) WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E05 - Jaipur Aviv WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E06 - Ready WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E07 - Last Thanksgiving WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E08 - James Wonder WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E09 - Es Good WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E10 - Christmas Eve Eve WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E11 - Raisin's Back WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E12 - The Cubicle WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E13 - Cece's Boys WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E14 - The Hike WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E15 - Glue WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E16 - Operation - Bobcat WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E17 - Rumspringa WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E18 - Young Adult WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E19 - Socalyalcon VI WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E20 - Misery WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E21 - San Diego WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 6\\New Girl - S06E22 - Five Stars for Beezus WEBRip-1080p.mp4", "Z:\\tv\\Shows\\New Girl\\Season 7\\New Girl - S07E01 - About Three Years Later WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 7\\New Girl - S07E02 - Tuesday Meeting WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\New Girl\\Season 7\\New Girl - S07E03 - Lillypads WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 7\\New Girl - S07E04 - Where the Road Goes WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 7\\New Girl - S07E05 - Godparents WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 7\\New Girl - S07E06 - Mario WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 7\\New Girl - S07E07 - The Curse of the Pirate Bride WEBDL-1080p.mkv", "Z:\\tv\\Shows\\New Girl\\Season 7\\New Girl - S07E08 - Engram Pattersky WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Severance\\Season 1\\Severance - S01E01 - Good News About Hell WEBDL-2160p Proper.mkv", "Z:\\tv\\Shows\\Severance\\Season 1\\Severance - S01E02 - Half Loop WEBDL-2160p Proper.mkv", "Z:\\tv\\Shows\\Severance\\Season 1\\Severance - S01E03 - In Perpetuity WEBDL-2160p Proper.mkv", "Z:\\tv\\Shows\\Severance\\Season 1\\Severance - S01E04 - The You You Are WEBDL-2160p.mkv", "Z:\\tv\\Shows\\Severance\\Season 1\\Severance - S01E05 - The Grim Barbarity of Optics and Design WEBDL-2160p.mkv", "Z:\\tv\\Shows\\Severance\\Season 1\\Severance - S01E06 - Hide and Seek WEBDL-2160p.mkv", "Z:\\tv\\Shows\\Severance\\Season 1\\Severance - S01E07 - Defiant Jazz WEBDL-2160p Proper.mkv", "Z:\\tv\\Shows\\Severance\\Season 1\\Severance - S01E08 - What\u2019s for Dinner WEBDL-2160p.mkv", "Z:\\tv\\Shows\\Severance\\Season 1\\Severance - S01E09 - The We We Are WEBDL-2160p.mkv", "Z:\\tv\\Shows\\Severance\\Season 2\\Severance - S02E01 - Hello, Ms. Cobel WEBDL-2160p.mkv", "Z:\\tv\\Shows\\Severance\\Season 2\\Severance - S02E02 - Goodbye, Mrs. Selvig WEBDL-2160p.mkv", "Z:\\tv\\Shows\\Severance\\Season 2\\Severance - S02E03 - Who Is Alive WEBDL-2160p.mkv", "Z:\\tv\\Shows\\Severance\\Season 2\\Severance - S02E04 - Woe\u2019s Hollow WEBDL-2160p.mkv", "Z:\\tv\\Shows\\Severance\\Season 2\\Severance - S02E05 - Trojan\u2019s Horse WEBDL-2160p.mkv", "Z:\\tv\\Shows\\Severance\\Season 2\\Severance - S02E06 - Attila WEBDL-2160p.mkv", "Z:\\tv\\Shows\\Severance\\Season 2\\Severance - S02E07 - Chikhai Bardo WEBDL-2160p.mkv", "Z:\\tv\\Shows\\Severance\\Season 2\\Severance - S02E08 - Sweet Vitriol WEBDL-2160p.mkv", "Z:\\tv\\Shows\\Severance\\Season 2\\Severance - S02E09 - The After Hours WEBDL-2160p.mkv", "Z:\\tv\\Shows\\Severance\\Season 2\\Severance - S02E10 - Cold Harbor WEBDL-2160p.mkv", "Z:\\tv\\Shows\\Sherlock\\Season 1\\Sherlock - S01E01 - A Study in Pink Bluray-1080p.mkv", "Z:\\tv\\Shows\\Sherlock\\Season 1\\Sherlock - S01E02 - The Blind Banker Bluray-1080p.mkv", "Z:\\tv\\Shows\\Sherlock\\Season 1\\Sherlock - S01E03 - The Great Game Bluray-1080p.mkv", "Z:\\tv\\Shows\\Sherlock\\Season 2\\Sherlock - S02E01 - A Scandal in Belgravia Bluray-1080p Proper.mkv", "Z:\\tv\\Shows\\Sherlock\\Season 2\\Sherlock - S02E02 - The Hounds of Baskerville Bluray-1080p.mkv", "Z:\\tv\\Shows\\Sherlock\\Season 2\\Sherlock - S02E03 - The Reichenbach Fall Bluray-1080p.mkv", "Z:\\tv\\Shows\\Sherlock\\Season 3\\Sherlock - S03E01 - The Empty Hearse Bluray-1080p.mkv", "Z:\\tv\\Shows\\Sherlock\\Season 3\\Sherlock - S03E02 - The Sign of Three Bluray-1080p.mkv", "Z:\\tv\\Shows\\Sherlock\\Season 3\\Sherlock - S03E03 - His Last Vow Bluray-1080p.mkv", "Z:\\tv\\Shows\\Sherlock\\Season 4\\Sherlock - S04E01 - The Six Thatchers Bluray-1080p.mkv", "Z:\\tv\\Shows\\Sherlock\\Season 4\\Sherlock - S04E02 - The Lying Detective Bluray-1080p.mkv", "Z:\\tv\\Shows\\Sherlock\\Season 4\\Sherlock - S04E03 - The Final Problem Bluray-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E01 - Episode 1 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E02 - Episode 2 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E03 - Episode 3 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E04 - Episode 4 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E05 - Episode 5 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E06 - Episode 6 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E07 - Episode 7 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E08 - Episode 8 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E09 - Episode 9 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E10 - Episode 10 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E11 - Episode 11 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E12 - Episode 12 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E13 - Episode 13 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E14 - Episode 14 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E15 - Episode 15 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E16 - Episode 16 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E17 - Episode 17 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E18 - Episode 18 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E19 - Episode 19 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E20 - Episode 20 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E21 - Episode 21 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E22 - Episode 22 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E23 - Episode 23 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E24 - Episode 24 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E25 - Episode 25 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E26 - Episode 26 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E27 - Episode 27 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E28 - Episode 28 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Speed and Love\\Season 1\\Speed and Love - S01E29 - Episode 29 WEBDL-1080p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 1\\Superstore - S01E01 - Pilot WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 1\\Superstore - S01E02 - Magazine Profile WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 1\\Superstore - S01E03 - Shots and Salsa WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 1\\Superstore - S01E04 - Mannequin WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 1\\Superstore - S01E05 - Shoplifter WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 1\\Superstore - S01E06 - Secret Shopper WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 1\\Superstore - S01E07 - Color Wars WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 1\\Superstore - S01E08 - Wedding Day Sale WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 1\\Superstore - S01E09 - All-Nighter WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 1\\Superstore - S01E10 - Demotion WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 1\\Superstore - S01E11 - Labor WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E01 - Strike WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E02 - Back to Work WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E03 - Guns, Pills and Birds WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E04 - Spokesman Scandal WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E05 - Dog Adoption Day WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E06 - Halloween Theft WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E07 - Election Day WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E08 - Seasonal Help WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E09 - Black Friday WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E10 - Lost and Found WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E11 - Rebranding WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E12 - Ladies' Lunch WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E13 - Valentine's Day WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E14 - Super Hot Store WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E15 - Wellness Fair WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E16 - Integrity Award WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E17 - Mateo's Last Day WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E18 - Glenn's Kids WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E19 - Spring Cleaning WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E20 - Cheyenne's Wedding WEBDL-720p REAL.mkv", "Z:\\tv\\Shows\\Superstore\\Season 2\\Superstore - S02E21 - Tornado WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E21 - Aftermath WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E10 - High Volume Store WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E09 - Golden Globes Party WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E22 - Town Hall WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E17 - District Manager WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E02 - Brett's Dead WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E08 - Viral Video WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E04 - Workplace Bullying WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E07 - Christmas Eve WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E06 - Health Fund WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E14 - Safety Training WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E18 - Local Vendors Day WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E16 - Target WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E03 - Part-Time Hires WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E11 - Angels and Mermaids WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E20 - Gender Reveal WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E12 - Groundhog Day WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E01 - Grand Re-Opening WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E05 - Sal's Dead WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E19 - Lottery WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E13 - Video Game Release WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 3\\Superstore - S03E15 - Amnesty WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E01 - Back to School WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E02 - Baby Shower WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E03 - Toxic Workplace WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E04 - Costume Competition WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E05 - Delivery Day WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E06 - Maternity Leave WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E07 - New Initiative WEBRip-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E08 - Managers' Conference WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E09 - Shadowing Glenn WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E10 - Cloud 9 Academy WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E11 - Steps Challenge WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E12 - Blizzard WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E13 - Lovebirds WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E14 - Minor Crimes WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E15 - Salary WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E16 - Easter WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E17 - Quincea\u00f1era WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E18 - Cloud Green WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E19 - Scanners WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E20 - #Cloud9Fail WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E21 - Sandra's Fight WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 4\\Superstore - S04E22 - Employee Appreciation Day WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E01 - Cloud 9.0 WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E02 - Testimonials WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E03 - Forced Hire WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E04 - Mall Closing WEBDL-720p Proper.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E05 - Self-Care WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E06 - Trick-or-Treat WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E07 - Shoplifter Rehab WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E08 - Toy Drive WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E09 - Curbside Pickup WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E10 - Negotiations WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E11 - Lady Boss WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E12 - Myrtle WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E13 - Favoritism WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E14 - Sandra's Wedding WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E15 - Cereal Bar WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E16 - Employee App WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E17 - Zephra Cares WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E18 - Playdate WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E19 - Carol's Back WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E20 - Customer Safari WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 5\\Superstore - S05E21 - California (1) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 6\\Superstore - S06E01 - Essential WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 6\\Superstore - S06E02 - California (2) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 6\\Superstore - S06E03 - Floor Supervisor WEBRip-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 6\\Superstore - S06E04 - Prize Wheel WEBRip-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 6\\Superstore - S06E05 - Hair Care Products WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 6\\Superstore - S06E06 - Biscuit WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 6\\Superstore - S06E07 - The Trough WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 6\\Superstore - S06E08 - Ground Rules WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 6\\Superstore - S06E09 - Conspiracy WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 6\\Superstore - S06E10 - Depositions WEBRip-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 6\\Superstore - S06E11 - Deep Cleaning WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 6\\Superstore - S06E12 - Customer Satisfaction WEBRip-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 6\\Superstore - S06E13 - Lowell Anderson WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 6\\Superstore - S06E14 - Perfect Store (1) WEBDL-720p.mkv", "Z:\\tv\\Shows\\Superstore\\Season 6\\Superstore - S06E15 - All Sales Final (2) WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Bear\\Season 1\\The Bear - S01E01 - System WEBRip-1080p Proper.mp4", "Z:\\tv\\Shows\\The Bear\\Season 1\\The Bear - S01E02 - Hands WEBRip-1080p Proper.mp4", "Z:\\tv\\Shows\\The Bear\\Season 1\\The Bear - S01E03 - Brigade WEBRip-1080p Proper.mp4", "Z:\\tv\\Shows\\The Bear\\Season 1\\The Bear - S01E04 - Dogs WEBRip-1080p Proper.mp4", "Z:\\tv\\Shows\\The Bear\\Season 1\\The Bear - S01E05 - Sheridan WEBRip-1080p Proper.mp4", "Z:\\tv\\Shows\\The Bear\\Season 1\\The Bear - S01E06 - Ceres WEBRip-1080p Proper.mp4", "Z:\\tv\\Shows\\The Bear\\Season 1\\The Bear - S01E07 - Review WEBRip-1080p Proper.mp4", "Z:\\tv\\Shows\\The Bear\\Season 1\\The Bear - S01E08 - Braciole WEBRip-1080p Proper.mp4", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E01 - Pilot Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E02 - The Big Bran Hypothesis Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E03 - The Fuzzy Boots Corollary Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E04 - The Luminous Fish Effect Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E05 - The Hamburger Postulate Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E06 - The Middle Earth Paradigm Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E07 - The Dumpling Paradox Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E08 - The Grasshopper Experiment Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E09 - The Cooper-Hofstadter Polarization Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E10 - The Loobenfeld Decay Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E11 - The Pancake Batter Anomaly Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E12 - The Jerusalem Duality Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E13 - The Bat Jar Conjecture Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E14 - The Nerdvana Annihilation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E15 - The Pork Chop Indeterminacy Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 1\\The Big Bang Theory - S01E17 - The Tangerine Factor Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E01 - The Conjugal Conjecture Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E02 - The Military Miniaturization Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E03 - The Dependence Transcendence Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E04 - The Cohabitation Experimentation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E05 - The Hot Tub Contamination Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E06 - The Fetal Kick Catalyst WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E07 - The Veracity Elasticity Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E08 - The Brain Bowl Incubation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E09 - The Geology Elevation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E10 - The Property Division Collision WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E11 - The Birthday Synchronicity Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E12 - The Holiday Summation WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E13 - The Romance Recalibration WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E14 - The Emotion Detection Automation WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E15 - The Locomotion Reverberation WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E16 - The Allowance Evaporation Bluray-1080p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E17 - The Comic-Con Conundrum WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E18 - The Escape Hatch Identification WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E19 - The Collaboration Fluctuation WEBDL-720p.mp4", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E20 - The Recollection Dissipation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E21 - The Separation Agitation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E22 - The Cognition Regeneration Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E23 - The Gyroscopic Collapse Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 10\\The Big Bang Theory - S10E24 - The Long Distance Dissonance Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E01 - The Proposal Proposal WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E02 - The Retraction Reaction WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E03 - The Relaxation Integration WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E04 - The Explosion Implosion WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E05 - The Collaboration Contamination Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E06 - The Proton Regeneration WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E07 - The Geology Methodology Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E08 - The Tesla Recoil Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E09 - The Bitcoin Entanglement Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E10 - The Confidence Erosion WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E11 - The Celebration Reverberation WEBRip-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E12 - The Matrimonial Metric WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E13 - The Solo Oscillation WEBRip-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E14 - The Separation Triangulation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E15 - The Novelization Correlation WEBRip-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E16 - The Neonatal Nomenclature Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E17 - The Athenaeum Allocation WEBRip-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E18 - The Gates Excitation WEBRip-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E19 - The Tenant Disassociation WEBRip-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E20 - The Reclusive Potential WEBRip-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E21 - The Comet Polarization WEBRip-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E22 - The Monetary Insufficiency Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E23 - The Sibling Realignment WEBRip-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 11\\The Big Bang Theory - S11E24 - The Bow Tie Asymmetry WEBRip-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E01 - The Conjugal Configuration Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E02 - The Wedding Gift Wormhole Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E03 - The Procreation Calculation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E04 - The Tam Turbulence Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E05 - The Planetarium Collision Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E06 - The Imitation Perturbation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E07 - The Grant Allocation Derivation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E08 - The Consummation Deviation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E09 - The Citation Negation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E10 - The VCR Illumination Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E11 - The Paintball Scattering Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E12 - The Propagation Proposition Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E13 - The Confirmation Polarization Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E14 - The Meteorite Manifestation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E15 - The Donation Oscillation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E16 - The D & D Vortex Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E17 - The Conference Valuation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E18 - The Laureate Accumulation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E19 - The Inspiration Deprivation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E20 - The Decision Reverberation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E21 - The Plagiarism Schism Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E22 - The Maternal Conclusion Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E23 - The Change Constant Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 12\\The Big Bang Theory - S12E24 - The Stockholm Syndrome Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E01 - The Bad Fish Paradigm Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E02 - The Codpiece Topology Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E03 - The Barbarian Sublimation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E04 - The Griffin Equivalency Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E05 - The Euclid Alternative Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E06 - The Cooper-Nowitzki Theorem Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E07 - The Panty Pi\u00f1ata Polarization Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E08 - The Lizard-Spock Expansion Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E09 - The White Asparagus Triangulation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E10 - The Vartabedian Conundrum Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E11 - The Bath Item Gift Hypothesis Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E12 - The Killer Robot Instability Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E13 - The Friendship Algorithm Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E14 - The Financial Permeability Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E15 - The Maternal Capacitance Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E16 - The Cushion Saturation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E17 - The Terminator Decoupling Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E18 - The Work Song Nanocluster Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E19 - The Dead Hooker Juxtaposition Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E20 - The Hofstadter Isotope Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E21 - The Vegas Renormalization Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E22 - The Classified Materials Turbulence Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 2\\The Big Bang Theory - S02E23 - The Monopolar Expedition Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E01 - The Electric Can Opener Fluctuation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E02 - The Jiminy Conjecture Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E03 - The Gothowitz Deviation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E04 - The Pirate Solution Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E05 - The Creepy Candy Coating Corollary Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E06 - The Cornhusker Vortex Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E07 - The Guitarist Amplification Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E08 - The Adhesive Duck Deficiency Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E09 - The Vengeance Formulation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E10 - The Gorilla Experiment Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E11 - The Maternal Congruence Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E12 - The Psychic Vortex Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E13 - The Bozeman Reaction Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E14 - The Einstein Approximation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E15 - The Large Hadron Collision Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E16 - The Excelsior Acquisition Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E17 - The Precious Fragmentation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E18 - The Pants Alternative Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E19 - The Wheaton Recurrence Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E20 - The Spaghetti Catalyst Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E21 - The Plimpton Stimulation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E22 - The Staircase Implementation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 3\\The Big Bang Theory - S03E23 - The Lunar Excitation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E01 - The Robotic Manipulation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E02 - The Cruciferous Vegetable Amplification Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E03 - The Zazzy Substitution Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E04 - The Hot Troll Deviation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E05 - The Desperation Emanation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E06 - The Irish Pub Formulation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E07 - The Apology Insufficiency Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E08 - The 21-Second Excitation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E09 - The Boyfriend Complexity Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E10 - The Alien Parasite Hypothesis Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E11 - The Justice League Recombination Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E12 - The Bus Pants Utilization Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E13 - The Love Car Displacement Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E14 - The Thespian Catalyst Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E15 - The Benefactor Factor Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E16 - The Cohabitation Formulation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E17 - The Toast Derivation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E18 - The Prestidigitation Approximation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E19 - The Zarnecki Incursion Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E20 - The Herb Garden Germination Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E21 - The Agreement Dissection Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E22 - The Wildebeest Implementation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E23 - The Engagement Reaction Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 4\\The Big Bang Theory - S04E24 - The Roommate Transmogrification Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E01 - The Skank Reflex Analysis Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E02 - The Infestation Hypothesis Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E03 - The Pulled Groin Extrapolation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E04 - The Wiggly Finger Catalyst Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E05 - The Russian Rocket Reaction Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E06 - The Rhinitis Revelation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E07 - The Good Guy Fluctuation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E08 - The Isolation Permutation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E09 - The Ornithophobia Diffusion Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E10 - The Flaming Spittoon Acquisition Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E11 - The Speckerman Recurrence Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E12 - The Shiny Trinket Maneuver Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E13 - The Recombination Hypothesis Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E14 - The Beta Test Initiation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E15 - The Friendship Contraction Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E16 - The Vacation Solution Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E17 - The Rothman Disintegration Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E18 - The Werewolf Transformation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E19 - The Weekend Vortex Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E20 - The Transporter Malfunction Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E21 - The Hawking Excitation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E22 - The Stag Convergence Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E23 - The Launch Acceleration Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 5\\The Big Bang Theory - S05E24 - The Countdown Reflection Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E01 - The Date Night Variable Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E02 - The Decoupling Fluctuation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E03 - The Higgs Boson Observation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E04 - The Re-Entry Minimization Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E05 - The Holographic Excitation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E06 - The Extract Obliteration Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E07 - The Habitation Configuration Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E08 - The 43 Peculiarity WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E09 - The Parking Spot Escalation WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E10 - The Fish Guts Displacement WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E11 - The Santa Simulation WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E12 - The Egg Salad Equivalency Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E13 - The Bakersfield Expedition WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E14 - The Cooper+Kripke Inversion Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E15 - The Spoiler Alert Segmentation WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E16 - The Tangible Affection Proof Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E17 - The Monster Isolation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E18 - The Contractual Obligation Implementation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E19 - The Closet Reconfiguration Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E20 - The Tenure Turbulence Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E21 - The Closure Alternative Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E22 - The Proton Resurgence Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E23 - The Love Spell Potential Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 6\\The Big Bang Theory - S06E24 - The Bon Voyage Reaction Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E01 - The Hofstadter Insufficiency HDTV-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E02 - The Deception Verification HDTV-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E03 - The Scavenger Vortex Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E04 - The Raiders Minimization Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E05 - The Workplace Proximity HDTV-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E06 - The Romance Resonance Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E07 - The Proton Displacement HDTV-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E08 - The Itchy Brain Simulation HDTV-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E09 - The Thanksgiving Decoupling Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E10 - The Discovery Dissipation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E11 - The Cooper Extraction Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E12 - The Hesitation Ramification Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E13 - The Occupation Recalibration Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E14 - The Convention Conundrum Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E15 - The Locomotive Manipulation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E16 - The Table Polarization Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E17 - The Friendship Turbulence Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E18 - The Mommy Observation HDTV-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E19 - The Indecision Amalgamation HDTV-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E20 - The Relationship Diremption HDTV-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E21 - The Anything Can Happen Recurrence Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E22 - The Proton Transmogrification Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E23 - The Gorilla Dissolution Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 7\\The Big Bang Theory - S07E24 - The Status Quo Combustion Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E01 - The Locomotion Interruption Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E02 - The Junior Professor Solution WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E03 - The First Pitch Insufficiency WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E04 - The Hook-Up Reverberation WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E05 - The Focus Attenuation WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E06 - The Expedition Approximation WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E07 - The Misinterpretation Agitation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E08 - The Prom Equivalency Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E09 - The Septum Deviation WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E10 - The Champagne Reflection WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E11 - The Clean Room Infiltration Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E12 - The Space Probe Disintegration WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E13 - The Anxiety Optimization WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E14 - The Troll Manifestation WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E15 - The Comic Book Store Regeneration Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E16 - The Intimacy Acceleration WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E17 - The Colonization Application WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E18 - The Leftover Thermalization WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E19 - The Skywalker Incursion WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E20 - The Fortification Implementation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E21 - The Communication Deterioration Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E22 - The Graduation Transmission Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E23 - The Maternal Combustion WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 8\\The Big Bang Theory - S08E24 - The Commitment Determination WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E01 - The Matrimonial Momentum Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E02 - The Separation Oscillation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E03 - The Bachelor Party Corrosion Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E04 - The 2003 Approximation WEBDL-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E05 - The Perspiration Implementation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E06 - The Helium Insufficiency Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E07 - The Spock Resonance Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E08 - The Mystery Date Observation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E09 - The Platonic Permutation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E10 - The Earworm Reverberation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E11 - The Opening Night Excitation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E12 - The Sales Call Sublimation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E13 - The Empathy Optimization Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E14 - The Meemaw Materialization Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E15 - The Valentino Submergence Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E16 - The Positive Negative Reaction Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E17 - The Celebration Experimentation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E18 - The Application Deterioration Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E19 - The Solder Excursion Diversion Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E20 - The Big Bear Precipitation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E21 - The Viewing Party Combustion Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E22 - The Fermentation Bifurcation Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E23 - The Line Substitution Solution Bluray-720p.mkv", "Z:\\tv\\Shows\\The Big Bang Theory\\Season 9\\The Big Bang Theory - S09E24 - The Convergence Convergence Bluray-720p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E01 - Burnt Food WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E02 - Mount Rushmore WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E03 - Oliver WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E04 - Pipes WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E05 - Point Three Percent WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E06 - Not Fake WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E07 - 22 Steps WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E08 - Apple WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E09 - Intangibles WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E10 - Sacrifice WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E11 - Islands (1) WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E12 - Islands (2) WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E13 - Seven Reasons WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E14 - She WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E15 - Heartfelt WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E16 - Pain WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E17 - Smile WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 1\\The Good Doctor - S01E18 - More WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E01 - Hello WEBRip-1080p.mp4", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E02 - Middle Ground WEBRip-1080p.mp4", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E03 - 36 Hours WEBRip-1080p.mp4", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E04 - Tough Titmouse WEBRip-1080p.mp4", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E05 - Carrots WEBRip-1080p.mp4", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E06 - Two-Ply (or Not Two-Ply) WEBRip-1080p.mp4", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E07 - Hubert WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E08 - Stories WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E09 - Empathy WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E10 - Quarantine (1) WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E11 - Quarantine (2) WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E12 - Aftermath WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E13 - Xin WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E14 - Faces WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E15 - Risk and Reward WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E16 - Believe WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E17 - Breakdown WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 2\\The Good Doctor - S02E18 - Trampoline WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E01 - Disaster WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E02 - Debts WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E03 - Claire WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E04 - Take My Hand WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E05 - First Case, Second Base WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E06 - 45-Degree Angle WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E07 - SFAD WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E08 - Moonshot WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E09 - Incomplete WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E10 - Friends and Family WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E11 - Fractured WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E12 - Mutations WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E13 - Sex and Death WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E14 - Influence WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E15 - Unsaid WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E16 - Autopsy WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E17 - Fixation WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E18 - Heartbreak WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E19 - Hurt WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 3\\The Good Doctor - S03E20 - I Love You WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E01 - Frontline (1) WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E02 - Frontline (2) WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E03 - Newbies WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E04 - Not the Same WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E05 - Fault WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E06 - Lim WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E07 - The Uncertainty Principle WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E08 - Parenting WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E09 - Irresponsible Salad Bar Practices WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E10 - Decrypt WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E11 - We're All Crazy Sometimes WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E12 - Teeny Blue Eyes WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E13 - Spilled Milk WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E14 - Gender Reveal WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E15 - Waiting WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E16 - Dr. Ted WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E17 - Letting Go WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E18 - Forgive or Forget WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E19 - Venga (1) WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 4\\The Good Doctor - S04E20 - Vamos (2) WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E01 - New Beginnings WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E02 - Piece of Cake WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E03 - Measure of Intelligence WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E04 - Rationality WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E05 - Crazytown WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E06 - One Heart WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E07 - Expired WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E08 - Rebellion WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E09 - Yippee Ki-Yay WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E10 - Cheat Day WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E11 - The Family WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E12 - Dry Spell WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E13 - Growing Pains WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E14 - Potluck WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E15 - My Way WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E16 - The Shaun Show WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E17 - The Lea Show WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 5\\The Good Doctor - S05E18 - Sons WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E01 - Afterparty WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E02 - Change of Perspective WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E03 - A Big Sign WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E04 - Shrapnel WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E05 - Growth Opportunities WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E06 - Hot and Bothered WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E07 - Boys Don't Cry WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E08 - Sorry, Not Sorry WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E09 - Broken or Not WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E10 - Quiet and Loud WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E11 - The Good Boy WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E12 - 365 Degrees WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E13 - 39 Differences WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E14 - Hard Heart WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E15 - Old Friends WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E16 - The Good Lawyer WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E17 - Second Chances and Past Regrets WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E18 - A Blip WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E19 - Half Measures WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E20 - Blessed WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E21 - A Beautiful Day WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 6\\The Good Doctor - S06E22 - Love's Labor WEBRip-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 7\\The Good Doctor - S07E01 - Baby, Baby, Baby WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 7\\The Good Doctor - S07E02 - Skin in the Game WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 7\\The Good Doctor - S07E03 - Critical Support WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 7\\The Good Doctor - S07E04 - Date Night WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 7\\The Good Doctor - S07E05 - Who at Peace WEBRip-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 7\\The Good Doctor - S07E06 - M.C.E WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 7\\The Good Doctor - S07E07 - Faith WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 7\\The Good Doctor - S07E08 - The Overview Effect WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 7\\The Good Doctor - S07E09 - Unconditional WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Doctor\\Season 7\\The Good Doctor - S07E10 - Goodbye WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E01 - Pilot WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E02 - Stripped WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E03 - Home WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E04 - Fixed WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E05 - Crash WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E06 - Conjugal WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E07 - Unorthodox WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E08 - Unprepared WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E09 - Threesome WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E10 - Lifeguard WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E11 - Infamy WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E12 - Painkiller WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E13 - Bad WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E14 - Hi WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E15 - Bang WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E16 - Fleas WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E17 - Heart WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E18 - Doubt WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E19 - Boom WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E20 - Mock WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E21 - Unplugged WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E22 - Hybristophilia WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Good Wife\\Season 1\\The Good Wife - S01E23 - Running WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E01 - Pilot WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E02 - Crash Course WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E03 - The Good, the Bad and the Ugly WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E04 - The Switch WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E05 - The Roundup WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E06 - The Hawke WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E07 - The Ride Along WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E08 - Time of Death WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E09 - Standoff WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E10 - Flesh and Blood WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E11 - Redwood WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E12 - Heartbreak WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E13 - Caught Stealing WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E14 - Plain Clothes Day WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E15 - Manhunt WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E16 - Greenlight WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E17 - The Shake Up WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E18 - Homefront WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E19 - The Checklist WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 1\\The Rookie - S01E20 - Free Fall WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E01 - Impact WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E02 - The Night General WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E03 - The Bet WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E04 - Warriors and Guardians WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E05 - Tough Love WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E06 - Fallout WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E07 - Safety WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E08 - Clean Cut WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E09 - Breaking Point WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E10 - The Dark Side WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E11 - Day of Death WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E12 - Now and Then WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E13 - Follow-Up Day WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E14 - Casualties WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E15 - Hand-Off WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E16 - The Overnight WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E17 - Control WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E18 - Under the Gun WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E19 - The Q Word (1) WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 2\\The Rookie - S02E20 - The Hunt (2) WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 3\\The Rookie - S03E01 - Consequences WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 3\\The Rookie - S03E02 - In Justice WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 3\\The Rookie - S03E03 - La Fiera WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 3\\The Rookie - S03E04 - Sabotage WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 3\\The Rookie - S03E05 - Lockdown WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 3\\The Rookie - S03E06 - Revelations WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 3\\The Rookie - S03E07 - True Crime WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 3\\The Rookie - S03E08 - Bad Blood WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 3\\The Rookie - S03E09 - Amber WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 3\\The Rookie - S03E10 - Man of Honor WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 3\\The Rookie - S03E11 - New Blood WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 3\\The Rookie - S03E12 - Brave Heart WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 3\\The Rookie - S03E13 - Triple Duty WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 3\\The Rookie - S03E14 - Threshold WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E01 - Life and Death WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E02 - Five Minutes WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E03 - In the Line of Fire WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E04 - Red Hot WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E05 - A.C.H WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E06 - Poetic Justice WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E07 - Fire Fight WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E08 - Hit and Run WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E09 - Breakdown WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E10 - Heart Beat WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E11 - End Game WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E12 - The Knock WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E13 - Fight or Flight WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E14 - Long Shot WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E15 - Hit List WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E16 - Real Crime WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E17 - Coding WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E18 - Backstabbers WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E19 - Simone WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E20 - Enervo WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E21 - Mother's Day WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 4\\The Rookie - S04E22 - Day in the Hole WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E01 - Double Down WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E02 - Labor Day WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E03 - Dye Hard WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E04 - The Choice WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E05 - The Fugitive WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E06 - The Reckoning WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E07 - Crossfire WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E08 - The Collar WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E09 - Take Back WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E10 - The List WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E11 - The Naked and the Dead WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E12 - Death Notice WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E13 - Daddy Cop WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E14 - Death Sentence WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E15 - The Con WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E16 - Exposed WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E17 - The Enemy Within WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E18 - Double Trouble WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E19 - A Hole in the World WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E20 - S.T.R WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E21 - Going Under (1) WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 5\\The Rookie - S05E22 - Under Siege WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 6\\The Rookie - S06E01 - Strike Back WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 6\\The Rookie - S06E02 - The Hammer WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 6\\The Rookie - S06E03 - Trouble in Paradise WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 6\\The Rookie - S06E04 - Training Day WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 6\\The Rookie - S06E05 - The Vow WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 6\\The Rookie - S06E06 - Secrets and Lies WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 6\\The Rookie - S06E07 - Crushed WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 6\\The Rookie - S06E08 - Punch Card WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 6\\The Rookie - S06E09 - The Squeeze WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 6\\The Rookie - S06E10 - Escape Plan WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E01 - The Shot WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E02 - The Watcher WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E03 - Out of Pocket WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E04 - Darkness Falling WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E05 - Til Death WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E06 - The Gala WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E07 - The Mickey WEBDL-1080p Proper.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E08 - Wildfire WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E09 - The Kiss WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E10 - Chaos Agent WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E11 - Speed WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E12 - April Fools WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E13 - Three Billboards WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E14 - Mad About Murder WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E15 - A Deadly Secret WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E16 - The Return WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E17 - Mutiny and the Bounty WEBDL-1080p.mkv", "Z:\\tv\\Shows\\The Rookie\\Season 7\\The Rookie - S07E18 - The Good, the Bad, and the Oscar WEBDL-1080p.mkv", "Z:\\content\\Anatomik Media\\Anatomik Media - 2020-04-10 - Return From Beyond [WEBDL-1080p].mp4", "Z:\\content\\Anatomik Media\\Anatomik Media - 2020-08-21 - Mesmerised By Feet [WEBDL-1080p].mp4", "Z:\\content\\Anatomik Media\\Anatomik Media - 2020-09-18 - Big Messy Gangbang [WEBDL-1080p].mp4", "Z:\\content\\Anatomik Media\\Anatomik Media - 2020-10-02 - Messy Girls 5 - Squirtacular [WEBDL-1080p].mp4", "Z:\\content\\Anatomik Media\\Anatomik Media - 2020-10-23 - Pop Me [WEBDL-1080p].mp4", "Z:\\content\\Anatomik Media\\Anatomik Media - 2023-10-20 - Power Exchange [WEBDL-1080p].mp4", "Z:\\content\\Anatomik Media\\Anatomik Media - 2023-11-17 - Trophy Wife [WEBDL-1080p].mp4", "Z:\\content\\Anatomik Media\\Anatomik Media - 2024-08-26 - Dinner Scene [WEBDL-1080p].mp4", "Z:\\content\\Anatomik Media\\Anatomik Media - 2024-09-20 - Like In France [WEBDL-1080p].mp4", "Z:\\content\\av1-test\\Superstore\\Season 1\\Superstore.S01E01.av1.p6.v94.mkv", "Z:\\content\\av1-test\\Superstore\\Season 1\\Superstore.S01E01.av1.p6.v95.mkv", "Z:\\content\\av1-test\\Superstore\\Season 1\\Superstore.S01E01.av1.p8.v95.mkv", "Z:\\content\\Bang POV\\Bang POV - 2015-07-04 - Fucking My Chick in Her New Shoes! [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2015-08-08 - Mia K Gives the Girlfriend Experience [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2015-12-12 - Pornstar Does Yoga Before Bouncing Her Big Ass on Cock [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2016-03-19 - Anal POV with Adriana Chechik [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2016-10-31 - Perfect View of Abella Danger [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2017-01-26 - Bridgette B Is the Busty MILF We All Want to Have [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2017-07-25 - Stepmom Is an Anal Whore [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2018-03-17 - Aaliyah Hadid Cums On Your Cock [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2018-06-16 - Cock Hungry MILF Finally Got Her Nut [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2018-09-15 - Adriana Anal and Squirting After Yoga [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2019-05-25 - Fucking Abella's Great Ass in POV [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2019-06-08 - Spying on Big Tit Autumn Falls [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2019-10-12 - Bridgette Fucks Her Neighbor [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2019-12-14 - Squirting and Anal on My Step Bro's Cock [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2020-06-06 - Step Sister Fuck Punishment [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2021-02-02 - Blake Blossom Is Perfection [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2021-04-06 - The Job Interview [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2022-03-22 - Stepmom's Secret Anal [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2022-05-31 - The After Party [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2022-10-04 - The Cock Barely Fits [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2022-10-18 - Complete Seduction [WEBDL-1080p].mp4", "Z:\\content\\Bang POV\\Bang POV - 2024-09-17 - Blake The Helpful Roomate [WEBDL-1080p].mp4", "Z:\\content\\BANG! Rammed\\BANG! Rammed - 2025-12-25 - Hailey Rose Gets Rammed - Bang Babe Of The Year 2025 [WEBDL-1080p].mp4", "Z:\\content\\BANG! Real Teens\\BANG! Real Teens - 2025-12-23 - Gracey Snow's Public Fuck Playground [WEBDL-1080p].mp4", "Z:\\content\\Banned Stories\\Banned Stories - 2021-04-30 - Sin City Rockstar Fucking with Victoria Voxxx [WEBDL-1080p].mp4", "Z:\\content\\Banned Stories\\Banned Stories - 2021-06-16 - Wet Tight Desert Adventures with Lulu Chu [WEBDL-1080p].mp4", "Z:\\content\\Banned Stories\\Banned Stories - 2021-11-25 - La La Land and Chill with Katie Kush [WEBDL-1080p].mp4", "Z:\\content\\Banned Stories\\Banned Stories - 2022-05-20 - The Blake Blossom Experience [WEBDL-1080p].mp4", "Z:\\content\\Banned Stories\\Banned Stories - 2022-11-11 - Big Donuts and Bigger Tits with Octavia Red [WEBDL-1080p].mp4", "Z:\\content\\Big Cock Bully\\Big Cock Bully - 2025-12-22 - Lily Starfire Takes A Huge Black Cock From Her Husband's Coworker To Save His Job [WEBDL-720p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2014-06-29 - Stretch My Ass [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2014-07-27 - Garden Hoes [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2015-01-18 - Bubbly Personality, Bubbly Ass [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2015-02-08 - Abella's Ass Is in Danger [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2016-03-04 - Living in an Anal Paradise [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2016-03-23 - Free Anal [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2016-06-30 - Free Anal 2 [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2016-07-09 - ZZ Cup - Team Booty [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2017-04-17 - A Jolly Easter Buttfucking [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2017-08-24 - Bubbliest Butt [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2017-09-12 - Always Thick [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2017-09-21 - Anal Sweetheart [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2017-10-15 - Bounce That Bubble Butt [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2017-11-10 - Cosplay with My Ass [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2017-11-12 - Anal Swinger [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2017-12-16 - Putting in Work [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2018-01-16 - Fancy Ass Fucking [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2018-03-04 - Making Her Drip [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2018-03-31 - The Easter Hunny [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2018-04-28 - Radiant Booty 2 [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2018-05-22 - Exercise Balling [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2018-06-29 - Soak My Sundress [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2018-08-02 - Plowing the Private Dancer [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2018-08-24 - Queen of the Dick [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2019-02-19 - London's Slutty Little Secret [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2019-02-26 - Wet Hot Yoga [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2019-06-06 - Ass in a Hammock [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2019-07-24 - Poolside Booty [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2019-11-03 - Working His Pole [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2019-11-29 - Backyard Banging [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2020-01-17 - Working Her Ass Off [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2020-03-01 - The Artist Is Fucking Present [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2020-03-29 - Oily AF Anal [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2020-06-16 - Jean Queen [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2020-08-03 - Cum Thru 3 [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2020-11-18 - Pounded in Pantyhose [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2020-12-14 - Glistening and Dripping [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2021-01-07 - Gia's Big Wet Butt [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2021-02-22 - Yoga for Perverts [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2021-07-20 - A Double Dose Of Aussie Ass [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2022-08-10 - Two Loads Are Better Than None [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2022-10-31 - Worship the Halloween Queen [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2022-12-11 - Latex Lover's Big Wet Ass [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2023-01-15 - Up Close and Extremely Personal [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2023-05-06 - Lasirena's Oiled Up Ass Gets Anal [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2023-07-06 - Filthy in Fishnets [WEBDL-1080p].mp4", "Z:\\content\\Big Wet Butts\\Big Wet Butts - 2025-01-22 - In Cherie's Sweet Ass [WEBDL-1080p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-09 - Andrea [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-09 - Josie [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-09 - Laura [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-09 - Sonja [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-09 - Teiga [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-10 - Heather Milfmaid [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-10 - Kayla [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-10 - Nikki [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-10 - Paige [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-10 - Penny [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-10 - Tyla Audition [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-11 - Evagale [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-11 - Jasmine [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-11 - Jen [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-11 - Kelli [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-11 - Michelle [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-11 - Nancy [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-11 - Sara [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-11 - Scarlett [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-18 - Melissa Returns [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-07-25 - Kayla Returns [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-08-01 - Louanne [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-08-07 - Hanna [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2013-11-15 - Raina [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2014-01-09 - Marilynn [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2014-01-10 - Brandi [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2014-01-12 - Blayre and Harper Lose Footjob Virginity [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2014-01-21 - Lacey [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2014-02-07 - Raquel First Time Hitachi Play [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2014-02-14 - Ginger and Mckenzie [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2014-04-18 - Morgan and Lilly [WEBDL-1080p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2014-07-17 - Randi [WEBDL-720p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2014-08-29 - Vanessa [WEBDL-1080p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2014-09-05 - Sabrina Auditions Aubrey [WEBDL-1080p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2014-10-16 - Kendra [WEBDL-1080p].mp4", "Z:\\content\\Brand New Amateurs\\Brand New Amateurs - 2014-10-27 - Vanessa Vania [WEBDL-1080p].mp4", "Z:\\content\\Bratty Sis\\Bratty Sis - 2025-12-26 - Stepsis Starts The New Year Off - S39-E5 [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2018-04-02 - Ramming the Reporter [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2018-05-17 - Mermaid Vibes [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2018-06-18 - Getting Smashed [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2020-12-04 - Squirt, Pop and Deliver [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2021-07-07 - Eroti-Maid [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2022-01-16 - Who's the Other Girl [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2022-04-20 - Blast-Sisted Living Threeway [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2022-05-04 - The Never Ending Squirter [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2022-05-19 - Thirsty Stepmom & the Coach's Nerdy Daughter [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2022-05-22 - Derza's Oily DP on Display [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2022-07-29 - Cheeky Lesbians Steal Roommate's Toy for Ass Play [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2022-11-06 - Bum-Rushed & Booty Swapped [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2022-12-15 - My Squirting Holes Are Yours All the Time [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2022-12-22 - Gilf's Slutty Dinner [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2023-02-13 - Ready, Rough & Eager to Please [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2023-03-05 - MILF Deals with a Couch Humper [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2023-05-10 - Mischievous MILF Gets Busted By Bossy Goth [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2023-06-29 - Spa Night Anal Switcheroo [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2024-02-04 - Sneaky Massage Gun Turns Into Oily Anal [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2024-02-06 - Swinger Set [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2024-06-18 - Getting Hitched! the Best of ZZ Weddings [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2024-06-24 - B.R.I. [Brazzers Research Institute] [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2024-07-27 - Uh-Oh! I Double-Booked My Pussy! (Gotta Keep 'Em Separated) [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2024-08-02 - HZTV - Hardcore Demolition [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2024-10-03 - Two For Tennis, Three For Fucking [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2024-10-28 - Finger-Deep In Ass At The Office [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2024-12-11 - Wrapped Up In A Threesome [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2024-12-12 - Skin Tight! The Best Of Latex [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-01-17 - Knob Slobbing The Peeper [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-02-06 - Fuck Them Titties! The Best Of Titty Fucks [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-02-16 - Anal For 2 [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-03-02 - Can't Control Chloe [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-03-12 - The Gift Of Mystery Cock [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-03-13 - Horny MILF In The Wild [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-03-21 - Get Sprung! The Best Of Spring Break [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-03-28 - Best Of ZZ - Isis Love [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-04-16 - Petite Pervs! The Best Of ZZ Spinners [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-04-20 - Get Under Someone Else [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-04-22 - Sloppy Public Bathroom Bang [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-04-22 - The Brazzers Podcast - Episode 15 [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-04-24 - On Set With Alexis [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-04-30 - Best Of ZZ - Bridgette B [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-05-06 - Office Suck And Fuck [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-05-07 - Caught Full Mouthed [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-05-08 - Satisfying Face To Sit On [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-05-09 - Mother's Day Mayhem! The Best Of MILFs [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-05-11 - Mother's Day Sexcapade Part 2 [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-05-12 - Ultimate Anal [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-05-16 - Pornstar Matchmaker - Episode 1 [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-05-16 - Sticky Situations! The Best Of Getting Stuck [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-05-22 - Give Me A D! The Best Of Cheerleaders [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-05-23 - Drive Me To The Poon [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-05-27 - Filthy Pervy Nasty Masseur [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-06-05 - Anal Delight! The Best Of Anal Creampies [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-06-10 - Sharing The Ultimate Pleasure [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-06-13 - Father's Day Fuckery! The Best Of ZZ Dilfs [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-07-06 - Red Hot And Horny [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-07-08 - Slick Dickings! The Best Of Sneaky Sex [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-07-14 - Wife Sticks Her Tits In Hubby's Business [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-07-22 - Natalie Is One Of The Boyzz [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-07-29 - Suck Your Soul Out [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-08-08 - Open Wide For Angela And Gal [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-08-14 - Cock Support Line [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-08-21 - Cheating Wife, Happy Life [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-08-24 - Scary Crush [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-09-08 - Guess That Cock! [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-09-10 - Giving Her The Real Thing [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-09-12 - The Welcumming Committee [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-09-19 - Door Cam Catches Dildo Cheater [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-09-23 - Peeping Gal - Episode 2 [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-09-25 - Pipe Dream [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-09-26 - Sarah Arabic's First Anal [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-09-28 - Pizza Party Blowbang [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-09-30 - Best Of ZZ - Scott Nails [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-10-02 - Ride For A Ride [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-10-05 - Fucking Him On Principle [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-10-07 - Strap Yourself In! The Best Of Lesbian Strap-On Sex [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-10-11 - Nurse Noir [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-10-14 - House Arrest Hottie Gets A Sneaky Link [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-10-17 - Diving Deep In Her Pussy [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-10-24 - Desi Social Day [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-10-25 - Many Holes To Fill [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-10-31 - The Brazzorcist [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-11-02 - Anal Doesn't Count [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-11-14 - This Nurse Is A Perv [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-11-23 - Negging Ex Takes Him To The Edge [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-12-03 - Dick Sniffer's Delight [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-12-06 - It's Occupied! The Best Of Bathroom Sex [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-12-08 - Wedding Threesome Hallpass [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-12-11 - At Full Intensity [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-12-16 - Run Club Rules [WEBDL-1080p].mp4", "Z:\\content\\Brazzers Exxtra\\Brazzers Exxtra - 2025-12-21 - You Bet Your Ass! Best Of Anal Vol. 2 [WEBDL-1080p].mp4", "Z:\\content\\Burning Angel\\Burning Angel - 2018-01-06 - Daddy Fuck My Ass - Kristen Scott [WEBDL-1080p].mp4", "Z:\\content\\Burning Angel\\Burning Angel - 2018-01-20 - Bratty Teens - Vanessa Sky [WEBDL-1080p].mp4", "Z:\\content\\Burning Angel\\Burning Angel - 2019-10-08 - Three Cheers for Satan - Kenzie, Jane, Kira, Small Hands [WEBDL-1080p].mp4", "Z:\\content\\Burning Angel\\Burning Angel - 2019-10-15 - Three Cheers for Satan - Kenzie, Kira & Kyle [WEBDL-1080p].mp4", "Z:\\content\\Cum Fiesta\\Cum Fiesta - 2025-12-26 - Cum Fiesta For Big Booty Beauty [WEBDL-1080p].mp4", "Z:\\content\\Cum Swapping Sis\\Cum Swapping Sis - 2025-12-25 - I Want You To Be My Big Brother - S6-E10 [WEBDL-1080p].mp4", "Z:\\content\\Dad Crush\\Dad Crush - 2025-12-24 - Christmas Discipline - Avery Wilds Goes From Naughty To Nice [WEBDL-1080p].mp4", "Z:\\content\\Daughter Swap\\Daughter Swap - 2025-12-25 - I Want A Christmas Creampie, Daddy Ali & Harlow's Holiday Swap [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2020-05-06 - Gaping Anal Creampie [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2020-05-20 - A Rush of Passion [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2020-07-08 - Orgasm Compilation 3 [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2020-11-11 - Kenzie Wants Anal [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2021-01-06 - Indulging in Violet [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2021-04-28 - Intimate Exchange [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2021-05-26 - Anal with Gia [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2021-06-09 - Indulging in Her [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2021-10-20 - Indulging in Savannah [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2022-09-07 - Meant to Be [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2023-03-01 - All About Chanel [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2023-06-14 - Natural Fantasy [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2023-06-28 - All About Ana [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2023-08-09 - High Energy Lust [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2023-10-04 - Nasty Fun [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2023-11-22 - How She Rides [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2023-12-13 - Oral Pro [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2024-05-08 - Riding Creampie [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2024-07-24 - Threesome with Chanel and Molly [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2024-09-11 - Can't Get Enough [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2024-11-27 - All About Willow [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2025-01-08 - Passionate Indulgence [WEBDL-1080p].mp4", "Z:\\content\\Deep Lush\\Deep Lush - 2025-02-26 - All About Vanessa [WEBDL-1080p].mp4", "Z:\\content\\Dungeon Sex\\Dungeon Sex - 2023-09-29 - Fresh Meat - Xwife Karen [WEBDL-1080p].mp4", "Z:\\content\\Dungeon Sex\\Dungeon Sex - 2023-10-20 - Bondage Fuck Fest - Victoria Voxxx and Tommy Pistol [WEBDL-1080p].mp4", "Z:\\content\\Dungeon Sex\\Dungeon Sex - 2023-11-03 - Bound, Fucked, and Tormented - Marica Hase and Tommy Pistol [WEBDL-1080p].mp4", "Z:\\content\\Dungeon Sex\\Dungeon Sex - 2023-11-17 - Power Fucked in Strict Bondage - Katie Kush and Johnny Castle [WEBDL-1080p].mp4", "Z:\\content\\Dungeon Sex\\Dungeon Sex - 2024-02-09 - Deep Connection - Sophia Locke And Tommy Pistol [WEBDL-1080p].mp4", "Z:\\content\\Dungeon Sex\\Dungeon Sex - 2024-10-04 - Victoria's Deep Dicking [WEBDL-1080p].mp4", "Z:\\content\\Dungeon Sex\\Dungeon Sex - 2024-10-18 - Ungrateful Holes [WEBDL-1080p].mp4", "Z:\\content\\Dungeon Sex\\Dungeon Sex - 2024-12-06 - Breaking Chanel [WEBDL-1080p].mp4", "Z:\\content\\Dungeon Sex\\Dungeon Sex - 2025-06-27 - Pussy Joyride [WEBDL-1080p].mp4", "Z:\\content\\Dungeon Sex\\Dungeon Sex - 2025-09-05 - Ready To Be Fucked! [WEBDL-1080p].mp4", "Z:\\content\\Dungeon Sex\\Dungeon Sex - 2025-10-17 - Gorgeous Gusher [WEBDL-1080p].mp4", "Z:\\content\\Dungeon Sex\\Dungeon Sex - 2025-11-14 - Hot And Heavy Handed [WEBDL-1080p].mp4", "Z:\\content\\Elegant Angel\\Elegant Angel - 2025-12-03 - Chapter Three - Double Exposure [WEBDL-1080p].mp4", "Z:\\content\\Elegant Angel\\Elegant Angel - 2025-06-10 - Curly Girl Bush [WEBDL-1080p].mp4", "Z:\\content\\Elegant Angel\\Elegant Angel - 2025-08-01 - Triple Stacked MILFs [WEBDL-1080p].mp4", "Z:\\content\\Elegant Angel\\Elegant Angel - 2025-06-17 - Human Sprinkler [WEBDL-1080p].mp4", "Z:\\content\\Elegant Angel\\Elegant Angel - 2025-10-16 - Booty From Brazil [WEBDL-1080p].mp4", "Z:\\content\\Elegant Angel\\Elegant Angel - 2025-06-09 - A Night Out [WEBDL-1080p].mp4", "Z:\\content\\Elegant Angel\\Elegant Angel - 2025-06-16 - Mega MILF Booty [WEBDL-1080p].mp4", "Z:\\content\\Elegant Angel\\Elegant Angel - 2025-10-22 - Thick Ass Booty [WEBDL-1080p].mp4", "Z:\\content\\Elegant Angel\\Elegant Angel - 2025-12-01 - Chapter One - Aperture [WEBDL-1080p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2020-05-13 - Lauren Phillips' Bisexual Threesome [WEBDL-1080p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2023-10-25 - Gia Derza Latex, BJ & Anal Submission [WEBDL-2160p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2023-11-13 - Vanessa Vega Anal POV + Pussy Creampie [WEBDL-1080p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2024-01-07 - Susie Stellar & Vanessa Vega 3-Way POV [WEBDL-1080p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2024-08-11 - Glenn King's Maneaters - Lauren Phillips [WEBDL-1080p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2024-09-03 - Gia Derza Double-Anal & Squirt 3-Way [WEBDL-1080p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2024-12-24 - Vanessa Sky Anal Fun With Jax Slayher [WEBDL-1080p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2025-09-22 - Sarah Arabic Cunt & Cleavage Crammed [WEBDL-1080p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2025-11-18 - A Day In The Life Of - Rebel Rhyder - Scene 4 [WEBDL-1080p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2025-11-19 - Rocco's Perverted Secretaries #11 [WEBDL-1080p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2025-11-27 - Adriana Chechik Comeback Blowbang [WEBDL-1080p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2025-12-01 - Francesca's Private Lesbian Encounters [WEBDL-1080p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2025-12-11 - One And Done #02 [WEBDL-1080p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2025-12-18 - Francesca's Private Lesbian Encounters [WEBDL-1080p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2025-12-22 - Francesca's Private Lesbian Encounters [WEBDL-1080p].mp4", "Z:\\content\\Evil Angel\\Evil Angel - 2025-12-22 - One And Done #02 [WEBDL-1080p].mp4", "Z:\\content\\Exxxtra Small\\Exxxtra Small - 2025-12-25 - Tiny Christmas Thief Gets Instant Karma (Liora Vane Debut) [WEBDL-1080p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2017-11-24 - Daddies Little Anal Angel Turned Out By Repressed Step Mommy [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2017-12-22 - Cock Crazed Step-Mommy Just Wants Anal for Christmas [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2018-03-16 - The Honeypot - Mother Daughter Scam Artists Anally Punished By Tech Nerd [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2018-04-13 - Sister, Sister - Secret Anal Whore Shows Her Little Step-Sis the Ropes [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2018-05-11 - Step-Mother Chanel Preston Fucks Son & His Cheap Whore Girlfriend! [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2018-06-08 - Submissive Step-Sister Gives Up Her Holes & Her Inhibitions [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2018-08-03 - Teen Religious Fanatic Punishes Liberal Anal Step-Mommy [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2018-08-17 - Gold-Digging Step-Mother Served Double Anal Trouble [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2018-09-28 - Devious Dana De Armond Trains Her Step-Daughter for Anal Whore Service [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2018-11-09 - MILF Agent Botches Undercover Anal & Sacrifices Step-Daughter [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2019-01-18 - Unruly Niece Gets a Fat Cock in Her Ass [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2019-04-12 - Seductive Lesbian Sister-in-Law Fucks the Whole Family [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2019-05-24 - Sex Crazed Step-Sister Fucks Her Way Out of Summer School [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2019-09-27 - Family First - Cucked Slut Signs It Away for Her Step-Brothers Cock [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2019-10-11 - Mommys Girl - Anal Slut Didn't Save Enough Pussy for Step-Mommy [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2019-11-08 - Ghosted - Slutty MILF & Step-Daughter Destroyed By Sadistic Sidepiece [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2019-11-22 - The Power of Books - Jasmine Jae and Ramon Nomar School Mackenzie Moss [WEBDL-720p].mp4", "Z:\\content\\Families Tied\\Families Tied - 2020-04-10 - Mommies Know Best - Gorgeous Milfs Train Disobedient Young Girls [WEBDL-720p].mp4", "Z:\\content\\Free Use MILF\\Free Use MILF - 2021-05-13 - I'll Take the Blame [WEBDL-1080p].mp4", "Z:\\content\\Free Use MILF\\Free Use MILF - 2021-07-22 - Glad to Be Adopted [WEBDL-1080p].mp4", "Z:\\content\\Free Use MILF\\Free Use MILF - 2021-10-28 - Don't Lift a Finger [WEBDL-1080p].mp4", "Z:\\content\\Free Use MILF\\Free Use MILF - 2022-03-03 - Business and Pleasure [WEBDL-1080p].mp4", "Z:\\content\\Free Use MILF\\Free Use MILF - 2022-03-31 - Don't We Have It All [WEBDL-1080p].mp4", "Z:\\content\\Free Use MILF\\Free Use MILF - 2022-05-01 - Thanks, Donnie! [WEBDL-1080p].mp4", "Z:\\content\\Free Use MILF\\Free Use MILF - 2022-08-28 - Collecting More Than Rent [WEBDL-1080p].mp4", "Z:\\content\\Free Use MILF\\Free Use MILF - 2023-07-07 - My Next-Door Teacher [WEBDL-1080p].mp4", "Z:\\content\\Free Use MILF\\Free Use MILF - 2023-12-14 - Sex Syndrome [WEBDL-1080p].mp4", "Z:\\content\\Free Use MILF\\Free Use MILF - 2024-07-25 - Busty MILF Lauren Phillips Says Freeuse Is The Only Cure [WEBDL-1080p].mp4", "Z:\\content\\Freeuse Fantasy\\Freeuse Fantasy - 2025-12-26 - Ava & Sophia's Freeuse Sleepover [WEBDL-1080p].mp4", "Z:\\content\\Girls Only Porn\\Girls Only Porn - 2025-12-23 - Our Besties Sexy Christmas Jammies - S13-E8 [WEBDL-1080p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2015-02-25 - Tie Me Up [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2015-06-24 - Return of the Screamer [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2015-07-15 - Pouty Pain Slut [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2015-12-30 - Return to Kinbaku [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2016-03-23 - Soaked [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2016-04-13 - Beautiful Suffering [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2016-05-04 - Classy [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2016-07-27 - Morph [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2016-11-09 - Whipped Blondie [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2016-12-14 - Cruel Barber [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2016-12-28 - Stocking Stuffers [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2017-01-04 - P.l.e.a.s.e [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2017-01-18 - The Sitter [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2017-01-25 - Category 5 [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2017-02-15 - Cherried Blossom Part 1 [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2017-03-15 - Shared Rope [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2017-04-26 - Caught in the Act [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2017-05-24 - Syren S Sucky Day [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2017-11-29 - Hung [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2017-12-27 - Pas De Deux [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2018-02-14 - Sharing Sosha [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2018-03-21 - Rook D [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2018-09-26 - Voxxxed [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2019-03-13 - Lr [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2019-06-05 - Classic [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2019-11-27 - Tension [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2019-12-04 - Up Part 1 [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2019-12-11 - Bondage Fairy [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2019-12-25 - Up Part 2 [WEBDL-720p].mp4", "Z:\\content\\Hardtied\\Hardtied - 2020-01-29 - Serious Business [WEBDL-720p].mp4", "Z:\\content\\Her Limit\\Her Limit - 2022-06-27 - Extreme Anal Squirting Orgasms [WEBDL-1080p].mp4", "Z:\\content\\Her Limit\\Her Limit - 2022-11-07 - Power Game [WEBDL-1080p].mp4", "Z:\\content\\Her Limit\\Her Limit - 2023-01-09 - Anal Evaluation [WEBDL-1080p].mp4", "Z:\\content\\Her Limit\\Her Limit - 2023-05-08 - Intense Anal Fucking Part 2 [WEBDL-1080p].mp4", "Z:\\content\\Her Limit\\Her Limit - 2023-05-29 - I Want It Harder [WEBDL-1080p].mp4", "Z:\\content\\Her Limit\\Her Limit - 2023-08-07 - Payback for Stepmom [WEBDL-1080p].mp4", "Z:\\content\\Her Limit\\Her Limit - 2023-10-30 - Big Tits MILF Armani Black Loves Anal [WEBDL-1080p].mp4", "Z:\\content\\Her Limit\\Her Limit - 2024-02-05 - Big Tits MILF Gets Pounded! [WEBDL-1080p].mp4", "Z:\\content\\Her Limit\\Her Limit - 2024-02-19 - Cum on My Face! [WEBDL-1080p].mp4", "Z:\\content\\Her Limit\\Her Limit - 2024-02-26 - Latina Teacher Gets Destroyed! [WEBDL-1080p].mp4", "Z:\\content\\Her Limit\\Her Limit - 2024-03-25 - Latina Teen Likes It Big [WEBDL-1080p].mp4", "Z:\\content\\Her Limit\\Her Limit - 2024-08-05 - Way Better Than Your Girlfriend [WEBDL-1080p].mp4", "Z:\\content\\Her Limit\\Her Limit - 2024-10-07 - Bad Bitches BBC [WEBDL-1080p].mp4", "Z:\\content\\Her Limit\\Her Limit - 2024-10-28 - Naughty MILF Sheena Ryder First Anal [WEBDL-1080p].mp4", "Z:\\content\\Her Limit\\Her Limit - 2025-05-19 - Bbcs In Every Hole [WEBDL-1080p].mp4", "Z:\\content\\Hoby Buchanon\\Hoby Buchanon - 2020-01-17 - 411 85 Lb Lola Fae Face Fucked & Pussy Pounded Hard [WEBDL-1080p].mp4", "Z:\\content\\Hoby Buchanon\\Hoby Buchanon - 2020-12-11 - MILF Sheena Ryder Face & Ass Fucked By Masked Intruder [WEBDL-1080p].mp4", "Z:\\content\\Hoby Buchanon\\Hoby Buchanon - 2021-07-23 - Petite Nadia Noja Wants Rough Sex [WEBDL-1080p].mp4", "Z:\\content\\Hoby Buchanon\\Hoby Buchanon - 2021-09-17 - Big Tits MILF Lauren Phillips Gets It Rough [WEBDL-1080p].mp4", "Z:\\content\\Hoby Buchanon\\Hoby Buchanon - 2021-12-31 - Sage Fox Gets Her Throat Trained & Pussy Pounded [WEBDL-1080p].mp4", "Z:\\content\\Hoby Buchanon\\Hoby Buchanon - 2022-05-06 - Beautiful Latina Teen Reina Rae's First Rough Sex Experience [WEBDL-1080p].mp4", "Z:\\content\\Hoby Buchanon\\Hoby Buchanon - 2022-07-01 - Lola Mai Gets Destroyed By Daddy [WEBDL-1080p].mp4", "Z:\\content\\Hoby Buchanon\\Hoby Buchanon - 2022-07-08 - Reina Rae's First Anal [WEBDL-1080p].mp4", "Z:\\content\\Hoby Buchanon\\Hoby Buchanon - 2022-07-29 - Reina Rae Spanked, Face Fucked & Fucked Hard Bonus Scene [WEBDL-1080p].mp4", "Z:\\content\\Hoby Buchanon\\Hoby Buchanon - 2022-08-05 - Reina Rae's First Rough Scene BTS [WEBDL-1080p].mp4", "Z:\\content\\Hoby Buchanon\\Hoby Buchanon - 2022-08-17 - Reina Rae Face Fucked in a U-Haul Bonus Scene [WEBDL-1080p].mp4", "Z:\\content\\Jay's POV\\Jay's POV - 2025-12-24 - Chilly Redhead Step Mom Jessica Aaren Warms Up With Step Son's Cock [WEBDL-1080p].mp4", "Z:\\content\\Jules Jordan\\Jules Jordan - 2025-12-23 - Double Vag Magic - Little Puck's Threesome Fantasy [WEBDL-1080p].mp4", "Z:\\content\\Kink University\\Kink University - 2016-02-01 - Handcuffs & Shackles [WEBDL-720p].mp4", "Z:\\content\\Kink University\\Kink University - 2016-04-25 - Sex Swings for Easy Suspension Fucking [WEBDL-720p].mp4", "Z:\\content\\Mr Lucky POV\\Mr Lucky POV - 2019-07-19 - Cumming Twice for Violet Myers [WEBDL-1080p].mp4", "Z:\\content\\Mr Lucky POV\\Mr Lucky POV - 2020-02-14 - Huge Tit Latina Teen Autumn Falls Fucks [WEBDL-1080p].mp4", "Z:\\content\\Mr Lucky POV\\Mr Lucky POV - 2020-02-21 - Gia Derza Deep Anal Action [WEBDL-1080p].mp4", "Z:\\content\\Mr Lucky POV\\Mr Lucky POV - 2020-07-03 - Deep Inside Busty Latinas Big Ass [WEBDL-1080p].mp4", "Z:\\content\\Mr Lucky POV\\Mr Lucky POV - 2020-08-28 - Large Natural Knockers Drain All the Cum [WEBDL-1080p].mp4", "Z:\\content\\Mr Lucky POV\\Mr Lucky POV - 2020-12-11 - Mega Ass Carmela Clutch Creampie [WEBDL-1080p].mp4", "Z:\\content\\Mr Lucky POV\\Mr Lucky POV - 2021-01-15 - Abbie Gets Aggressive [WEBDL-1080p].mp4", "Z:\\content\\Mr Lucky POV\\Mr Lucky POV - 2021-01-29 - Cum for Kendra Spade [WEBDL-1080p].mp4", "Z:\\content\\Mr Lucky POV\\Mr Lucky POV - 2021-02-05 - Kenzie Reeves Is Out of This World [WEBDL-1080p].mp4", "Z:\\content\\Mr Lucky POV\\Mr Lucky POV - 2023-07-21 - Big Boob Blonde Dream Cum True [WEBDL-1080p].mkv", "Z:\\content\\Mr Lucky POV\\Mr Lucky POV - 2023-08-25 - All Anal for Big Tit Arabelle [WEBDL-1080p].mkv", "Z:\\content\\Mr Lucky POV\\Mr Lucky POV - 2024-02-16 - Enthusiastic Slut Abbie Maley Swallows Cum [WEBDL-1080p].mp4", "Z:\\content\\Mr Lucky POV\\Mr Lucky POV - 2024-07-12 - Banging Huge Tit Natasha Nice [WEBDL-1080p].mp4", "Z:\\content\\Mr Lucky POV\\Mr Lucky POV - 2024-09-06 - Cock Loving Cutie Chanel Camryn Cums Like Crazy [WEBDL-1080p].mp4", "Z:\\content\\Mr Lucky RAW\\Mr Lucky RAW - 2022-12-28 - Creampie and Cumshot Present for Naughty Slut La Sirena [WEBDL-1080p].mp4", "Z:\\content\\Mr Lucky RAW\\Mr Lucky RAW - 2023-08-02 - Sarah Arabic Gets a Hard Pounding and Satisfying Creampie [WEBDL-1080p].mkv", "Z:\\content\\Mr Lucky RAW\\Mr Lucky RAW - 2023-11-01 - Tru Kait Is a Pretty Pussy [WEBDL-1080p].mp4", "Z:\\content\\Mr Lucky RAW\\Mr Lucky RAW - 2024-06-26 - Kali Roses Blonde with Big Tits Enjoys Raw Sex [WEBDL-1080p].mp4", "Z:\\content\\My Dirty Maid\\My Dirty Maid - 2018-12-18 - Maid with Huge Tits Gets Fucked [WEBDL-1080p].mp4", "Z:\\content\\My Dirty Maid\\My Dirty Maid - 2019-01-29 - Beautiful 18 Year Old Maid Gets Fucked [WEBDL-1080p].mp4", "Z:\\content\\My Dirty Maid\\My Dirty Maid - 2019-07-23 - Lulu Chu, Here To Clean Your Cock [WEBDL-1080p].mp4", "Z:\\content\\My Dirty Maid\\My Dirty Maid - 2019-11-05 - Pierced Nipple Maid Gets Fucked [WEBDL-1080p].mp4", "Z:\\content\\My Dirty Maid\\My Dirty Maid - 2020-09-22 - Sexy Maid Fucks for Cash [WEBDL-1080p].mp4", "Z:\\content\\My Dirty Maid\\My Dirty Maid - 2020-10-15 - Big Booty Maid Sucks and Fucks [WEBDL-1080p].mp4", "Z:\\content\\My Dirty Maid\\My Dirty Maid - 2021-11-18 - Thai Made Anal Maid [WEBDL-1080p].mp4", "Z:\\content\\My Dirty Maid\\My Dirty Maid - 2022-01-27 - Maid Likes It Raw [WEBDL-1080p].mp4", "Z:\\content\\My Dirty Maid\\My Dirty Maid - 2024-05-02 - Maid Shows Off Her Assets! [WEBDL-1080p].mp4", "Z:\\content\\My Dirty Maid\\My Dirty Maid - 2024-09-05 - My Maid Has A Big Ass [WEBDL-1080p].mp4", "Z:\\content\\My Dirty Maid\\My Dirty Maid - 2025-06-25 - Maid Does It For Cash! [WEBDL-1080p].mp4", "Z:\\content\\My Pervy Family\\My Pervy Family - 2025-12-20 - Too Horny To Go Home! [WEBDL-1080p].mp4", "Z:\\content\\My Pervy Family\\My Pervy Family - 2025-12-25 - All She Wants For Xmas Is A Big Fat Dicking! [WEBDL-1080p].mp4", "Z:\\content\\Naughty Bookworms\\Naughty Bookworms - 2012-03-06 - Haley Sweet Fucking in the Couch with Her Small Tits [WEBDL-1080p].mp4", "Z:\\content\\Nubile Films\\Nubile Films - 2025-12-25 - She Can't Get Enough - S49-E22 [WEBDL-1080p].mp4", "Z:\\content\\Nubiles\\Nubiles - 2025-12-23 - Floral Dream [WEBDL-1080p].mp4", "Z:\\content\\Nubiles\\Nubiles - 2025-12-23 - Heavenly Temptress [WEBDL-1080p].mp4", "Z:\\content\\Nubiles\\Nubiles - 2025-12-24 - Sultry Stare [WEBDL-1080p].mp4", "Z:\\content\\Nubiles\\Nubiles - 2025-12-24 - Together Again [WEBDL-1080p].mp4", "Z:\\content\\Nubiles\\Nubiles - 2025-12-25 - Frilly Fantasy [WEBDL-1080p].mp4", "Z:\\content\\Nubiles\\Nubiles - 2025-12-26 - 1Give Me Your Load [WEBDL-1080p].mp4", "Z:\\content\\Nubiles\\Nubiles - 2025-12-26 - Striped Allure [WEBDL-1080p].mp4", "Z:\\content\\Nubiles\\Nubiles - 2025-12-27 - Teal Tease [WEBDL-1080p].mp4", "Z:\\content\\Nympho\\Nympho - 2025-12-21 - Isa Bounces On Some Dick [WEBDL-1080p].mp4", "Z:\\content\\Only Teen Blowjobs\\Only Teen Blowjobs - 2025-12-25 - Brad's Bold Move [WEBDL-1080p].mp4", "Z:\\content\\Pascals Sub Sluts\\Pascals Sub Sluts - 2022-05-11 - Jasmine Wilde - a Fucking Cum Machine (Solo Vid) [WEBDL-1080p].mp4", "Z:\\content\\Pascals Sub Sluts\\Pascals Sub Sluts - 2022-05-13 - Jasmine Wilde - This Bitch. (Fuck Scene) [WEBDL-1080p].mp4", "Z:\\content\\Pascals Sub Sluts\\Pascals Sub Sluts - 2022-05-18 - Sheena Ryder - Good Dick Has No Substitute (Solo Vid) [WEBDL-1080p].mp4", "Z:\\content\\Pascals Sub Sluts\\Pascals Sub Sluts - 2022-05-20 - Sheena Ryder - Makin It Rain (Fuck Scene) [WEBDL-1080p].mp4", "Z:\\content\\Pascals Sub Sluts\\Pascals Sub Sluts - 2022-05-25 - Dee Williams 2 - Pascal Vs. Dee's Unsubtle Wand (Solo Vid) [WEBDL-1080p].mp4", "Z:\\content\\Pascals Sub Sluts\\Pascals Sub Sluts - 2022-05-27 - Dee Williams 2 - a Fuck Years in the Making (Fuck Scene) [WEBDL-1080p].mp4", "Z:\\content\\Pascals Sub Sluts\\Pascals Sub Sluts - 2023-02-03 - Zhelia - Used Like a Mindless Fuckdoll (Fuck Scene) [WEBDL-1080p].mp4", "Z:\\content\\Pascals Sub Sluts\\Pascals Sub Sluts - 2025-01-22 - Vanessa Vega - Slut Training 101 (Solo Vid) [WEBDL-1080p].mp4", "Z:\\content\\Pascals Sub Sluts\\Pascals Sub Sluts - 2025-01-24 - Vanessa Vega - I Was A Whore Before I Got Into This. (Fuck Scene) [WEBDL-1080p].mp4", "Z:\\content\\Perv Mom\\Perv Mom - 2023-01-01 - Sexy Egg Hunt [WEBDL-1080p].mp4", "Z:\\content\\Perv Mom\\Perv Mom - 2023-01-29 - A Star Is Reborn [WEBDL-1080p].mp4", "Z:\\content\\Perv Mom\\Perv Mom - 2023-10-29 - Dick or Cheat [WEBDL-1080p].mp4", "Z:\\content\\Perv Mom\\Perv Mom - 2023-11-26 - Happy Fleshlight-Giving! [WEBDL-1080p].mp4", "Z:\\content\\Perv Mom\\Perv Mom - 2024-03-17 - Turn on the Heat [WEBDL-1080p].mp4", "Z:\\content\\Perv Mom\\Perv Mom - 2024-08-04 - Loving MILF Goes All Out And Takes Two Cocks At Once [WEBDL-1080p].mp4", "Z:\\content\\Perv Mom\\Perv Mom - 2024-10-20 - The Creampie Collector [WEBDL-1080p].mp4", "Z:\\content\\Perv Mom\\Perv Mom - 2025-10-27 - My Mom's Boobs Grew 10X Bigger Overnight! She Gave Me The Best Titjob Ever [WEBDL-1080p].mp4", "Z:\\content\\Porn World\\Porn World - 2023-05-02 - Raven Haired Strap on Sluts Kira Queen and Sapphire Astrea Share Big Dick Dj Gp2651 [WEBDL-1080p].mp4", "Z:\\content\\Porn World\\Porn World - 2025-12-23 - Lollipop Lessons - Sweet Discipline, Dangerous Fantasy [WEBDL-1080p].mp4", "Z:\\content\\Porn World\\Porn World - 2025-12-24 - Hot Blondes Novella Night And Vera Jarw Enjoy Christmas DP Gangbang Celebrations [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2016-01-22 - Let's Make a Deal [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2017-09-29 - You Know You Want This [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2017-10-06 - The Ugly Duckling [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2017-10-20 - Untranslated Pleasure [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2017-11-10 - Undercover [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2017-11-17 - Nice Guys Finish Screwed [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2018-01-26 - Contest Winner [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2018-06-22 - In a Transition [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2018-08-03 - Been a While [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2018-11-09 - I Need the Art Work [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2019-12-06 - My Stamp Collection [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2020-02-21 - Pro Gamer Buys House [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2020-09-04 - We Can Be More Than Friends [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2020-10-30 - Provocative Sales Tactics [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2021-06-25 - Too Much Distraction [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2021-11-05 - The Crypto House [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2022-03-18 - I Have an Idea [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2022-06-10 - A Hot Neighborhood [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2022-06-24 - This Isn't Real [WEBDL-1080p REAL].mp4", "Z:\\content\\Property Sex\\Property Sex - 2022-10-28 - Very Good Customer Service [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2023-11-03 - A Personal Relationship [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2024-03-08 - Horny Homeowner [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2024-06-21 - Best Bang For Your Buck [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2024-12-20 - Aggressive Offer [WEBDL-1080p].mp4", "Z:\\content\\Property Sex\\Property Sex - 2025-05-02 - Take It To The Next Level [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2021-11-16 - Wrapped Around Her Finger [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2021-11-30 - Like What You See [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2022-08-02 - Unfinished Business [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-01-17 - My Cousin, The Creep [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-02-07 - If These Walls Could Talk [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-02-21 - Public Display Of Affliction [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-03-07 - Breeding Questions - A Natasha Nice Story [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-03-21 - You Can't Have Her Without Me [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-04-11 - Where Her Loyalties Lie [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-05-23 - Protecting Her Chastity [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-06-13 - Pampering Our Sitter [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-07-11 - Long Time, No Stalk [WEBDL-1080p].mkv", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-08-01 - Aged Out - A Coco Lovelock Story [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-08-29 - Troubleshooting [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-09-12 - When Men Were Men [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-09-26 - No Good Deed [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-10-03 - Highly Recommended [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-10-10 - Smile For The Camera [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-10-12 - Good Fences Make Good Neighbors [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2023-10-17 - Family's Final Salute [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2024-03-05 - Fear Of Godson [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2024-05-07 - Jane Doe - A Ricky Greenwood Spotlight [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2024-07-16 - Saving The Family Business [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2024-07-23 - Better Than She Ever Could [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2024-07-30 - Preserving Our New Lifestyle [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2024-08-20 - On HER Terms [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2024-09-24 - Surprise Me - A Charlie Forde Story [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2024-10-31 - Future Darkly - Virtual Immorality [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2024-11-05 - I Can Make This All Go Away [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2025-01-07 - Wife's Revolt - A Siri Dahl Story [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2025-02-11 - Not Again [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2025-05-20 - Conceiving The Perfect Revenge [WEBDL-1080p].mp4", "Z:\\content\\Pure Taboo\\Pure Taboo - 2025-09-02 - A Step Away From The Truth [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2016-02-12 - Mommys Slutty Sacrifice [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2016-02-26 - Abellas Deep Anal Submission [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2016-03-11 - Blind Date Leads to Anal Domination [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2016-05-06 - Anal Therapy [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2016-10-21 - Scream Queen! [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2016-11-04 - Anal Vengeance [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2016-12-23 - Anal Psycho! [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2017-01-06 - Anal Psycho 2 [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2017-01-20 - Hr Nightmare [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2017-03-17 - Anal Insanity [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2017-04-14 - Anal Psycho 3 [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2017-05-19 - A Warm Gun [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2017-06-09 - The Sex Toy [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2017-07-28 - Homewrecker 1 - Moms Worst Nightmare [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2017-08-18 - Homewrecker 2 - the Ranchers Daughter [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2017-09-01 - Anal Artist [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2017-10-20 - The Wrong Girl [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2017-10-27 - Backpacker Nightmare [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2017-11-10 - Anal Bitch [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2017-12-01 - My Hard Time Boyfriend [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2017-12-22 - American Anal [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2017-12-29 - Heartbreaker [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2018-01-26 - The Perfect Gift [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2018-02-09 - The Reformer, One Mans Quest for the Perfect Pussy [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2018-02-23 - Honey Trap [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2018-04-13 - The Witness [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2018-07-13 - Anal Informant [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2018-10-05 - The Convenient Wife [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2018-11-16 - Homewrecker Revenge [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2018-12-07 - My New Boss [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2019-01-04 - Sexual Interrogation [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2019-01-11 - Jasmine Jae Learns a Lesson [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2019-02-01 - Prison Paralegal [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2019-03-22 - The Hostile Takeover [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2019-05-31 - The Gangsters Wife [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2019-07-26 - The Wreckening - Krissy Lynn Pounded and Punished in Every Hole [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2019-11-01 - Social Promotion - Ana Foxxx Gives Up Her Ass for More Followers [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2019-12-20 - XXX-Mas Bonus - Jasmine Jae Lets Seth Gamble Dominate Her for X-Mas [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2020-03-13 - The Dinner Party - Cheating Wife London River Gets Anally Creampied [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2020-04-24 - Dear Diary - Ana Foxxx Gets Tied Up and Double Fucked [WEBDL-720p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2021-10-22 - Security Risk, Part 1 - Corruption [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2021-10-29 - Security Risk, Part 2 - Misconduct [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2021-11-05 - Security Risk, Part 3 - Angst [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2021-11-12 - Security Risk, Part 4 - Collateral [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2022-07-07 - Willing to Do Anything - Katie Kush and Tommy Pistol [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2022-10-11 - The Escort - Victoria Voxxx and Derrick Pierce [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2022-10-25 - Ana Foxxx - Endless Potential [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2022-11-25 - Betrayed [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2023-07-25 - Kinkmas in July - Lauren Phillips and Johnny Castle [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2023-08-25 - Game, Set, Match - Anna Foxxx and Johnny Castle [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2024-01-12 - Paying Your Dues - Katie Kush and Tommy Pistol [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2024-03-15 - The Renovator - Tommy Pistol and Gia Derza [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2024-04-12 - Discretion Is Advised - Christian Wilde and Lauren Phillips [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2024-05-24 - Ashley's Ransom [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2024-06-07 - Vanessa's Anal Appeal [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2024-07-12 - Psycho Girlfriend's Lesson [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2024-11-08 - No Good Deed [WEBDL-1080p].mp4", "Z:\\content\\Sex and Submission\\Sex and Submission - 2024-12-27 - Filthy Lying Fuckhole [WEBDL-1080p].mp4", "Z:\\content\\SexArt\\SexArt - 2025-12-24 - Rehearsal [WEBDL-1080p].mp4", "Z:\\content\\SexArt\\SexArt - 2025-12-26 - Evening Routine [WEBDL-1080p].mp4", "Z:\\content\\Shoplyfter\\Shoplyfter - 2022-08-26 - Case No. 7906208 - Bad Friends [WEBDL-1080p].mp4", "Z:\\content\\Shoplyfter\\Shoplyfter - 2023-05-13 - Case No. 7906243 - What's Under the Jacket [WEBDL-1080p].mp4", "Z:\\content\\Shoplyfter\\Shoplyfter - 2023-12-23 - Case No. 7906276 - Xmas' True Meaning [WEBDL-1080p].mp4", "Z:\\content\\Shoplyfter\\Shoplyfter - 2024-03-08 - Case No. 7906288 - Crime Doesn't Creampie [WEBDL-1080p].mp4", "Z:\\content\\Shoplyfter\\Shoplyfter - 2024-08-31 - Case No. 8002102 - Spirit Week Fail [WEBDL-1080p].mp4", "Z:\\content\\Shoplyfter\\Shoplyfter - 2024-11-30 - Case No. 8002108 - The Stolen Jewelry Inside Her Bra [WEBDL-1080p].mp4", "Z:\\content\\Shoplyfter\\Shoplyfter - 2025-01-11 - Case No. 8001438 - Not So Pregnant After All [WEBDL-1080p].mp4", "Z:\\content\\Shoplyfter\\Shoplyfter - 2025-06-21 - Case No. 8003815 - The Busty Bikini Thief [WEBDL-1080p].mp4", "Z:\\content\\Sis Swap\\Sis Swap - 2022-12-04 - Poolside Temptations - A Deep Analysis Extended Cut [WEBDL-1080p].mp4", "Z:\\content\\Sis Swap\\Sis Swap - 2024-04-29 - Experimenting at Home [WEBDL-1080p].mp4", "Z:\\content\\Step Siblings\\Step Siblings - 2025-12-26 - We'll Do Anything To Be Sorority Sisters! Aria & Haley Make A Deal [WEBDL-1080p].mp4", "Z:\\content\\Thundercock\\Thundercock - 2025-12-18 - Sexy Blonde Lani Rails Takes Some BBC Bullying So Her Husband Doesn't Lose His Job [WEBDL-1080p].mp4", "Z:\\content\\Vixen\\Vixen - 2018-10-26 - After Dark Part 5 [WEBDL-1080p].mp4", "Z:\\content\\Vixen\\Vixen - 2025-12-23 - Gorgeous Blonde Bride Rides His Hard Cock [WEBDL-1080p].mp4", "Z:\\content\\Whipped Ass\\Whipped Ass - 2024-02-14 - Lola Mai & Vanessa Vega's v-Day - Extreme Humiliation & Submission [WEBDL-1080p].mp4", "Z:\\content\\Whipped Ass\\Whipped Ass - 2024-08-14 - Arabelle Punishes Nicole [WEBDL-1080p].mp4", "Z:\\content\\Whipped Ass\\Whipped Ass - 2024-11-27 - Penny Trains Pet, Ashley [WEBDL-1080p].mp4", "Z:\\content\\Whipped Ass\\Whipped Ass - 2025-05-14 - Fucking My Best Friend [WEBDL-1080p].mp4", "Z:\\content\\Whipped Ass\\Whipped Ass - 2025-09-17 - Tiny But Mighty [WEBDL-1080p].mp4", "Z:\\content\\ZZ Series\\ZZ Series - 2023-06-27 - Step Family Summer Vacation - Part 3 [WEBDL-1080p].mp4", "Z:\\content\\ZZ Series\\ZZ Series - 2023-09-26 - Brazzers House 4 - Episode 3 [WEBDL-1080p].mp4", "Z:\\content\\ZZ Series\\ZZ Series - 2023-10-03 - Brazzers House 4 - Episode 5 [WEBDL-1080p].mp4", "Z:\\content\\ZZ Series\\ZZ Series - 2024-11-22 - MILF Spa - Part 1 [WEBDL-1080p].mp4", "Z:\\content\\ZZ Series\\ZZ Series - 2024-11-29 - MILF Spa - Part 2 [WEBDL-1080p].mp4", "Z:\\content\\ZZ Series\\ZZ Series - 2024-12-23 - Wet Hot Indian Wedding - Part 1 [WEBDL-1080p].mp4", "Z:\\content\\ZZ Series\\ZZ Series - 2024-12-30 - Wet Hot Indian Wedding - Part 2 [WEBDL-1080p].mp4", "Z:\\content\\ZZ Series\\ZZ Series - 2025-01-06 - Wet Hot Indian Wedding - Part 3 [WEBDL-1080p].mp4", "Z:\\content\\ZZ Series\\ZZ Series - 2025-01-13 - Wet Hot Indian Wedding - Part 4 [WEBDL-1080p].mp4"] \ No newline at end of file diff --git a/run.ps1 b/run.ps1 new file mode 100644 index 0000000..fa20b0d --- /dev/null +++ b/run.ps1 @@ -0,0 +1,12 @@ +# Run Smart GPU Encoder (Wrapper) +$ScriptPath = "$PSScriptRoot\smart_gpu_encoder.py" +$PythonPath = "python" + +# Default to interactive mode if no args +if ($args.Count -eq 0) { + Write-Host "Starting Smart Encoder..." -ForegroundColor Cyan + & $PythonPath $ScriptPath +} else { + # Pass through arguments + & $PythonPath $ScriptPath $args +} diff --git a/run_smart_encoder.sh b/run_smart_encoder.sh new file mode 100644 index 0000000..32b6693 --- /dev/null +++ b/run_smart_encoder.sh @@ -0,0 +1,191 @@ +#!/bin/bash +# Smart Video Encoder Launcher - Linux/WSL +# Usage: ./run_smart_encoder.sh [options] + +set -e + +# Colors +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +CYAN='\033[0;36m' +MAGENTA='\033[0;35m' +RESET='\033[0m' + +# Configuration +TV_DIR="${TV_DIR:-/mnt/z/tv}" +CONTENT_DIR="${CONTENT_DIR:-/mnt/z/content}" +JOBS="${JOBS:-1}" +TV_ONLY=false +CONTENT_ONLY=false + +# Parse arguments +while [[ $# -gt 0 ]]; do + case "$1" in + --tv-dir) + TV_DIR="$2" + shift 2 + ;; + --content-dir) + CONTENT_DIR="$2" + shift 2 + ;; + --jobs) + JOBS="$2" + shift 2 + ;; + --tv-only) + TV_ONLY=true + shift + ;; + --content-only) + CONTENT_ONLY=true + shift + ;; + --help|-h) + echo "Usage: $0 [options]" + echo "" + echo "Options:" + echo " --tv-dir TV directory (default: /mnt/z/tv)" + echo " --content-dir Content directory (default: /mnt/z/content)" + echo " --jobs Parallel jobs (default: 1)" + echo " --tv-only Process TV directory only" + echo " --content-only Process content directory only" + echo " --help, -h Show this help" + exit 0 + ;; + *) + echo "Unknown option: $1" + echo "Use --help for usage" + exit 1 + ;; + esac +done + +log_info() { + echo -e "${CYAN}$*${RESET}" +} + +log_success() { + echo -e "${GREEN}✓ $*${RESET}" +} + +log_error() { + echo -e "${RED}❌ $*${RESET}" +} + +log_warn() { + echo -e "${YELLOW}⚠️ $*${RESET}" +} + +# Get script directory +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +PYTHON_SCRIPT="$SCRIPT_DIR/smart_encoder.py" + +# Check dependencies +log_info "Checking dependencies..." + +if ! command -v python3 &> /dev/null; then + log_error "Python 3 not found" + log_warn "Install with: sudo apt install python3" + exit 1 +fi + +if ! command -v ffmpeg &> /dev/null; then + log_error "FFmpeg not found" + log_warn "Install with: sudo apt install ffmpeg" + exit 1 +fi + +if ! command -v ffprobe &> /dev/null; then + log_error "FFprobe not found" + log_warn "Install with: sudo apt install ffmpeg" + exit 1 +fi + +if ! command -v ab-av1 &> /dev/null; then + log_error "ab-av1 not found" + log_warn "Install with: cargo install ab-av1" + exit 1 +fi + +log_success "All dependencies found" + +# Check if script exists +if [[ ! -f "$PYTHON_SCRIPT" ]]; then + log_error "smart_encoder.py not found at: $PYTHON_SCRIPT" + exit 1 +fi + +# Make script executable +chmod +x "$PYTHON_SCRIPT" + +# Print banner +echo "" +echo -e "${MAGENTA}============================================================${RESET}" +echo -e "${MAGENTA}🎬 Smart Video Encoder - Linux/WSL${RESET}" +echo -e "${MAGENTA}============================================================${RESET}" +echo "" + +# Print configuration +log_info "Configuration:" +echo " TV Directory: $TV_DIR" +echo " Content Directory: $CONTENT_DIR" +echo " Parallel Jobs: $JOBS" + +if [[ "$TV_ONLY" == true ]]; then + echo -e " ${YELLOW}Mode: TV only${RESET}" +elif [[ "$CONTENT_ONLY" == true ]]; then + echo -e " ${YELLOW}Mode: Content only${RESET}" +else + echo -e " ${YELLOW}Mode: TV + Content${RESET}" +fi + +# Check directories +if [[ "$TV_ONLY" == false ]] && [[ ! -d "$TV_DIR" ]]; then + log_warn "TV directory not found: $TV_DIR" +fi + +if [[ "$CONTENT_ONLY" == false ]] && [[ ! -d "$CONTENT_DIR" ]]; then + log_warn "Content directory not found: $CONTENT_DIR" +fi + +# Build command +CMD="python3 $PYTHON_SCRIPT --tv-dir $TV_DIR --content-dir $CONTENT_DIR --jobs $JOBS" + +if [[ "$TV_ONLY" == true ]]; then + CMD="$CMD --tv-only" +elif [[ "$CONTENT_ONLY" == true ]]; then + CMD="$CMD --content-only" +fi + +# Run +echo "" +log_info "Starting encoder..." +echo -e "${CYAN}============================================================${RESET}" +echo "" + +eval $CMD +EXIT_CODE=$? + +echo "" +echo -e "${CYAN}============================================================${RESET}" + +if [[ $EXIT_CODE -eq 0 ]]; then + log_success "Encoding completed successfully" +else + log_error "Encoding failed with exit code: $EXIT_CODE" +fi + +echo -e "${CYAN}============================================================${RESET}" + +# Show log locations +echo "" +log_info "Log files:" +echo " $HOME/Videos/encodes/logs/tv.jsonl" +echo " $HOME/Videos/encodes/logs/content.jsonl" +echo " $HOME/Videos/encodes/logs/rejected.jsonl" +echo " $HOME/Videos/encodes/logs/metadata.jsonl" +echo "" + +exit $EXIT_CODE diff --git a/src/smart_encoder.py b/src/smart_encoder.py new file mode 100644 index 0000000..7ab3a81 --- /dev/null +++ b/src/smart_encoder.py @@ -0,0 +1,444 @@ +#!/usr/bin/env python3 +""" +Smart Video Encoder - AV1 with HEVC Fallback +Runs on Windows with native ab-av1.exe and ffmpeg +Refactored to use vmaf_common.py +""" + +import os +import sys +import subprocess +import json +import shutil +import time +import argparse +import signal +import platform +import threading +from pathlib import Path +from concurrent.futures import ThreadPoolExecutor, as_completed + +import vmaf_common as common + +# --- Configuration --- +TARGET_VMAF_MIN = common.DEFAULT_CONFIG["target_vmaf"] +MIN_SAVINGS_PERCENT = common.DEFAULT_CONFIG["min_savings"] +MAX_JOBS = common.DEFAULT_CONFIG["cpu_jobs"] + +AV1_QUALITY = common.DEFAULT_CONFIG["av1_crf"] +HEVC_QUALITY = common.DEFAULT_CONFIG["hevc_crf"] + +SAMPLE_DURATION = 60 +SAMPLE_START = 300 +MAX_SAMPLE_SIZE_MB = 150 + +TEMP_DIR = common.get_temp_dir() + +# Tools +FFMPEG_BIN = "ffmpeg" +AB_AV1_BIN = "ab-av1" + +# Global state +_shutdown_requested = False +_lock_files = {} + +def signal_handler(signum, frame): + global _shutdown_requested + _shutdown_requested = True + print("\n\n[WARNING] Shutdown requested. Finishing current tasks...") + +if platform.system() != "Windows": + signal.signal(signal.SIGINT, signal_handler) + signal.signal(signal.SIGTERM, signal_handler) + +def run_command_streaming(cmd, description=""): + """Run command and stream output in real-time""" + print(f" ▶ Running: {description}") + + process = subprocess.Popen( + cmd, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + universal_newlines=True, + bufsize=1 + ) + + output_lines = [] + if process.stdout: + for line in process.stdout: + if _shutdown_requested: + process.terminate() + break + line = line.rstrip() + print(f" {line}") + output_lines.append(line) + + process.wait() + return process.returncode, "\n".join(output_lines) + + +def test_av1_sample(filepath, output_path): + """Test AV1 encoding on a sample segment""" + print(f" 🧪 Testing AV1 with {SAMPLE_DURATION}s sample...") + + cmd = [ + "ffmpeg", + "-hide_banner", + "-loglevel", "warning", + "-ss", str(SAMPLE_START), + "-i", str(filepath), + "-t", str(SAMPLE_DURATION), + "-c:v", "libsvtav1", + "-crf", str(AV1_QUALITY), + "-preset", "6", + "-c:a", "copy", + "-c:s", "copy", + "-y", + str(output_path) + ] + + returncode, output = run_command_streaming(cmd, f"AV1 sample test") + return returncode == 0 and output_path.exists() + + +def encode_av1_full(filepath, output_path): + """Full AV1 encode using ab-av1""" + print(f" 🎬 Full AV1 encode...") + + cmd = [ + "ab-av1", "encode", + "-i", str(filepath), + "-o", str(output_path), + "--crf", str(AV1_QUALITY), + "--preset", "6", + "--acodec", "copy" + ] + + return run_command_streaming(cmd, f"AV1 full encode")[0] == 0 + + +def encode_hevc_full(filepath, output_path): + """Full HEVC encode using ffmpeg""" + print(f" 🎬 Full HEVC encode...") + + cmd = [ + "ffmpeg", + "-hide_banner", + "-loglevel", "warning", + "-i", str(filepath), + "-c:v", "libx265", + "-crf", str(HEVC_QUALITY), + "-preset", "medium", + "-c:a", "copy", + "-c:s", "copy", + "-y", + str(output_path) + ] + + return run_command_streaming(cmd, f"HEVC full encode")[0] == 0 + + +def process_file(filepath, log_dir, log_category, lock_dir): + """Process a single video file with AV1→HEVC fallback""" + filepath = Path(filepath) + filename = filepath.name + + # Check lock (using shared logic now) + lock_file = common.acquire_lock(lock_dir, filepath) + if not lock_file: + print(f" 🔒 Skipping (locked): {filename}") + return True + + try: + print(f"\n{'='*60}") + print(f"📁 Processing: {filename}") + print(f"{'='*60}") + + # Get initial metadata + metadata_before = common.get_video_info(filepath) + if not metadata_before: + print(f"❌ Could not read metadata, skipping") + return False + + print(f" 📊 Original:") + print(f" Codec: {metadata_before['codec']}") + print(f" Size: {metadata_before['size'] / (1024**3):.2f} GB") + print(f" Bitrate: {metadata_before['bitrate']} kbps") + print(f" Duration: {metadata_before['duration'] / 60:.1f} min") + + # Skip if already AV1 or HEVC + if metadata_before['codec'] in ['av1', 'hevc']: + print(f" ℹ️ Already optimized ({metadata_before['codec']}), skipping") + # We don't log skips to main log to avoid clutter, but could if needed + return True + + input_size = metadata_before['size'] + + # --- PHASE 1: AV1 SAMPLE TEST --- + sample_output = TEMP_DIR / f"{filepath.stem}.sample.mkv" + use_av1 = True + + try: + av1_test_passed = test_av1_sample(filepath, sample_output) + + if av1_test_passed: + sample_size = sample_output.stat().st_size + sample_size_mb = sample_size / (1024 * 1024) + + print(f" 📏 Sample size: {sample_size_mb:.1f} MB") + + # Extrapolate to full file size + duration_ratio = metadata_before['duration'] / SAMPLE_DURATION + estimated_full_size = sample_size * duration_ratio + estimated_full_gb = estimated_full_size / (1024**3) + input_gb = input_size / (1024**3) + + print(f" 📈 Estimated full size: {estimated_full_gb:.2f} GB") + print(f" 📉 Original size: {input_gb:.2f} GB") + + if sample_size_mb > MAX_SAMPLE_SIZE_MB: + print(f" ❌ AV1 REJECTED: Sample too large ({sample_size_mb:.1f} MB > {MAX_SAMPLE_SIZE_MB} MB)") + use_av1 = False + elif estimated_full_size >= input_size: + print(f" ❌ AV1 REJECTED: Estimated size ({estimated_full_gb:.2f} GB) >= original ({input_gb:.2f} GB)") + use_av1 = False + else: + estimated_savings = (1 - estimated_full_size / input_size) * 100 + print(f" ✅ AV1 PASS: Estimated savings {estimated_savings:.1f}%") + else: + print(f" ❌ AV1 sample test failed") + use_av1 = False + + if sample_output.exists(): + sample_output.unlink() + + except Exception as e: + print(f" ❌ AV1 test error: {e}") + use_av1 = False + + # --- PHASE 2: ENCODE --- + temp_output = TEMP_DIR / f"{filepath.stem}.temp.mkv" + final_status = "rejected" + final_codec = None + final_size = input_size + final_savings = 0.0 + + if use_av1: + # Try AV1 full encode + if encode_av1_full(filepath, temp_output): + metadata_after = common.get_video_info(temp_output) + if metadata_after: + final_size = metadata_after['size'] + final_savings = (1 - final_size / input_size) * 100 + + if final_size < input_size: + final_status = "success" + final_codec = "av1" + print(f" ✅ AV1 SUCCESS: Saved {final_savings:.1f}%") + else: + print(f" ❌ AV1 FAILED: Final size >= original") + if temp_output.exists(): temp_output.unlink() + + # Fall back to HEVC + print(f" 🔄 Trying HEVC fallback...") + if encode_hevc_full(filepath, temp_output): + metadata_after = common.get_video_info(temp_output) + if metadata_after: + final_size = metadata_after['size'] + final_savings = (1 - final_size / input_size) * 100 + if final_size < input_size: + final_status = "success" + final_codec = "hevc" + print(f" ✅ HEVC SUCCESS: Saved {final_savings:.1f}%") + else: + print(f" ❌ HEVC FAILED: Also larger than original") + if temp_output.exists(): temp_output.unlink() + else: + print(f" ❌ AV1 encode failed, trying HEVC...") + if encode_hevc_full(filepath, temp_output): + metadata_after = common.get_video_info(temp_output) + if metadata_after: + final_size = metadata_after['size'] + final_savings = (1 - final_size / input_size) * 100 + if final_size < input_size: + final_status = "success" + final_codec = "hevc" + print(f" ✅ HEVC SUCCESS: Saved {final_savings:.1f}%") + else: + print(f" ❌ HEVC FAILED: Larger than original") + if temp_output.exists(): temp_output.unlink() + else: + # AV1 test failed, try HEVC directly + print(f" 🔄 Trying HEVC directly...") + if encode_hevc_full(filepath, temp_output): + metadata_after = common.get_video_info(temp_output) + if metadata_after: + final_size = metadata_after['size'] + final_savings = (1 - final_size / input_size) * 100 + if final_size < input_size: + final_status = "success" + final_codec = "hevc" + print(f" ✅ HEVC SUCCESS: Saved {final_savings:.1f}%") + else: + print(f" ❌ HEVC FAILED: Larger than original") + if temp_output.exists(): temp_output.unlink() + + # --- PHASE 3: FINALIZE --- + if final_status == "success": + # Replace original file (Safe Upload) + if filepath.suffix: + backup_path = filepath.with_suffix(f"{filepath.suffix}.backup") + else: + backup_path = Path(str(filepath) + ".backup") + + shutil.move(str(filepath), str(backup_path)) + shutil.move(str(temp_output), str(filepath)) + + # Verify Integrity + if Path(filepath).stat().st_size == final_size: + backup_path.unlink() + metadata_after = common.get_video_info(filepath) + + common.log_event(log_dir, f"{log_category}.jsonl", { + "file": str(filepath), + "status": "success", + "codec": final_codec, + "input_size": input_size, + "output_size": final_size, + "savings_percent": final_savings, + "metadata_before": metadata_before, + "metadata_after": metadata_after + }) + + print(f"\n ✅ SUCCESS: Optimized with {final_codec.upper() if final_codec else 'unknown'}") + print(f" Savings: {final_savings:.1f}% ({input_size / (1024**3):.2f} GB → {final_size / (1024**3):.2f} GB)") + else: + print(" ❌ Critical Error: Copied file size mismatch! Restoring backup.") + shutil.move(str(backup_path), str(filepath)) + + else: + common.log_event(log_dir, "rejected.jsonl", { + "file": str(filepath), + "status": "rejected", + "reason": "both_codecs_larger_than_original", + "input_size": input_size, + "metadata": metadata_before + }) + + print(f"\n ❌ REJECTED: Both AV1 and HEVC larger than original") + print(f" Keeping original file ({input_size / (1024**3):.2f} GB)") + + return True + + except Exception as e: + print(f"❌ Error processing {filename}: {e}") + return False + + finally: + # Release shared lock + if lock_file and lock_file.exists(): + lock_file.unlink() + +def scan_directory(directory, extensions=None): + """Scan directory for video files""" + if extensions is None: + extensions = {".mkv", ".mp4", ".mov", ".avi", ".ts"} + + files = [] + for dirpath, dirnames, filenames in os.walk(directory): + # Skip processed/system files + dirnames[:] = [d for d in dirnames if not d.startswith("_") and d not in [".recycle", "@eaDir"]] + + for filename in filenames: + filepath = Path(dirpath) / filename + if filepath.suffix.lower() in extensions: + if "_av1" in filepath.stem.lower() or "_hevc" in filepath.stem.lower(): + continue + files.append(filepath) + + return sorted(files) + +def main(): + parser = argparse.ArgumentParser(description="Smart Video Encoder - AV1 with HEVC Fallback") + parser.add_argument("--tv-dir", default=common.DEFAULT_CONFIG["tv_dir"], help="TV directory") + parser.add_argument("--content-dir", default=common.DEFAULT_CONFIG["content_dir"], help="Content directory") + parser.add_argument("--jobs", type=int, default=MAX_JOBS, help="Parallel jobs") + parser.add_argument("--tv-only", action="store_true", help="Process TV only") + parser.add_argument("--content-only", action="store_true", help="Process content only") + args = parser.parse_args() + + print("="*60) + print("🎬 Smart Video Encoder - AV1 with HEVC Fallback") + print("="*60) + + # Setup + common.check_dependencies() + lock_dir, log_dir = common.get_base_paths(args) + TEMP_DIR.mkdir(parents=True, exist_ok=True) + + print(f"\n📁 Configuration:") + print(f" TV Directory: {args.tv_dir}") + print(f" Content Directory: {args.content_dir}") + print(f" Parallel Jobs: {args.jobs}") + print(f" Locks: {lock_dir}") + print(f" Logs: {log_dir}") + print() + + tasks = [] + if not args.content_only: + tv_dir = Path(args.tv_dir) + if tv_dir.exists(): + tv_files = scan_directory(tv_dir) + print(f"📺 TV Files: {len(tv_files)}") + for f in tv_files: + tasks.append((f, log_dir, "tv_shows", lock_dir)) + + if not args.tv_only: + content_dir = Path(args.content_dir) + if content_dir.exists(): + content_files = scan_directory(content_dir) + print(f"📦 Content Files: {len(content_files)}") + for f in content_files: + tasks.append((f, log_dir, "content", lock_dir)) + + if not tasks: + print("❌ No files to process") + return + + print(f"\n🚀 Processing {len(tasks)} files...") + print("="*60) + + success_count = 0 + fail_count = 0 + + with ThreadPoolExecutor(max_workers=args.jobs) as executor: + futures = {} + for item in tasks: + # item = (filepath, log_dir, log_category, lock_dir) + future = executor.submit(process_file, *item) + futures[future] = item[0] + + for future in as_completed(futures): + if _shutdown_requested: + break + + filepath = futures[future] + try: + result = future.result() + if result: + success_count += 1 + else: + fail_count += 1 + except Exception as e: + print(f"❌ Error processing {filepath}: {e}") + fail_count += 1 + + print("\n" + "="*60) + print("📊 Summary:") + print(f" Processed: {success_count + fail_count}") + print(f" ✅ Success: {success_count}") + print(f" ❌ Failed: {fail_count}") + print("="*60) + +if __name__ == "__main__": + main() diff --git a/src/smart_gpu_encoder.py b/src/smart_gpu_encoder.py new file mode 100644 index 0000000..6fa8a20 --- /dev/null +++ b/src/smart_gpu_encoder.py @@ -0,0 +1,504 @@ +#!/usr/bin/env python3 +""" +Smart GPU Encoder (Windows/AMD/NVIDIA Optimized) +------------------------------------------------ +Refactored to use vmaf_common.py +""" + +import os +import sys +import subprocess +import json +import shutil +import time +import argparse +import signal +import platform +import re +import threading +from pathlib import Path +from datetime import datetime +from concurrent.futures import ThreadPoolExecutor, as_completed + +# --- Import Common Module --- +import vmaf_common as common + +# --- Configuration --- +TARGET_VMAF_MIN = common.DEFAULT_CONFIG["target_vmaf"] +MIN_SAVINGS_PERCENT = common.DEFAULT_CONFIG["min_savings"] +MAX_JOBS = common.DEFAULT_CONFIG["gpu_jobs"] + +DEFAULT_AV1_QP = 32 +DEFAULT_HEVC_QP = 28 + +SAMPLE_DURATION = 60 +SAMPLE_START_TIME = 300 + +TEMP_DIR = None # Will be set in main + +# Tools (Local override if needed, else used from common checks) +FFMPEG_BIN = "ffmpeg" +AB_AV1_BIN = "ab-av1" + +# Global state +shutdown_requested = False +active_processes = set() +upload_lock = threading.Lock() +proc_lock = threading.Lock() +debug_mode = False + +def handle_sigint(signum, frame): + global shutdown_requested + print("\n\n[!] CRITICAL: Shutdown requested (Ctrl+C).") + print(" Killing active encoder processes...") + shutdown_requested = True + + with proc_lock: + for proc in list(active_processes): + try: + proc.terminate() + time.sleep(0.1) + if proc.poll() is None: + proc.kill() + except: + pass + print(" Cleanup complete. Exiting.") + sys.exit(1) + +signal.signal(signal.SIGINT, handle_sigint) + +# --- Hardware Detection --- +def detect_hardware_encoder(): + """Detects available hardware encoders via ffmpeg""" + try: + res = subprocess.run([FFMPEG_BIN, "-hide_banner", "-encoders"], capture_output=True, text=True) + out = res.stdout + + av1_enc = None + hevc_enc = None + + # Check AMD + if "av1_amf" in out: av1_enc = "av1_amf" + if "hevc_amf" in out: hevc_enc = "hevc_amf" + if av1_enc or hevc_enc: return av1_enc, hevc_enc, "amf" + + # Check NVIDIA + if "av1_nvenc" in out: av1_enc = "av1_nvenc" + if "hevc_nvenc" in out: hevc_enc = "hevc_nvenc" + if av1_enc or hevc_enc: return av1_enc, hevc_enc, "nvenc" + + # Check Intel + if "av1_qsv" in out: av1_enc = "av1_qsv" + if "hevc_qsv" in out: hevc_enc = "hevc_qsv" + if av1_enc or hevc_enc: return av1_enc, hevc_enc, "qsv" + + # Check Apple + if "av1_videotoolbox" in out: av1_enc = "av1_videotoolbox" + if "hevc_videotoolbox" in out: hevc_enc = "hevc_videotoolbox" + if av1_enc or hevc_enc: return av1_enc, hevc_enc, "videotoolbox" + + return None, None, "cpu" + + except Exception as e: + print(f"[Warning] HW Detection failed: {e}") + return None, None, "cpu" + +def get_encoder_args(codec, encoder, qp): + """Returns correct ffmpeg args for specific HW vendor""" + if not encoder: return [] + + # AMD AMF + if "amf" in encoder: + common_args = ["-rc", "cqp", "-qp_i", str(qp), "-qp_p", str(qp), "-qp_b", str(qp), "-quality", "quality"] + return ["-c:v", encoder, "-usage", "transcoding"] + common_args + + # NVIDIA NVENC + if "nvenc" in encoder: + return ["-c:v", encoder, "-rc", "constqp", "-qp", str(qp), "-preset", "p6", "-spatial-aq", "1"] + + # Intel QSV + if "qsv" in encoder: + return ["-c:v", encoder, "-global_quality", str(qp), "-look_ahead", "1"] + + # Apple VideoToolbox + if "videotoolbox" in encoder: + q = int(100 - (qp * 2)) + return ["-c:v", encoder, "-q:v", str(q)] + + # Software Fallback + if encoder == "libsvtav1": + # CRF 20-35 range usually good + return ["-c:v", "libsvtav1", "-crf", str(qp), "-preset", "6", "-g", "240"] + + if encoder == "libx265": + return ["-c:v", "libx265", "-crf", str(qp), "-preset", "medium"] + + return [] + +# --- Helpers --- +def run_process(cmd, description="", status_callback=None): + """Run a process with real-time output and clean shutdown tracking""" + if shutdown_requested: return False + if status_callback: status_callback(description) + + try: + # Windows: Hide console window + cflags = 0x08000000 if platform.system() == 'Windows' else 0 + + proc = subprocess.Popen( + cmd, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + universal_newlines=True, + bufsize=1, + creationflags=cflags + ) + + with proc_lock: + active_processes.add(proc) + + if proc.stdout: + for line in proc.stdout: + if shutdown_requested: + proc.terminate() + break + line = line.strip() + if line: + if debug_mode: print(f" [Debug] {line}") + + if status_callback and ("frame=" in line or "size=" in line or "time=" in line): + status_callback(line) + + proc.wait() + + with proc_lock: + if proc in active_processes: + active_processes.remove(proc) + + return proc.returncode == 0 + except Exception as e: + if status_callback: status_callback(f"Error: {e}") + return False + +def run_vmaf_check(reference, distorted, status_callback=None): + """Run ab-av1 vmaf to get score""" + # Use common dependency check to find binary if needed, but here just assume it's in path or bin + ab_exe = "ab-av1" + + # Check if bundled exists + bundled = Path(__file__).parent / "bin" / "ab-av1.exe" + if bundled.exists(): + ab_exe = str(bundled) + + cmd = [ab_exe, "vmaf", "--reference", str(reference), "--distorted", str(distorted)] + if status_callback: status_callback("Calculating VMAF...") + + try: + result = subprocess.run(cmd, capture_output=True, text=True, check=True) + for line in result.stdout.splitlines(): + line = line.strip() + match = re.search(r"VMAF\s+([0-9.]+)", line) + if match: return float(match.group(1)) + try: + val = float(line) + if 0 <= val <= 100: return val + except: pass + return 0.0 + except Exception: + return -1.0 + +# --- Core Logic --- +def process_file(filepath, log_category, lock_dir, log_dir, encoders, worker_id=0, status_cb=None): + """ + Process a single file. + status_cb: function(worker_id, filename, status_text, color) + """ + av1_enc, hevc_enc, hw_type = encoders + filepath = Path(filepath) + filename = filepath.name + + def update(msg, color="white"): + if status_cb: status_cb(worker_id, filename, msg, color) + else: print(f"[{worker_id}] {msg}") + + if shutdown_requested: return + + # 1. Lock Check (Shared Storage) + lock_file = common.acquire_lock(lock_dir, filepath) + if not lock_file: + return # Locked or skipped + + try: + update("Analyzing...", "blue") + + # 2. Analyze Source + info = common.get_video_info(filepath) + if not info: + update("Metadata Error", "red") + return + + if info["codec"] == "av1": + update("Already AV1 (Skipping)", "green") + time.sleep(1) + return + + # 3. Create Samples + sample_ref = TEMP_DIR / f"{filepath.stem}_{worker_id}_ref.mkv" + sample_enc = TEMP_DIR / f"{filepath.stem}_{worker_id}_enc.mkv" + + sample_start = SAMPLE_START_TIME + if info["duration"] < (SAMPLE_START_TIME + SAMPLE_DURATION): + sample_start = max(0, (info["duration"] / 2) - (SAMPLE_DURATION / 2)) + + update("Extracting Ref", "magenta") + cmd_ref = [ + FFMPEG_BIN, "-y", "-hide_banner", "-loglevel", "error", + "-ss", str(sample_start), "-t", str(SAMPLE_DURATION), + "-i", str(filepath), "-c", "copy", "-map", "0:v:0", + str(sample_ref) + ] + if not run_process(cmd_ref): + update("Extract Ref Failed", "red") + return + + # TEST 1: AV1 + vmaf_score = 0 + savings = 0 + + if av1_enc: + update(f"Testing AV1 QP{DEFAULT_AV1_QP}", "yellow") + enc_args = get_encoder_args("av1", av1_enc, DEFAULT_AV1_QP) + cmd_enc = [ + FFMPEG_BIN, "-y", "-hide_banner", "-loglevel", "error", + "-i", str(sample_ref), *enc_args, "-an", str(sample_enc) + ] + + if run_process(cmd_enc): + update("Calculating VMAF", "cyan") + vmaf_score = run_vmaf_check(sample_ref, sample_enc) + + ref_size = sample_ref.stat().st_size + enc_size = sample_enc.stat().st_size + savings = (1 - (enc_size / ref_size)) * 100 if ref_size > 0 else 0 + else: + update("AV1 Test Failed", "red") + + chosen_codec = None + chosen_qp = 0 + + # Decision Logic + if vmaf_score >= TARGET_VMAF_MIN and savings >= MIN_SAVINGS_PERCENT: + chosen_codec = "av1" + chosen_qp = DEFAULT_AV1_QP + update(f"AV1 Good (VMAF {vmaf_score:.1f})", "green") + + # Smart Optimization + if vmaf_score > 97.0: + update(f"Optimizing (High Quality {vmaf_score:.1f})", "yellow") + new_qp = DEFAULT_AV1_QP + 4 + args_opt = get_encoder_args("av1", av1_enc, new_qp) + cmd_opt = [FFMPEG_BIN, "-y", "-hide_banner", "-loglevel", "error", "-i", str(sample_ref), *args_opt, "-an", str(sample_enc)] + + if run_process(cmd_opt): + vmaf_opt = run_vmaf_check(sample_ref, sample_enc) + size_opt = sample_enc.stat().st_size + sav_opt = (1 - (size_opt / sample_ref.stat().st_size)) * 100 + + if vmaf_opt >= TARGET_VMAF_MIN and sav_opt > savings: + update(f"Opt Accepted (+{sav_opt - savings:.1f}%)", "green") + chosen_qp = new_qp + vmaf_score = vmaf_opt + savings = sav_opt + else: + update("Testing HEVC Fallback", "magenta") + if info["codec"] != "hevc" and hevc_enc: + hevc_args = get_encoder_args("hevc", hevc_enc, DEFAULT_HEVC_QP) + cmd_hevc = [FFMPEG_BIN, "-y", "-hide_banner", "-loglevel", "error", "-i", str(sample_ref), *hevc_args, "-an", str(sample_enc)] + run_process(cmd_hevc) + + vmaf_score = run_vmaf_check(sample_ref, sample_enc) + enc_size = sample_enc.stat().st_size + savings = (1 - (enc_size / sample_ref.stat().st_size)) * 100 + + if vmaf_score >= TARGET_VMAF_MIN and savings >= MIN_SAVINGS_PERCENT: + update(f"HEVC Accepted (VMAF {vmaf_score:.1f})", "green") + chosen_codec = "hevc" + chosen_qp = DEFAULT_HEVC_QP + else: + update("HEVC Rejected", "red") + common.log_event(log_dir, "rejected.jsonl", {"file": str(filepath), "status": "rejected", "vmaf": vmaf_score}) + else: + update("Skipping HEVC", "yellow") + + # Cleanup Samples + if sample_ref.exists(): sample_ref.unlink() + if sample_enc.exists(): sample_enc.unlink() + + # 4. Full Encode + if chosen_codec: + update(f"Encoding {chosen_codec.upper()} (QP {chosen_qp})", "green") + output_file = TEMP_DIR / f"{filepath.stem}.{chosen_codec}.mkv" + final_args = get_encoder_args(chosen_codec, av1_enc if chosen_codec=="av1" else hevc_enc, chosen_qp) + + cmd_full = [ + FFMPEG_BIN, "-y", "-hide_banner", "-loglevel", "info", "-stats", + "-i", str(filepath), + *final_args, + "-c:a", "copy", "-c:s", "copy", "-map", "0", + str(output_file) + ] + + def prog_cb(msg): + if "frame=" in msg: + try: + if "time=" in msg: + t_str = msg.split("time=")[1].split(" ")[0] + h, m, s = map(float, t_str.split(':')) + cur_sec = h*3600 + m*60 + s + percent = (cur_sec / info["duration"]) * 100 + else: + percent = 0.0 + + speed = "1x" + if "speed=" in msg: + speed = msg.split("speed=")[1].split("x")[0] + "x" + + update(f"Encoding {chosen_codec} | {percent:.1f}% | {speed}", "green") + except: + pass + + if run_process(cmd_full, f"Full Encode ({chosen_codec.upper()} QP {chosen_qp})", status_callback=prog_cb): + final_info = common.get_video_info(output_file) + if not final_info: final_info = {"size": output_file.stat().st_size} + + final_size = final_info["size"] + final_savings = (1 - (final_size / info["size"])) * 100 + saved_bytes = info["size"] - final_size + + update(f"Uploading (Saved {final_savings:.1f}%)", "blue") + + # UPLOAD (Serialized) + with upload_lock: + update(f"Uploading...", "blue") + backup_path = filepath.with_suffix(f"{filepath.suffix}.original") + try: + shutil.move(str(filepath), str(backup_path)) + shutil.copy2(str(output_file), str(filepath)) + + # Verify integrity + if Path(filepath).stat().st_size == final_size: + output_file.unlink() + backup_path.unlink() + + # Refresh metadata for accuracy + final_info_verified = common.get_video_info(filepath) + + common.log_event(log_dir, f"{log_category}.jsonl", { + "file": str(filepath), + "status": "success", + "codec": chosen_codec, + "vmaf": vmaf_score, + "savings": final_savings, + "original_metadata": info, + "encoded_metadata": final_info_verified or final_info + }) + update("Done", "green") + if status_cb: status_cb(worker_id, filename, f"STATS:SAVED:{saved_bytes}", "green") + else: + update("Upload Failed (Size Mismatch)", "red") + shutil.move(str(backup_path), str(filepath)) + except Exception as e: + update(f"Move Error: {str(e)[:20]}", "red") + if backup_path.exists(): shutil.move(str(backup_path), str(filepath)) + else: + update("Encode Failed", "red") + if output_file.exists(): output_file.unlink() + + except Exception as e: + update(f"Error: {str(e)[:30]}", "red") + finally: + if lock_file.exists(): lock_file.unlink() + update("Idle", "dim") + +def main(): + global debug_mode + parser = argparse.ArgumentParser() + parser.add_argument("--tv-dir", default=common.DEFAULT_CONFIG["tv_dir"]) + parser.add_argument("--content-dir", default=common.DEFAULT_CONFIG["content_dir"]) + parser.add_argument("--jobs", type=int, default=MAX_JOBS) + parser.add_argument("--debug", action="store_true") + parser.add_argument("--skip-until", help="Skip all files alphabetically until this filename substring is found") + parser.add_argument("--cpu-only", action="store_true", help="Force software encoding (CPU only)") + parser.add_argument("--temp-dir", help="Override local temp directory") + args = parser.parse_args() + + if args.debug: + debug_mode = True + print("[Debug Mode Enabled]") + + # 0. Check Dependencies + common.check_dependencies() + + # 1. Setup Directories + lock_dir, log_dir = common.get_base_paths(args) + + global TEMP_DIR + TEMP_DIR = common.get_temp_dir(args) + + # 2. Detect Hardware + av1, hevc, hw = common.detect_hardware_encoder(args) + + print("="*60) + print(f" SMART ENCODER | Hardware: {hw.upper()} | Jobs: {args.jobs}") + + if hw == "cpu": + print(f" [!] Fallback to CPU Software Encoding (Slow)") + if av1: print(f" AV1: {av1} (libsvtav1)") + if hevc: print(f" HEVC: {hevc} (libx265)") + else: + print(f" AV1: {av1} | HEVC: {hevc}") + + print(f" Locks: {lock_dir}") + print("="*60) + + # 3. Scan & Queue + tasks = [] + + tv_path = Path(args.tv_dir) + if tv_path.exists(): + print(f"Scanning TV: {tv_path}") + files = list(tv_path.rglob("*.mkv")) + list(tv_path.rglob("*.mp4")) + files.sort(key=lambda x: x.stat().st_size, reverse=True) + for f in files: tasks.append((f, "tv_shows")) + + content_path = Path(args.content_dir) + if content_path.exists(): + print(f"Scanning Content: {content_path}") + files = list(content_path.rglob("*.mkv")) + list(content_path.rglob("*.mp4")) + files.sort(key=lambda x: x.stat().st_size, reverse=True) + for f in files: tasks.append((f, "content")) + + if not tasks: + print("No files found.") + return + + # 4. Execute + print(f"\n🚀 Processing {len(tasks)} files...") + + with ThreadPoolExecutor(max_workers=args.jobs) as executor: + futures = { + executor.submit(process_file, f, cat, lock_dir, log_dir, (av1, hevc, hw)): f + for f, cat in tasks + } + + for future in as_completed(futures): + if shutdown_requested: + executor.shutdown(wait=False, cancel_futures=True) + break + try: + future.result() + except Exception as e: + print(f"Worker Error: {e}") + +if __name__ == "__main__": + main() diff --git a/src/smart_monitor.py b/src/smart_monitor.py new file mode 100644 index 0000000..2813768 --- /dev/null +++ b/src/smart_monitor.py @@ -0,0 +1,357 @@ +#!/usr/bin/env python3 +r""" +Smart VMAF Monitor & Dashboard +------------------------------ +The main interface for the VMAF Optimizer. +Provides a TUI (Text User Interface) to visualize encoding progress. + +Usage: + python smart_monitor.py --tv-dir "Z:\tv" --content-dir "Z:\content" --jobs 4 [--monitor] +""" + +import os +import time +import argparse +import sys +import threading +import queue +import json +import re +from pathlib import Path + +# Import the engine +import smart_gpu_encoder as encoder +import vmaf_common as common + +# UI Library +try: + from rich.console import Console + from rich.live import Live + from rich.table import Table + from rich.layout import Layout + from rich.panel import Panel + from rich.text import Text + HAS_RICH = True +except ImportError: + HAS_RICH = False + print("Warning: 'rich' library not found. Running in basic mode.") + +# Watchdog +try: + from watchdog.observers import Observer + from watchdog.events import FileSystemEventHandler + HAS_WATCHDOG = True +except ImportError: + HAS_WATCHDOG = False + +# --- Caching --- +CACHE_FILE = Path("library_cache.json") + +def load_cache(): + if CACHE_FILE.exists(): + try: + with open(CACHE_FILE, "r") as f: + return set(json.load(f)) + except: pass + return set() + +def save_cache(files): + try: + with open(CACHE_FILE, "w") as f: + # Convert paths to strings for JSON + json.dump([str(f) for f in files], f) + except: pass + +def fast_scan(path): + """Recursive scan using scandir (faster than pathlib)""" + files = [] + try: + if not os.path.exists(path): return [] + for entry in os.scandir(path): + if entry.is_dir(): + files.extend(fast_scan(entry.path)) + elif entry.is_file(): + if entry.name.lower().endswith(('.mkv', '.mp4')): + if "_enc" not in entry.name and "_ref" not in entry.name: + files.append(entry.path) + except: + pass + return files + +# --- UI State --- +class Dashboard: + def __init__(self, num_workers): + self.num_workers = num_workers + self.worker_status = {i: {"file": "Idle", "action": "Waiting", "progress": 0, "speed": "", "color": "dim"} for i in range(num_workers)} + self.stats = {"processed": 0, "skipped": 0, "failed": 0, "rejected": 0, "savings_gb": 0.0} + self.recent_completed = [] + self.lock = threading.Lock() + + def format_filename(self, filename): + # Clean Sonarr format: {Series} - S{s}E{e} - {Title} {Quality} + # Goal: Series S01E01 [Quality] + try: + # Match S01E01 + match = re.search(r"(.*?) - (S\d+E\d+) - .*? ((?:Bluray|WebDL|Remux|2160p|1080p|Proper).*)\.mkv", filename, re.IGNORECASE) + if match: + series = match.group(1)[:15] # Truncate series name + s_e = match.group(2) + quality = match.group(3).split()[0] # Just take first part of quality (Bluray-2160p) + return f"{series} {s_e} [{quality}]" + + # Fallback for simpler names + if len(filename) > 35: + return filename[:15] + "..." + filename[-15:] + return filename + except: + return filename + + def update_worker(self, worker_id, file, action, color="blue"): + with self.lock: + display_name = self.format_filename(file) + + progress = 0 + speed = "" + + # Parse rich status: "Encoding AV1 | 45.2% | 2.3x" + if "|" in action: + parts = action.split("|") + action_text = parts[0].strip() + for p in parts[1:]: + p = p.strip() + if "%" in p: + try: progress = float(p.replace("%", "")) + except: pass + elif "x" in p or "MB/s" in p: + speed = p + action = action_text + + self.worker_status[worker_id] = { + "file": display_name, + "action": action, + "progress": progress, + "speed": speed, + "color": color + } + + def add_log(self, message): + with self.lock: + ts = time.strftime("%H:%M:%S") + self.recent_completed.insert(0, f"[{ts}] {message}") + if len(self.recent_completed) > 12: + self.recent_completed.pop() + + def update_stats(self, key, val=1): + with self.lock: + if key == "savings_gb": self.stats[key] += val + else: self.stats[key] += val + + def get_renderable(self): + if not HAS_RICH: return "" + + layout = Layout() + layout.split_column( + Layout(name="header", size=3), + Layout(name="workers", size=self.num_workers + 4), + Layout(name="stats", size=3), + Layout(name="logs", ratio=1) + ) + + layout["header"].update(Panel(Text("Smart GPU Encoder (AMD AMF + VMAF)", justify="center", style="bold cyan"))) + + # Workers Table + table = Table(box=None, expand=True, padding=(0, 1)) + table.add_column("ID", width=3, style="dim", no_wrap=True) + table.add_column("File", ratio=6, no_wrap=True) + table.add_column("Action", ratio=3, no_wrap=True) + table.add_column("Progress", width=20, no_wrap=True) + table.add_column("Speed", width=12, no_wrap=True) + + for i in range(self.num_workers): + ws = self.worker_status[i] + + pct = ws["progress"] + # Rich Bar + if pct > 0: + bar_len = 12 + filled = int(bar_len * (pct / 100)) + bar_str = "━" * filled + " " * (bar_len - filled) + prog_render = Text(f"{bar_str} {pct:.1f}%", style="green") + else: + prog_render = Text("") + + table.add_row( + str(i+1), + Text(ws["file"], style="white"), + Text(ws["action"], style=ws["color"]), + prog_render, + Text(ws["speed"], style="yellow") + ) + + layout["workers"].update(Panel(table, title="Active Workers")) + + stat_str = f"Processed: [green]{self.stats['processed']}[/] | Skipped: [yellow]{self.stats['skipped']}[/] | Rejected: [magenta]{self.stats['rejected']}[/] | Failed: [red]{self.stats['failed']}[/] | Saved: [bold green]{self.stats['savings_gb']:.2f} GB[/]" + layout["stats"].update(Panel(Text.from_markup(stat_str, justify="center"))) + + layout["logs"].update(Panel("\n".join(self.recent_completed), title="Activity Log")) + + return layout + +# --- Worker Bridge --- +def worker_wrapper(worker_id, file_path, category, lock_dir, log_dir, encoders, dashboard): + def status_callback(w_id, fname, msg, color): + # Handle Stats Signal + if msg.startswith("STATS:"): + parts = msg.split(":") + if parts[1] == "SAVED": + try: + bytes_saved = float(parts[2]) + dashboard.update_stats("savings_gb", bytes_saved / (1024**3)) + dashboard.update_stats("processed") + except: pass + return + + # Update Live Table + dashboard.update_worker(worker_id, fname, msg, color) + + # Check for Completion Events to update History + # Match keywords from smart_gpu_encoder.py + if "Done" in msg: + dashboard.add_log(f"[Success] {dashboard.format_filename(fname)}") + elif "Skipped" in msg or "Skipping" in msg: + dashboard.add_log(f"[Skip] {dashboard.format_filename(fname)}") + dashboard.update_stats("skipped") + elif "Rejected" in msg: + dashboard.add_log(f"[Reject] {dashboard.format_filename(fname)}") + dashboard.update_stats("rejected") + # Rejected doesn't count as failed, just processed (or ignored stats) + elif "Failed" in msg or "Error" in msg: + dashboard.add_log(f"[Fail] {dashboard.format_filename(fname)}") + dashboard.update_stats("failed") + + try: + encoder.process_file(file_path, category, lock_dir, log_dir, encoders, worker_id, status_callback) + except Exception as e: + dashboard.add_log(f"Error in worker {worker_id}: {str(e)[:30]}") + dashboard.update_stats("failed") + finally: + dashboard.update_worker(worker_id, "Idle", "Waiting", "dim") + +# --- Monitor --- +class WatcherHandler(FileSystemEventHandler): + def __init__(self, queue): + self.queue = queue + def on_created(self, event): + if not event.is_directory and event.src_path.lower().endswith(('.mkv', '.mp4')): + self.queue.put(Path(event.src_path)) + def on_moved(self, event): + if not event.is_directory and event.dest_path.lower().endswith(('.mkv', '.mp4')): + self.queue.put(Path(event.dest_path)) + +# --- Main --- +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--tv-dir", default=common.DEFAULT_CONFIG["tv_dir"]) + parser.add_argument("--content-dir", default=common.DEFAULT_CONFIG["content_dir"]) + parser.add_argument("--jobs", type=int, default=4) + parser.add_argument("--monitor", action="store_true") + parser.add_argument("--cpu-only", action="store_true", help="Force software encoding") + parser.add_argument("--temp-dir", help="Override local temp directory") + args = parser.parse_args() + + # Setup + lock_dir, log_dir = common.get_base_paths(args) + encoder.TEMP_DIR = common.get_temp_dir(args) + + # Detect HW + encoders = common.detect_hardware_encoder(args) + + # UI + dashboard = Dashboard(args.jobs) + dashboard.add_log(f"Logs: {log_dir}") + + # Work Queue + work_queue = queue.Queue() + + # Background Scanner + def background_scanner(): + time.sleep(2) # Let UI start + dashboard.add_log("Starting background scan...") + + # Load Cache first + cached_files = load_cache() + if cached_files: + dashboard.add_log(f"Loaded {len(cached_files)} files from cache.") + for f in cached_files: + p = Path(f) + cat = "tv_shows" if str(args.tv_dir) in str(p) else "content" + work_queue.put((p, cat)) + + # Real Scan + all_files = [] + for d, cat in [(args.tv_dir, "tv_shows"), (args.content_dir, "content")]: + found = fast_scan(d) + for f in found: + all_files.append(f) + # Only add if NOT in cache + if str(f) not in cached_files: + work_queue.put((Path(f), cat)) + + dashboard.add_log(f"Scan complete. Total: {len(all_files)}") + save_cache(all_files) + + # Start Scanner Thread + scan_thread = threading.Thread(target=background_scanner, daemon=True) + scan_thread.start() + + # Thread Pool for Workers + threads = [] + + def worker_loop(w_id): + while not encoder.shutdown_requested: + try: + item = work_queue.get(timeout=1) + file_path, category = item + worker_wrapper(w_id, file_path, category, lock_dir, log_dir, encoders, dashboard) + work_queue.task_done() + except queue.Empty: + # If batch mode and scan is done and queue is empty, exit + if not args.monitor and not scan_thread.is_alive() and work_queue.empty(): + time.sleep(2) # Grace period + if work_queue.empty(): + return # Exit thread + continue + except Exception as e: + dashboard.add_log(f"Worker {w_id} crashed: {e}") + + for i in range(args.jobs): + t = threading.Thread(target=worker_loop, args=(i,), daemon=True) + t.start() + threads.append(t) + + # UI Loop + try: + if HAS_RICH: + with Live(dashboard.get_renderable(), refresh_per_second=4) as live: + while not encoder.shutdown_requested: + live.update(dashboard.get_renderable()) + time.sleep(0.25) + + # Exit condition + if not args.monitor and not scan_thread.is_alive() and work_queue.unfinished_tasks == 0: + # Check if threads are actually dead + if all(not t.is_alive() for t in threads): + break + else: + while not encoder.shutdown_requested: + time.sleep(1) + if not args.monitor and not scan_thread.is_alive() and work_queue.empty(): break + + except KeyboardInterrupt: + encoder.shutdown_requested = True + print("\nStopping...") + + print("\nDone.") + +if __name__ == "__main__": + main() diff --git a/src/test_monitor_logic.py b/src/test_monitor_logic.py new file mode 100644 index 0000000..0c72974 --- /dev/null +++ b/src/test_monitor_logic.py @@ -0,0 +1,47 @@ +from smart_monitor import Dashboard +import time + +def test_tui_parsing(): + print("Testing Dashboard Logic...") + db = Dashboard(1) + + # Test 1: Encoding Progress + msg = "Encoding av1 | 45.2% | 2.3x" + db.update_worker(0, "Test File 1.mkv", msg) + status = db.worker_status[0] + print(f"Test 1 (Parsing): Progress={status['progress']} (Expected 45.2), Speed={status['speed']} (Expected 2.3x)") + assert status['progress'] == 45.2 + assert status['speed'] == "2.3x" + + # Test 2: Stats - Skipped + print("\nTest 2: Stats - Skipped") + # Simulate worker wrapper logic + msg = "Already AV1 (Skipping)" + if "Skipping" in msg: + db.update_stats("skipped") + + print(f"Skipped Count: {db.stats['skipped']} (Expected 1)") + assert db.stats['skipped'] == 1 + + # Test 3: Stats - Rejected + print("\nTest 3: Stats - Rejected") + msg = "HEVC Rejected" + if "Rejected" in msg: + db.update_stats("rejected") + + print(f"Rejected Count: {db.stats['rejected']} (Expected 1)") + assert db.stats['rejected'] == 1 + + # Test 4: Stats - Failed + print("\nTest 4: Stats - Failed") + msg = "Error: FFMPEG failed" + if "Error" in msg: + db.update_stats("failed") + + print(f"Failed Count: {db.stats['failed']} (Expected 1)") + assert db.stats['failed'] == 1 + + print("\nAll Tests Passed!") + +if __name__ == "__main__": + test_tui_parsing() diff --git a/src/vmaf_common.py b/src/vmaf_common.py new file mode 100644 index 0000000..8a362a2 --- /dev/null +++ b/src/vmaf_common.py @@ -0,0 +1,295 @@ +import os +import sys +import shutil +import json +import hashlib +import platform +import subprocess +import time +from pathlib import Path +from datetime import datetime + +# --- Defaults --- +DEFAULT_CONFIG = { + "tv_dir": r"Z:\tv", + "content_dir": r"Z:\content", + "target_vmaf": 93.0, + "min_savings": 12.0, + "gpu_jobs": 2, + "cpu_jobs": 1, + "av1_crf": 34, + "hevc_crf": 28, + "temp_dir_windows": r"C:\Users\bnair\Videos\encodes", + "temp_dir_linux": "~/Videos/encodes" +} + +# --- Paths --- +def get_base_paths(args=None): + """ + Determine root paths for locks and logs. + Priority: + 1. Shared Network Drive (parent of tv_dir) -> Z:\.vmaf_locks + 2. Local Fallback (current dir / logs) + """ + tv_dir = Path(args.tv_dir) if args and hasattr(args, 'tv_dir') else Path(DEFAULT_CONFIG["tv_dir"]) + + # Logic: Locks MUST be at the common root of content to be shared. + # We assume tv_dir is like "Z:\tv", so shared root is "Z:\" + shared_root = tv_dir.parent + + # Defaults + lock_dir = Path("locks").resolve() + log_dir = Path("logs").resolve() + + # Network Logic + if shared_root.exists(): + network_lock = shared_root / ".vmaf_locks" + # We prefer local logs to avoid network I/O issues during logging, + # but locks MUST be shared. + try: + network_lock.mkdir(parents=True, exist_ok=True) + lock_dir = network_lock + except Exception as e: + print(f"[Warning] Could not create network locks at {network_lock}: {e}") + print(f" Falling back to local locks: {lock_dir}") + + # Ensure existence + lock_dir.mkdir(parents=True, exist_ok=True) + log_dir.mkdir(parents=True, exist_ok=True) + + return lock_dir, log_dir + +def get_temp_dir(args=None): + # Check args override + if args and hasattr(args, 'temp_dir') and args.temp_dir: + path = Path(args.temp_dir) + elif platform.system() == "Windows": + path = Path(DEFAULT_CONFIG["temp_dir_windows"]) + else: + path = Path(DEFAULT_CONFIG["temp_dir_linux"]).expanduser() + + path.mkdir(parents=True, exist_ok=True) + return path + +# --- Logging --- +def log_event(log_dir, filename, data): + log_path = Path(log_dir) / filename + data["timestamp"] = datetime.now().isoformat() + try: + with open(log_path, "a", encoding="utf-8") as f: + f.write(json.dumps(data) + "\n") + except Exception as e: + print(f"[ERROR] Failed to write log: {e}") + +# --- Dependencies --- +def check_dependencies(required_tools=None): + if required_tools is None: + required_tools = ["ffmpeg", "ffprobe", "ab-av1"] + + missing = [] + # Determine bin path relative to this file + bin_path = Path(__file__).parent.parent / "bin" + + for tool in required_tools: + if tool == "ab-av1": + # Check bundled first in bin/ + bundled = bin_path / "ab-av1.exe" + if bundled.exists(): continue + # Check PATH + if shutil.which("ab-av1"): continue + missing.append("ab-av1") + else: + if not shutil.which(tool): + missing.append(tool) + + if missing: + print(f"[!] CRITICAL: Missing tools: {', '.join(missing)}") + print(f" Checked bundled path: {bin_path}") + sys.exit(1) + +# --- Metadata --- +def get_video_info(filepath): + """Get video info using ffprobe (Standardized)""" + try: + cmd = [ + "ffprobe", "-v", "quiet", + "-print_format", "json", + "-show_format", "-show_streams", + str(filepath) + ] + result = subprocess.run(cmd, capture_output=True, text=True, check=True) + data = json.loads(result.stdout) + + video = next((s for s in data["streams"] if s["codec_type"] == "video"), None) + if not video: return None + + size = int(data["format"].get("size", 0)) + duration = float(data["format"].get("duration", 0)) + + # Bitrate calc + bitrate = int(data["format"].get("bitrate", 0)) + if bitrate == 0 and duration > 0: + bitrate = int((size * 8) / duration) + + return { + "codec": video.get("codec_name"), + "width": int(video.get("width", 0)), + "height": int(video.get("height", 0)), + "duration": duration, + "size": size, + "bitrate": bitrate, + "fps": video.get("r_frame_rate", "0/0") + } + except Exception: + return None + +# --- Locks --- +def acquire_lock(lock_dir, filepath): + """ + Simple file-based lock. + Returns lock_path if acquired, None if failed. + """ + # Use hash of filename to avoid long paths/invalid chars + fhash = hashlib.md5(str(filepath.name).encode()).hexdigest() + lock_file = lock_dir / f"{fhash}.lock" + + if lock_file.exists(): + # Check staleness (24h) + try: + if time.time() - lock_file.stat().st_mtime > 86400: + lock_file.unlink() + else: + return None + except: + return None + + try: + lock_file.touch() + return lock_file + except: + return None + +# --- Hardware Detection --- +def detect_hardware_encoder(args=None): + """Detects available hardware encoders via ffmpeg (Cross-Platform)""" + + # Check for forced CPU mode via args + if args and getattr(args, 'cpu_only', False): + # We still need to determine WHICH software encoder to use + # But we skip HW checks. + try: + res = subprocess.run(["ffmpeg", "-hide_banner", "-encoders"], capture_output=True, text=True) + out = res.stdout + if "libsvtav1" in out: return "libsvtav1", "libx265", "cpu" + if "libx265" in out: return None, "libx265", "cpu" + return None, None, "cpu" + except: + return None, None, "cpu" + + try: + # Run ffmpeg -encoders + res = subprocess.run(["ffmpeg", "-hide_banner", "-encoders"], capture_output=True, text=True) + out = res.stdout + + av1_enc = None + hevc_enc = None + hw_type = "cpu" + + # 1. NVIDIA (NVENC) - Windows/Linux + if "av1_nvenc" in out: av1_enc = "av1_nvenc" + if "hevc_nvenc" in out: hevc_enc = "hevc_nvenc" + if av1_enc or hevc_enc: return av1_enc, hevc_enc, "nvenc" + + # 2. AMD (AMF) - Windows + if "av1_amf" in out: av1_enc = "av1_amf" + if "hevc_amf" in out: hevc_enc = "hevc_amf" + if av1_enc or hevc_enc: return av1_enc, hevc_enc, "amf" + + # 3. AMD (VAAPI) - Linux + # Often named hevc_vaapi, av1_vaapi + if "av1_vaapi" in out: av1_enc = "av1_vaapi" + if "hevc_vaapi" in out: hevc_enc = "hevc_vaapi" + if av1_enc or hevc_enc: return av1_enc, hevc_enc, "vaapi" + + # 4. Intel (QSV) - Windows/Linux + if "av1_qsv" in out: av1_enc = "av1_qsv" + if "hevc_qsv" in out: hevc_enc = "hevc_qsv" + if av1_enc or hevc_enc: return av1_enc, hevc_enc, "qsv" + + # 5. Apple Silicon (VideoToolbox) - macOS + if "av1_videotoolbox" in out: av1_enc = "av1_videotoolbox" + if "hevc_videotoolbox" in out: hevc_enc = "hevc_videotoolbox" + if av1_enc or hevc_enc: return av1_enc, hevc_enc, "videotoolbox" + + # Fallback to Software if no HW found + # libsvtav1 / libx265 + if "libsvtav1" in out: av1_enc = "libsvtav1" + if "libx265" in out: hevc_enc = "libx265" + + if av1_enc or hevc_enc: + return av1_enc, hevc_enc, "cpu" + + return None, None, "none" + + except Exception as e: + print(f"[Warning] HW Detection failed: {e}") + return None, None, "error" + +def get_encoder_args(codec, encoder, qp): + """Returns correct ffmpeg args for specific HW vendor""" + if not encoder: return [] + + # Software (CPU) + if encoder == "libsvtav1": + # CRF 0-63 (Lower is better) + return ["-c:v", "libsvtav1", "-crf", str(qp), "-preset", "6", "-g", "240"] + + if encoder == "libx265": + return ["-c:v", "libx265", "-crf", str(qp), "-preset", "medium"] + + # NVIDIA NVENC + if "nvenc" in encoder: + # p6 = better quality, spatial-aq for better perception + return ["-c:v", encoder, "-rc", "constqp", "-qp", str(qp), "-preset", "p6", "-spatial-aq", "1"] + + # AMD AMF + if "amf" in encoder: + return ["-c:v", encoder, "-usage", "transcoding", "-rc", "cqp", "-qp_i", str(qp), "-qp_p", str(qp), "-qp_b", str(qp), "-quality", "quality"] + + # Intel QSV + if "qsv" in encoder: + return ["-c:v", encoder, "-global_quality", str(qp), "-look_ahead", "1"] + + # Apple VideoToolbox + if "videotoolbox" in encoder: + # Map 0-51 QP to 100-0 Quality (approx) + q = int(100 - (qp * 2)) + return ["-c:v", encoder, "-q:v", str(q)] + + # Linux VAAPI + if "vaapi" in encoder: + # Uses -qp normally? or -global_quality? Depends on driver. + # Often needs: -vf format=nv12,hwupload + # Safe bet for vaapi is usually CQP via -qp or -global_quality + return ["-c:v", encoder, "-qp", str(qp)] + + return [] + +def scan_directory(directory, extensions=None): + """Scan directory for video files""" + if extensions is None: + extensions = {".mkv", ".mp4", ".mov", ".avi", ".ts"} + + files = [] + for dirpath, dirnames, filenames in os.walk(directory): + # Skip processed/system files + dirnames[:] = [d for d in dirnames if not d.startswith("_") and d not in [".recycle", "@eaDir"]] + + for filename in filenames: + filepath = Path(dirpath) / filename + if filepath.suffix.lower() in extensions: + if "_av1" in filepath.stem.lower() or "_hevc" in filepath.stem.lower(): + continue + files.append(filepath) + + return sorted(files, key=lambda x: x.stat().st_size, reverse=True) diff --git a/test_run.py b/test_run.py new file mode 100644 index 0000000..ddce6a0 --- /dev/null +++ b/test_run.py @@ -0,0 +1,42 @@ +import os +import subprocess +from pathlib import Path + +# Setup +TEST_DIR = Path("test_media") +TEST_DIR.mkdir(exist_ok=True) +TEST_FILE = TEST_DIR / "test_video.mkv" + +print("--- SMART ENCODER TEST ---") + +# 1. Create Dummy Video (10s, 1080p, noise to ensure it's not trivial) +if not TEST_FILE.exists(): + print("Generating dummy video...") + # Generate 10s video with noise + cmd = [ + "ffmpeg", "-y", "-f", "lavfi", "-i", "testsrc=duration=10:size=1920x1080:rate=30", + "-f", "lavfi", "-i", "sine=frequency=1000:duration=10", + "-c:v", "libx264", "-pix_fmt", "yuv420p", "-b:v", "5M", + "-c:a", "aac", + str(TEST_FILE) + ] + subprocess.run(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) + print(f"Created {TEST_FILE}") + +# 2. Run Encoder in Debug Mode +print("\nRunning Smart Encoder on test file...") +print("(This should show detailed ffmpeg output)") +print("="*60) + +cmd = [ + "python", "smart_gpu_encoder.py", + "--tv-dir", str(TEST_DIR.resolve()), + "--content-dir", str(TEST_DIR.resolve()), + "--jobs", "1", + "--debug" +] + +subprocess.run(cmd) + +print("\n--- TEST COMPLETE ---") +print("Check for .mkv files in C:\\Users\\bnair\\Videos\\encodes")