Web based audio recorder that also transcribes the recorded conversations
It can be faster (and more fun) to use ChatGPT to build an app for your needed workflow vs searching for and testing existing solutions
- The challange: I yesterday needed a browser-based audio recorder with instant transcription locally without any data leaving the client.
- After 5 minutes of googling I decided to try generating a web app using ChatGPT instead and host it for myself on github pages.
- Within a few iterations refining the requirements, I had a working single html file with only a few 100 lines of js code that met all my requirements and was easy to further improve.
- As a bonus I learned a bit about javascript and some new browser APIs like the Web Speech API for transcription.
- Open https://cs-util-com.github.io/InstantScribe/
- Speak into your microphone; the app will transcribe your speech in real-time in addition to recording a normal audio file.
- Click Save Recording to end and save the audio file along with the transcription.
- Fork https://github.com/cs-util-com/InstantScribe and ask ChatGPT to do them for you ;)