realtime-transcription

Watch the tutorial video

How to Build a Real-Time Transcription Web App in Python using AssemblyAI and Streamlit

How to Build a Real-Time Transcription Web App in Python using AssemblyAI and Streamlit

1. Obtain the AssemblyAI API key

Obtain your free AssemblyAI API key.

2. Running the real-time transcription web app

To recreate this web app on your own computer, do the following.

Create conda environment (Optional)

Firstly, we will create a conda environment called transcription

conda create -n transcription python=3.9

Secondly, we will login to the transcription environment

conda activate transcription

Download GitHub repo

git clone https://github.com/dataprofessor/realtime-transcription

Pip install libraries

pip install -r requirements.txt

Launch the app

streamlit run streamlit_app.py