london_utku
london_utku

Reputation: 1312

Google Cloud Video Intelligence Speech Transcription

I try to use Speech Transcription via Video Inteligence, however I get the following error :

input_uri: "/supereye1.appspot.com/video/8rsxVe23pzQ/videofile.mp4"
error {
  code: 3
  message: "Invalid SpeechTranscription request argument(s)."
}
segment {
  start_time_offset {
  }
  end_time_offset {
    nanos: 673378000
  }
}

Here is my code :

video_client = videointelligence.VideoIntelligenceServiceClient()
features = [videointelligence.enums.Feature.OBJECT_TRACKING,
            videointelligence.enums.Feature.TEXT_DETECTION,
            videointelligence.enums.Feature.SPEECH_TRANSCRIPTION,
            videointelligence.enums.Feature.SHOT_CHANGE_DETECTION]
operation = video_client.annotate_video(gs_video_path, features=features)

How can I fix this problem ?

Upvotes: 0

Views: 274

Answers (1)

london_utku
london_utku

Reputation: 1312

The following settings are prerequisite for Speech Transcription with Google Cloud.

Now, I set them, prior to the call and I can succesfully execute the video intelligence call.

config = videointelligence.types.SpeechTranscriptionConfig(
    language_code = "en-GB",
    enable_automatic_punctuation=True,
)
context = videointelligence.types.VideoContext(
    segments=None,
    speech_transcription_config=config,
)

Upvotes: 0

Related Questions