(summary) allow more file extensions

Allow more file extensions by default.
This commit is contained in:
Florent Chehab
2026-04-13 12:04:11 +02:00
committed by aleb_the_flash
parent 52fbd56666
commit 497b45f2ca
2 changed files with 10 additions and 1 deletions
+1
View File
@@ -21,6 +21,7 @@ and this project adheres to
- ⬆️(backend) bump pygments from 2.19.2 to 2.20.0 in /src/backend
- ♻️(backend) use Authorization header for LiveKit token authentication
- 🥅(backend) refine Twirp error handling for participant operations
- ✨(summary) allow more file extensions #1265
### Fixed
+9 -1
View File
@@ -56,7 +56,15 @@ class Settings(BaseSettings):
# Audio recordings
recording_max_duration: Optional[int] = None
recording_allowed_extensions: Set[str] = {".ogg", ".mp4"}
recording_allowed_extensions: Set[str] = {
".ogg",
".mp4",
".m4a",
".webm",
".ogv",
".opus",
".wav",
}
recording_video_extensions: Set[str] = {".mp4"}
# Celery settings