Spaces:
Running
Running
File size: 19,201 Bytes
b72fd8a 131f180 b72fd8a 4c322cf b72fd8a 6ff3ca6 ada247c 813ca79 ada247c 4c322cf b72fd8a 7d9eec3 6ff3ca6 7d9eec3 5633565 b72fd8a 5633565 b72fd8a d6e2447 6ff3ca6 d6e2447 b72fd8a a85dc3c b72fd8a d6e2447 b72fd8a a85dc3c b72fd8a d6e2447 b72fd8a 6e99075 6f6c89b 6e99075 595b5f3 9548fb4 595b5f3 6f6c89b 595b5f3 6e99075 6f6c89b dbca1ee 6e99075 6ff3ca6 8c8001e 131f180 6ff3ca6 131f180 c5d0765 6ff3ca6 131f180 b5773e7 4a23819 b5773e7 131f180 6a24efd 6ff3ca6 670baea 6e99075 4c322cf 6e99075 670baea 6e99075 595b5f3 6e99075 595b5f3 6e99075 b72fd8a a85dc3c b72fd8a f6adc1d b72fd8a 595b5f3 b72fd8a f6adc1d dbca1ee 6bc716a f6adc1d b72fd8a 6e99075 6bc716a b72fd8a 6f6c89b b72fd8a 6bc716a b72fd8a 5633565 b72fd8a a85dc3c b72fd8a aad17fa b72fd8a 595b5f3 b72fd8a 6e99075 b72fd8a aad17fa b72fd8a aad17fa 5633565 b72fd8a a85dc3c b72fd8a 595b5f3 b72fd8a 6e99075 b72fd8a 6f6c89b b72fd8a 5633565 b72fd8a f421dd9 b72fd8a 5633565 b72fd8a 5633565 b72fd8a 4c5ae77 5633565 b72fd8a 5633565 b72fd8a a85dc3c b72fd8a a85dc3c b72fd8a 4c5ae77 b72fd8a ca772aa 57b2878 b72fd8a 57b2878 ca772aa 9820e0f 57b2878 b72fd8a b5773e7 b72fd8a b5773e7 b72fd8a b6032b5 6f6c89b b5773e7 813ca79 6f6c89b b6032b5 813ca79 131f180 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 |
import os
import torch
import whisper
import gradio as gr
import torchaudio
from abc import ABC, abstractmethod
from typing import BinaryIO, Union, Tuple, List
import numpy as np
from datetime import datetime
from faster_whisper.vad import VadOptions
from dataclasses import astuple
from modules.uvr.music_separator import MusicSeparator
from modules.utils.paths import (WHISPER_MODELS_DIR, DIARIZATION_MODELS_DIR, OUTPUT_DIR, DEFAULT_PARAMETERS_CONFIG_PATH,
UVR_MODELS_DIR)
from modules.utils.subtitle_manager import get_srt, get_vtt, get_txt, write_file, safe_filename
from modules.utils.youtube_manager import get_ytdata, get_ytaudio
from modules.utils.files_manager import get_media_files, format_gradio_files, load_yaml, save_yaml
from modules.whisper.whisper_parameter import *
from modules.diarize.diarizer import Diarizer
from modules.vad.silero_vad import SileroVAD
class WhisperBase(ABC):
def __init__(self,
model_dir: str = WHISPER_MODELS_DIR,
diarization_model_dir: str = DIARIZATION_MODELS_DIR,
uvr_model_dir: str = UVR_MODELS_DIR,
output_dir: str = OUTPUT_DIR,
):
self.model_dir = model_dir
self.output_dir = output_dir
os.makedirs(self.output_dir, exist_ok=True)
os.makedirs(self.model_dir, exist_ok=True)
self.diarizer = Diarizer(
model_dir=diarization_model_dir
)
self.vad = SileroVAD()
self.music_separator = MusicSeparator(
model_dir=uvr_model_dir,
output_dir=os.path.join(output_dir, "UVR")
)
self.model = None
self.current_model_size = None
self.available_models = whisper.available_models()
self.available_langs = sorted(list(whisper.tokenizer.LANGUAGES.values()))
self.translatable_models = ["large", "large-v1", "large-v2", "large-v3"]
self.device = self.get_device()
self.available_compute_types = ["float16", "float32"]
self.current_compute_type = "float16" if self.device == "cuda" else "float32"
@abstractmethod
def transcribe(self,
audio: Union[str, BinaryIO, np.ndarray],
progress: gr.Progress = gr.Progress(),
*whisper_params,
):
"""Inference whisper model to transcribe"""
pass
@abstractmethod
def update_model(self,
model_size: str,
compute_type: str,
progress: gr.Progress = gr.Progress()
):
"""Initialize whisper model"""
pass
def run(self,
audio: Union[str, BinaryIO, np.ndarray],
progress: gr.Progress = gr.Progress(),
add_timestamp: bool = True,
*whisper_params,
) -> Tuple[List[dict], float]:
"""
Run transcription with conditional pre-processing and post-processing.
The VAD will be performed to remove noise from the audio input in pre-processing, if enabled.
The diarization will be performed in post-processing, if enabled.
Parameters
----------
audio: Union[str, BinaryIO, np.ndarray]
Audio input. This can be file path or binary type.
progress: gr.Progress
Indicator to show progress directly in gradio.
add_timestamp: bool
Whether to add a timestamp at the end of the filename.
*whisper_params: tuple
Parameters related with whisper. This will be dealt with "WhisperParameters" data class
Returns
----------
segments_result: List[dict]
list of dicts that includes start, end timestamps and transcribed text
elapsed_time: float
elapsed time for running
"""
params = WhisperParameters.as_value(*whisper_params)
self.cache_parameters(
whisper_params=params,
add_timestamp=add_timestamp
)
if params.lang is None:
pass
elif params.lang == "Automatic Detection":
params.lang = None
else:
language_code_dict = {value: key for key, value in whisper.tokenizer.LANGUAGES.items()}
params.lang = language_code_dict[params.lang]
if params.is_bgm_separate:
music, audio, _ = self.music_separator.separate(
audio=audio,
model_name=params.uvr_model_size,
device=params.uvr_device,
segment_size=params.uvr_segment_size,
save_file=params.uvr_save_file,
progress=progress
)
if audio.ndim >= 2:
audio = audio.mean(axis=1)
if self.music_separator.audio_info is None:
origin_sample_rate = 16000
else:
origin_sample_rate = self.music_separator.audio_info.sample_rate
audio = self.resample_audio(audio=audio, original_sample_rate=origin_sample_rate)
if params.uvr_enable_offload:
self.music_separator.offload()
if params.vad_filter:
# Explicit value set for float('inf') from gr.Number()
if params.max_speech_duration_s >= 9999:
params.max_speech_duration_s = float('inf')
vad_options = VadOptions(
threshold=params.threshold,
min_speech_duration_ms=params.min_speech_duration_ms,
max_speech_duration_s=params.max_speech_duration_s,
min_silence_duration_ms=params.min_silence_duration_ms,
speech_pad_ms=params.speech_pad_ms
)
audio, speech_chunks = self.vad.run(
audio=audio,
vad_parameters=vad_options,
progress=progress
)
result, elapsed_time = self.transcribe(
audio,
progress,
*astuple(params)
)
if params.vad_filter:
result = self.vad.restore_speech_timestamps(
segments=result,
speech_chunks=speech_chunks,
)
if params.is_diarize:
result, elapsed_time_diarization = self.diarizer.run(
audio=audio,
use_auth_token=params.hf_token,
transcribed_result=result,
)
elapsed_time += elapsed_time_diarization
return result, elapsed_time
def transcribe_file(self,
files: Optional[List] = None,
input_folder_path: Optional[str] = None,
file_format: str = "SRT",
add_timestamp: bool = True,
progress=gr.Progress(),
*whisper_params,
) -> list:
"""
Write subtitle file from Files
Parameters
----------
files: list
List of files to transcribe from gr.Files()
input_folder_path: str
Input folder path to transcribe from gr.Textbox(). If this is provided, `files` will be ignored and
this will be used instead.
file_format: str
Subtitle File format to write from gr.Dropdown(). Supported format: [SRT, WebVTT, txt]
add_timestamp: bool
Boolean value from gr.Checkbox() that determines whether to add a timestamp at the end of the subtitle filename.
progress: gr.Progress
Indicator to show progress directly in gradio.
*whisper_params: tuple
Parameters related with whisper. This will be dealt with "WhisperParameters" data class
Returns
----------
result_str:
Result of transcription to return to gr.Textbox()
result_file_path:
Output file path to return to gr.Files()
"""
try:
if input_folder_path:
files = get_media_files(input_folder_path)
if isinstance(files, str):
files = [files]
if files and isinstance(files[0], gr.utils.NamedString):
files = [file.name for file in files]
files_info = {}
for file in files:
transcribed_segments, time_for_task = self.run(
file,
progress,
add_timestamp,
*whisper_params,
)
file_name, file_ext = os.path.splitext(os.path.basename(file))
subtitle, file_path = self.generate_and_write_file(
file_name=file_name,
transcribed_segments=transcribed_segments,
add_timestamp=add_timestamp,
file_format=file_format,
output_dir=self.output_dir
)
files_info[file_name] = {"subtitle": subtitle, "time_for_task": time_for_task, "path": file_path}
total_result = ''
total_time = 0
for file_name, info in files_info.items():
total_result += '------------------------------------\n'
total_result += f'{file_name}\n\n'
total_result += f'{info["subtitle"]}'
total_time += info["time_for_task"]
result_str = f"Done in {self.format_time(total_time)}! Subtitle is in the outputs folder.\n\n{total_result}"
result_file_path = [info['path'] for info in files_info.values()]
return [result_str, result_file_path]
except Exception as e:
print(f"Error transcribing file: {e}")
finally:
self.release_cuda_memory()
def transcribe_mic(self,
mic_audio: str,
file_format: str = "SRT",
add_timestamp: bool = True,
progress=gr.Progress(),
*whisper_params,
) -> list:
"""
Write subtitle file from microphone
Parameters
----------
mic_audio: str
Audio file path from gr.Microphone()
file_format: str
Subtitle File format to write from gr.Dropdown(). Supported format: [SRT, WebVTT, txt]
add_timestamp: bool
Boolean value from gr.Checkbox() that determines whether to add a timestamp at the end of the filename.
progress: gr.Progress
Indicator to show progress directly in gradio.
*whisper_params: tuple
Parameters related with whisper. This will be dealt with "WhisperParameters" data class
Returns
----------
result_str:
Result of transcription to return to gr.Textbox()
result_file_path:
Output file path to return to gr.Files()
"""
try:
progress(0, desc="Loading Audio..")
transcribed_segments, time_for_task = self.run(
mic_audio,
progress,
add_timestamp,
*whisper_params,
)
progress(1, desc="Completed!")
subtitle, result_file_path = self.generate_and_write_file(
file_name="Mic",
transcribed_segments=transcribed_segments,
add_timestamp=add_timestamp,
file_format=file_format,
output_dir=self.output_dir
)
result_str = f"Done in {self.format_time(time_for_task)}! Subtitle file is in the outputs folder.\n\n{subtitle}"
return [result_str, result_file_path]
except Exception as e:
print(f"Error transcribing file: {e}")
finally:
self.release_cuda_memory()
def transcribe_youtube(self,
youtube_link: str,
file_format: str = "SRT",
add_timestamp: bool = True,
progress=gr.Progress(),
*whisper_params,
) -> list:
"""
Write subtitle file from Youtube
Parameters
----------
youtube_link: str
URL of the Youtube video to transcribe from gr.Textbox()
file_format: str
Subtitle File format to write from gr.Dropdown(). Supported format: [SRT, WebVTT, txt]
add_timestamp: bool
Boolean value from gr.Checkbox() that determines whether to add a timestamp at the end of the filename.
progress: gr.Progress
Indicator to show progress directly in gradio.
*whisper_params: tuple
Parameters related with whisper. This will be dealt with "WhisperParameters" data class
Returns
----------
result_str:
Result of transcription to return to gr.Textbox()
result_file_path:
Output file path to return to gr.Files()
"""
try:
progress(0, desc="Loading Audio from Youtube..")
yt = get_ytdata(youtube_link)
audio = get_ytaudio(yt)
transcribed_segments, time_for_task = self.run(
audio,
progress,
add_timestamp,
*whisper_params,
)
progress(1, desc="Completed!")
file_name = safe_filename(yt.title)
subtitle, result_file_path = self.generate_and_write_file(
file_name=file_name,
transcribed_segments=transcribed_segments,
add_timestamp=add_timestamp,
file_format=file_format,
output_dir=self.output_dir
)
result_str = f"Done in {self.format_time(time_for_task)}! Subtitle file is in the outputs folder.\n\n{subtitle}"
return [result_str, result_file_path]
except Exception as e:
print(f"Error transcribing file: {e}")
finally:
self.release_cuda_memory()
@staticmethod
def generate_and_write_file(file_name: str,
transcribed_segments: list,
add_timestamp: bool,
file_format: str,
output_dir: str
) -> str:
"""
Writes subtitle file
Parameters
----------
file_name: str
Output file name
transcribed_segments: list
Text segments transcribed from audio
add_timestamp: bool
Determines whether to add a timestamp to the end of the filename.
file_format: str
File format to write. Supported formats: [SRT, WebVTT, txt]
output_dir: str
Directory path of the output
Returns
----------
content: str
Result of the transcription
output_path: str
output file path
"""
if add_timestamp:
timestamp = datetime.now().strftime("%m%d%H%M%S")
output_path = os.path.join(output_dir, f"{file_name}-{timestamp}")
else:
output_path = os.path.join(output_dir, f"{file_name}")
file_format = file_format.strip().lower()
if file_format == "srt":
content = get_srt(transcribed_segments)
output_path += '.srt'
elif file_format == "webvtt":
content = get_vtt(transcribed_segments)
output_path += '.vtt'
elif file_format == "txt":
content = get_txt(transcribed_segments)
output_path += '.txt'
write_file(content, output_path)
return content, output_path
@staticmethod
def format_time(elapsed_time: float) -> str:
"""
Get {hours} {minutes} {seconds} time format string
Parameters
----------
elapsed_time: str
Elapsed time for transcription
Returns
----------
Time format string
"""
hours, rem = divmod(elapsed_time, 3600)
minutes, seconds = divmod(rem, 60)
time_str = ""
if hours:
time_str += f"{hours} hours "
if minutes:
time_str += f"{minutes} minutes "
seconds = round(seconds)
time_str += f"{seconds} seconds"
return time_str.strip()
@staticmethod
def get_device():
if torch.cuda.is_available():
return "cuda"
elif torch.backends.mps.is_available():
if not WhisperBase.is_sparse_api_supported():
# Device `SparseMPS` is not supported for now. See : https://github.com/pytorch/pytorch/issues/87886
return "cpu"
return "mps"
else:
return "cpu"
@staticmethod
def is_sparse_api_supported():
if not torch.backends.mps.is_available():
return False
try:
device = torch.device("mps")
sparse_tensor = torch.sparse_coo_tensor(
indices=torch.tensor([[0, 1], [2, 3]]),
values=torch.tensor([1, 2]),
size=(4, 4),
device=device
)
return True
except RuntimeError:
return False
@staticmethod
def release_cuda_memory():
"""Release memory"""
if torch.cuda.is_available():
torch.cuda.empty_cache()
torch.cuda.reset_max_memory_allocated()
@staticmethod
def remove_input_files(file_paths: List[str]):
"""Remove gradio cached files"""
if not file_paths:
return
for file_path in file_paths:
if file_path and os.path.exists(file_path):
os.remove(file_path)
@staticmethod
def cache_parameters(
whisper_params: WhisperValues,
add_timestamp: bool
):
"""cache parameters to the yaml file"""
cached_params = load_yaml(DEFAULT_PARAMETERS_CONFIG_PATH)
cached_whisper_param = whisper_params.to_yaml()
cached_yaml = {**cached_params, **cached_whisper_param}
cached_yaml["whisper"]["add_timestamp"] = add_timestamp
save_yaml(cached_yaml, DEFAULT_PARAMETERS_CONFIG_PATH)
@staticmethod
def resample_audio(audio: Union[str, np.ndarray],
new_sample_rate: int = 16000,
original_sample_rate: Optional[int] = None,) -> np.ndarray:
"""Resamples audio to 16k sample rate, standard on Whisper model"""
if isinstance(audio, str):
audio, original_sample_rate = torchaudio.load(audio)
else:
if original_sample_rate is None:
raise ValueError("original_sample_rate must be provided when audio is numpy array.")
audio = torch.from_numpy(audio)
resampler = torchaudio.transforms.Resample(orig_freq=original_sample_rate, new_freq=new_sample_rate)
resampled_audio = resampler(audio).numpy()
return resampled_audio
|