This project is a Django-based web application that allows users to upload audio files and get the transcription of the audio content. It uses the speech_recognition
library to transcribe the audio.
- Clone the repository:
git clone cd audio_transcription
- Create a virtual environment and activate it:
python -m venv venv source venv/bin/activate
- Install the dependencies:
pip install -r requirements.txt
- Run the database migrations:
python manage.py migrate
- Visit
http://127.0.0.1:8000/
in your browser.
- Upload an audio file using the form on the main page.
- Click "Upload and Transcribe".
- View the transcription of the audio content on the page.
- Django
- speech_recognition
Contributions are welcome! Feel free to open issues and pull requests.
This project is licensed under the MIT License. See the LICENSE
file for more details.