Add VodKeeper UI application with comprehensive video processing workflow

This commit is contained in:
2025-07-02 18:35:40 -06:00
parent 645a40154d
commit 6e3e03eda9
3 changed files with 79 additions and 16 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/env python3
"""
VodKeeper Launcher
Simple script to run the VodKeeper application
"""
import sys
import os
# Add current directory to Python path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
try:
from vodkeeper import main
print("Starting VodKeeper...")
main()
except ImportError as e:
print(f"Error importing VodKeeper: {e}")
print("Make sure all dependencies are installed:")
print("pip install -r requirements.txt")
except Exception as e:
print(f"Error running VodKeeper: {e}")