Kompletter Video-Konverter mit Web-UI, GPU-Beschleunigung (Intel VAAPI), Video-Bibliothek mit Serien/Film-Erkennung und TVDB-Integration. Features: - AV1/HEVC/H.264 Encoding (GPU + CPU) - Video-Bibliothek mit ffprobe-Analyse und Filtern - TVDB-Integration mit Review-Modal und Sprachkonfiguration - Film-Scanning und TVDB-Zuordnung - Import- und Clean-Service (Grundgeruest) - WebSocket Live-Updates, Queue-Management - Docker mit GPU/CPU-Profilen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
414 B
Python
14 lines
414 B
Python
"""Einstiegspunkt fuer den VideoKonverter Server"""
|
|
import asyncio
|
|
import logging
|
|
from app.server import VideoKonverterServer
|
|
|
|
|
|
if __name__ == "__main__":
|
|
server = VideoKonverterServer()
|
|
try:
|
|
asyncio.run(server.run())
|
|
except KeyboardInterrupt:
|
|
logging.warning("Server wurde manuell beendet")
|
|
except Exception as e:
|
|
logging.critical(f"Kritischer Fehler: {e}", exc_info=True)
|