Skip to content

ASR imprementation using openai-whisper and GoogleColab

License

Notifications You must be signed in to change notification settings

pneuly/whisper-asr-colab

Repository files navigation

en ja

Aggregation Package for Transcription and Diarization

Whisper-asr-colab is an aggregation package for speech-to-text and diarization, featuring an example implementation on Google Colab.

The main functions of this package are as follows:

Usage

Open whisper_asr_colab.ipynb on Google Colab or use the modules as shown below.

from whisper_asr_colab.worker import Worker
from whisper_asr_colab.audio import Audio

audio = "audiofile.m4a"
model_size = "turbo"
hf_token = "your hf token"

worker = Worker(
    audio=Audio.from_path_or_url(audio),
    model_size=model_size,
    hugging_face_token=hf_token,
)

worker.run()

About

ASR imprementation using openai-whisper and GoogleColab

Resources

License

Stars

Watchers

Forks

Packages

No packages published