Initial commit - Video Service for Coolify

This commit is contained in:
2025-12-17 10:07:44 +01:00
commit baa1675738
46 changed files with 2386 additions and 0 deletions

34
app/celery_app.py Executable file
View File

@@ -0,0 +1,34 @@
"""
Celery Application Configuration
"""
from celery import Celery
from app.config import get_settings
settings = get_settings()
celery_app = Celery(
"video_tasks",
broker=settings.redis_url,
backend=settings.redis_url,
include=["app.tasks.video_tasks"],
)
# Celery Configuration
celery_app.conf.update(
task_serializer="json",
accept_content=["json"],
result_serializer="json",
timezone="Europe/Vienna",
enable_utc=True,
# Task settings
task_track_started=True,
task_time_limit=3600, # 1 hour hard limit
task_soft_time_limit=3300, # 55 min soft limit
# Worker settings
worker_prefetch_multiplier=1, # One task at a time for video processing
worker_concurrency=2,
# Result settings
result_expires=86400, # 24 hours
)