Add VodKeeper UI application with comprehensive video processing workflow
This commit is contained in:
@@ -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}")
|
||||
Reference in New Issue
Block a user