diff --git a/CHANGELOG.md b/CHANGELOG.md index 74c9e7f9..5ed9c80a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/summary/summary/core/config.py b/src/summary/summary/core/config.py index 74753ab3..dfd83fde 100644 --- a/src/summary/summary/core/config.py +++ b/src/summary/summary/core/config.py @@ -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