Sfoglia il codice sorgente

refac: openai already supports webm audio

Timothy Jaeryang Baek 5 mesi fa
parent
commit
bfa5550cc3
1 ha cambiato i file con 1 aggiunte e 2 eliminazioni
  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