An open API service indexing awesome lists of open source software.

https://github.com/malkiii/transcript-generator

A Streamlit app that converts audio files to text using the OpenAI's Whisper model, generating accurate transcripts in .txt, .srt, and .vtt formats.
https://github.com/malkiii/transcript-generator

groq openai python speech-to-text streamlit subtitles transcript whisper

Last synced: 5 months ago
JSON representation

A Streamlit app that converts audio files to text using the OpenAI's Whisper model, generating accurate transcripts in .txt, .srt, and .vtt formats.

Awesome Lists containing this project

README

          

# 🎙️ Transcript Generator App

[![Preview](./.streamlit/preview.png)](https://transcript-generator.streamlit.app)

Transcript Generator is a [Streamlit](https://streamlit.io/) application that generates transcripts from audio files. The application utilizes the OpenAI `whisper-large-v3-turbo` model for speech recognition to convert speech to text with common formats (.txt, .srt, .vtt) and high accuracy.

## Local Setup

1. Clone the repository using Git or Github CLI.

2. Create a virtual environment (Optional).

3. Install the required dependencies:

```sh
pip install -r requirements.txt
```

4. Rename [secrets.example.toml](./.streamlit/secrets.example.toml) file to `secrets.toml` and add your streamlit [secrets](https://docs.streamlit.io/develop/concepts/connections/secrets-management).

5. Run the application by pressing the Run button if you're using the VSCode [Code Runner](https://marketplace.visualstudio.com/items?itemName=formulahendry.code-runner) extension, or manually using:
```sh
python -m streamlit run streamlit_app.py
```

## License

This project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for details.