Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Speech Recognition on video file

I wanna use Google Voice Service by not microphone but video file. for example, A Video File is playing on my computer and Google Speech Recognition Program is recognizing the video's Audio stream. ex) Auto caption function of Youtube. How can I use G.S.R??

like image 895
SeongHyun Lee Avatar asked Sep 16 '25 17:09

SeongHyun Lee


1 Answers

This is a great question, Google does provide a way of doing that through the Web Speech API. Here's a link to an example usage, and a demo site from Google here.

However, you would have to extract the audio from the video first and then feed the audio to the API.

There's also the Cloud Speech API, which is free up to a certain point. It can be found here.

like image 176
async3 Avatar answered Sep 18 '25 10:09

async3