forked from Naki21/google-speech-to-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
51 lines (31 loc) · 1.9 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
This script is for extracting and transcribing audio files from .mp4 video files into .srt formatted text files for subtitling purposes using Googles Speech-to-Text and Google Cloud Storage APIs. It outputs both a raw text transcription and a .srt formatted version. In the current version, this script requires you to authenticate your Google credentials through the gcloud CLI and also requires that you have ffmpeg installed locally on your machine (for video to audio conversion and compression)
Instructions for use
Use the Cloud Platform Console to create a new Cloud
Platform project, create an App Engine application, and
enable billing: https://console.cloud.google.com/
(Skip if project already set up)
Enable the Google Speech to Text API
in APIs and Services in new project dashboard
Set up a storage bucket in Google Cloud Storage
Download, install and set up Google SDK
https://cloud.google.com/sdk/
(authenticate your machine by following the auth instructions)
Install ffmpeg
sudo apt update
sudo apt install ffmpeg
Set your virtual environment
If you don't have virtualenv, install it using pip.
sudo pip install virtualenv
Create an isolated Python environment, and install dependencies:
virtualenv env
source env/bin/activate
pip install -r requirements.txt
In goog.py change the bucket_name variable to the name of the storage bucket you wish to use
To run transcription script add .mp4 files to a specified directory
Then run:
python autorun.py /path/to/directory/
The script will automatically strip the audio files from the video and convert them to .ogg format
The it uploads the audio to the gcloud storage bucket and
then passes its gcs_uri to the speech to text API for processing
When finished, it outputs both the .srt formatted file and raw text file into the specified directory
Note that if the program errors, it terminates as to not potentially abuse any API quota limits