瀏覽代碼

refac: openai already supports webm audio

Timothy Jaeryang Baek 5 月之前
父節點
當前提交
bfa5550cc3
共有 1 個文件被更改,包括 1 次插入2 次删除
  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