Browse Source

refac: openai already supports webm audio

Timothy Jaeryang Baek 5 tháng trước cách đây
mục cha
commit
bfa5550cc3
1 tập tin đã thay đổi với 1 bổ sung2 xóa
  1. 1 2
      backend/open_webui/routers/audio.py

+ 1 - 2
backend/open_webui/routers/audio.py

@@ -86,8 +86,7 @@ def get_audio_format(file_path):
         return "mp4"
     elif info.get("format_name") == "ogg":
         return "ogg"
-    elif info.get("format_name") == "matroska,webm":
-        return "webm"
+
     return None