This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask, Response, request, jsonify | |
from tempfile import NamedTemporaryFile | |
from faster_whisper import WhisperModel | |
import re | |
import time | |
import os | |
from statistics import mean | |
import logging | |
from unidecode import unidecode | |
import multiprocessing |