33 lines
1.3 KiB
Markdown
33 lines
1.3 KiB
Markdown
# Amazon PVD Mezzanine Encoder
|
|
|
|
**Automatisches Python-Script zur Erstellung von Amazon PVD-konformen Mezzanine-VOD-Dateien**
|
|
(Blu-ray • ProRes • DVD • PAL • NTSC • Interlaced)
|
|
|
|
---
|
|
|
|
## Features
|
|
|
|
- **Vollautomatische Erkennung** von SD/HD, PAL/NTSC und interlaced Material
|
|
- **Bester Deinterlacer** (`bwdif mode=0`) → saubere 25 fps bei PAL-DVDs (kein Double-Framerate)
|
|
- **Automatische Farbraum-Konvertierung** (Rec.601 PAL/NTSC ↔ Rec.709) inkl. `colorspace`-Filter
|
|
- **Forced Subtitles** werden automatisch eingebrannt (wenn `_forced.srt` vorhanden)
|
|
- **Intelligente Audio-Auswahl** (automatisch deutsche Spur oder manuelle Wahl)
|
|
- **Amazon PVD optimierte Parameter** (Bitrate, Level, GOP, x264-Settings)
|
|
- **Saubere Metadaten** + `faststart` für beste Streaming-Performance
|
|
- Funktioniert mit Drag & Drop (`.bat` oder direkt auf Script ziehen)
|
|
|
|
## Voraussetzungen
|
|
|
|
- Windows (getestet)
|
|
- FFmpeg + FFprobe (in `C:\Software\` oder Pfad in Script anpassen)
|
|
- Python 3.8+
|
|
|
|
## Installation & Nutzung
|
|
|
|
1. Repo klonen oder herunterladen
|
|
2. `ffmpeg.exe` und `ffprobe.exe` in `C:\Software\` ablegen (oder Pfade im Script ändern)
|
|
3. Optional: `create_mezzanine.bat` anlegen:
|
|
```bat
|
|
@echo off
|
|
python "%~dp0pvd_mezzanine.py" %*
|
|
pause |