mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-09 10:19:26 +00:00
✨(summary) allow more file extensions
Allow more file extensions by default.
This commit is contained in:
committed by
aleb_the_flash
parent
52fbd56666
commit
497b45f2ca
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user