-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(samples): Update code samples for adaptation and VAD (#462)
Co-authored-by: AJ Morozoff <[email protected]> Co-authored-by: Anthonios Partheniou <[email protected]>
- Loading branch information
Showing
15 changed files
with
390 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
108 changes: 108 additions & 0 deletions
108
speech/snippets/transcribe_streaming_voice_activity_events.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
# Copyright 2022 Google Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
import argparse | ||
|
||
# [START speech_transcribe_streaming_voice_activity_events] | ||
import io | ||
|
||
from google.cloud.speech_v2 import SpeechClient | ||
from google.cloud.speech_v2.types import cloud_speech | ||
|
||
|
||
def transcribe_streaming_voice_activity_events(project_id, recognizer_id, audio_file): | ||
# Instantiates a client | ||
client = SpeechClient() | ||
|
||
request = cloud_speech.CreateRecognizerRequest( | ||
parent=f"projects/{project_id}/locations/global", | ||
recognizer_id=recognizer_id, | ||
recognizer=cloud_speech.Recognizer( | ||
language_codes=["en-US"], model="latest_long" | ||
), | ||
) | ||
|
||
# Creates a Recognizer | ||
operation = client.create_recognizer(request=request) | ||
recognizer = operation.result() | ||
|
||
# Reads a file as bytes | ||
with io.open(audio_file, "rb") as f: | ||
content = f.read() | ||
|
||
# In practice, stream should be a generator yielding chunks of audio data | ||
chunk_length = len(content) // 5 | ||
stream = [ | ||
content[start : start + chunk_length] | ||
for start in range(0, len(content), chunk_length) | ||
] | ||
audio_requests = ( | ||
cloud_speech.StreamingRecognizeRequest(audio=audio) for audio in stream | ||
) | ||
|
||
recognition_config = cloud_speech.RecognitionConfig(auto_decoding_config={}) | ||
|
||
# Sets the flag to enable voice activity events | ||
streaming_features = cloud_speech.StreamingRecognitionFeatures( | ||
enable_voice_activity_events=True | ||
) | ||
streaming_config = cloud_speech.StreamingRecognitionConfig( | ||
config=recognition_config, streaming_features=streaming_features | ||
) | ||
|
||
config_request = cloud_speech.StreamingRecognizeRequest( | ||
recognizer=recognizer.name, streaming_config=streaming_config | ||
) | ||
|
||
def requests(config, audio): | ||
yield config | ||
for message in audio: | ||
yield message | ||
|
||
# Transcribes the audio into text | ||
responses_iterator = client.streaming_recognize( | ||
requests=requests(config_request, audio_requests) | ||
) | ||
responses = [] | ||
for response in responses_iterator: | ||
responses.append(response) | ||
if ( | ||
response.speech_event_type | ||
== cloud_speech.StreamingRecognizeResponse.SpeechEventType.SPEECH_ACTIVITY_BEGIN | ||
): | ||
print("Speech started.") | ||
if ( | ||
response.speech_event_type | ||
== cloud_speech.StreamingRecognizeResponse.SpeechEventType.SPEECH_ACTIVITY_END | ||
): | ||
print("Speech ended.") | ||
for result in response.results: | ||
print("Transcript: {}".format(result.alternatives[0].transcript)) | ||
|
||
return responses | ||
# [END speech_transcribe_streaming_voice_activity_events] | ||
|
||
|
||
if __name__ == "__main__": | ||
parser = argparse.ArgumentParser( | ||
description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter | ||
) | ||
parser.add_argument("project_id", help="project to create recognizer in") | ||
parser.add_argument("recognizer_id", help="name of recognizer to create") | ||
parser.add_argument("audio_file", help="audio file to stream") | ||
args = parser.parse_args() | ||
transcribe_streaming_voice_activity_events( | ||
args.project_id, args.recognizer_id, args.audio_file | ||
) |
58 changes: 58 additions & 0 deletions
58
speech/snippets/transcribe_streaming_voice_activity_events_test.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Copyright 2022, Google, Inc. | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import os | ||
import re | ||
from uuid import uuid4 | ||
|
||
from google.cloud.speech_v2 import SpeechClient | ||
from google.cloud.speech_v2.types import cloud_speech | ||
|
||
import transcribe_streaming_voice_activity_events | ||
|
||
RESOURCES = os.path.join(os.path.dirname(__file__), "resources") | ||
|
||
|
||
def delete_recognizer(name): | ||
client = SpeechClient() | ||
request = cloud_speech.DeleteRecognizerRequest(name=name) | ||
client.delete_recognizer(request=request) | ||
|
||
|
||
def test_transcribe_streaming_voice_activity_events(capsys): | ||
project_id = os.getenv("GOOGLE_CLOUD_PROJECT") | ||
|
||
recognizer_id = "recognizer-" + str(uuid4()) | ||
responses = transcribe_streaming_voice_activity_events.transcribe_streaming_voice_activity_events( | ||
project_id, recognizer_id, os.path.join(RESOURCES, "audio.wav") | ||
) | ||
|
||
transcript = "" | ||
for response in responses: | ||
for result in response.results: | ||
transcript += result.alternatives[0].transcript | ||
|
||
assert ( | ||
responses[0].speech_event_type | ||
== cloud_speech.StreamingRecognizeResponse.SpeechEventType.SPEECH_ACTIVITY_BEGIN | ||
) | ||
|
||
assert re.search( | ||
r"how old is the Brooklyn Bridge", | ||
transcript, | ||
re.DOTALL | re.I, | ||
) | ||
|
||
delete_recognizer( | ||
f"projects/{project_id}/locations/global/recognizers/{recognizer_id}" | ||
) |
Oops, something went wrong.