added transcoding to mp4 in import to ensure web playback.

This commit is contained in:
Bryan Van Deusen
2026-01-20 16:10:19 -05:00
parent cb3897c0b0
commit 87bcb633f6
4 changed files with 175 additions and 31 deletions
+3 -3
View File
@@ -74,9 +74,9 @@ def make_celery(app=None):
task_acks_late=True, # Acknowledge after task completes
task_reject_on_worker_lost=True, # Requeue if worker dies
# Time limits
task_soft_time_limit=300, # 5 minutes soft limit
task_time_limit=600, # 10 minutes hard limit (archives may need more)
# Time limits (video transcoding may need longer)
task_soft_time_limit=600, # 10 minutes soft limit
task_time_limit=900, # 15 minutes hard limit
# Periodic task schedule (Celery Beat)
beat_schedule={