Get subtiles/captions for any audio/video being played. Deepgram hackathon submission.
Installation • Usage • Build From Source • Privacy • FAQs
This extension is published on chrome web store.
This extension will require a Deepgram API key for transcription. Get it from here
git clone https://github.com/gajananpp/captioner.git
cd captioner
npm install
npm run build
This will output extension in dist folder which you can load in your browser by following this steps.
The only external api call this extension makes is to wss://api.deepgram.com/v1/listen
passing it the audio blobs from selected audio source as payload.
Q: With which browsers is this extension compatible ?
This extension will work with chrome and other chromium based browsers like edge, brave etc. and can be tweaked to work with firefox and other browsers.
Q: From where can this extension be installed ?
This extension is published on chrome web store. Click below to view it in chrome web store.
Q: Subtitles are slower than audio/video ?
Since unlike Youtube's auto-generated captions where captions are generated when video is uploaded, here it can't seek audio blobs beforehand(could be possible by checking n/w requests having media
type responses) so there is a lag. Lag may get reduced by adjusting the timeslice
of AudioRecorder
. WIP for reducing lag.