aws-sdk-transcribestreamingservice 1.9.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 672db609cc865f00aeff552833b39bfa124e9e34
|
4
|
+
data.tar.gz: e12e43f441a4bf83bd112c3e1aa3e6050aa3fbb3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2de8ef068708687512e5886ee077bd87bfb8c7bd666c682462fa1043ba6e11f3b9870066ed8f6518dbf7d9eacd42e8c53af4ab33f32051f1c06cd162357f8847
|
7
|
+
data.tar.gz: 3874ebfe2c865d0dc871e2f1c202c63fc1483bddad1ad85bcb5e439339e1b99e563eb6a573f4ad5dc33b9da5b1c9b1b1927ba5ba283db6fa7a951cff355cc537
|
@@ -190,7 +190,7 @@ module Aws::TranscribeStreamingService
|
|
190
190
|
# * x-amzn-transcribe-session-id
|
191
191
|
#
|
192
192
|
# @option params [required, String] :language_code
|
193
|
-
# Indicates the language used in the input audio stream.
|
193
|
+
# Indicates the source language used in the input audio stream.
|
194
194
|
#
|
195
195
|
# @option params [required, Integer] :media_sample_rate_hertz
|
196
196
|
# The sample rate, in Hertz, of the input audio. We suggest that you use
|
@@ -308,7 +308,7 @@ module Aws::TranscribeStreamingService
|
|
308
308
|
# @example Request syntax with placeholder values
|
309
309
|
#
|
310
310
|
# async_resp = async_client.start_stream_transcription({
|
311
|
-
# language_code: "en-US", # required, accepts en-US, en-GB, es-US, fr-CA, fr-FR
|
311
|
+
# language_code: "en-US", # required, accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU
|
312
312
|
# media_sample_rate_hertz: 1, # required
|
313
313
|
# media_encoding: "pcm", # required, accepts pcm
|
314
314
|
# vocabulary_name: "VocabularyName",
|
@@ -323,7 +323,7 @@ module Aws::TranscribeStreamingService
|
|
323
323
|
# @example Response structure
|
324
324
|
#
|
325
325
|
# resp.request_id #=> String
|
326
|
-
# resp.language_code #=> String, one of "en-US", "en-GB", "es-US", "fr-CA", "fr-FR"
|
326
|
+
# resp.language_code #=> String, one of "en-US", "en-GB", "es-US", "fr-CA", "fr-FR", "en-AU"
|
327
327
|
# resp.media_sample_rate_hertz #=> Integer
|
328
328
|
# resp.media_encoding #=> String, one of "pcm"
|
329
329
|
# resp.vocabulary_name #=> String
|
@@ -343,7 +343,7 @@ module Aws::TranscribeStreamingService
|
|
343
343
|
# event.transcript.results[0].alternatives[0].items #=> Array
|
344
344
|
# event.transcript.results[0].alternatives[0].items[0].start_time #=> Float
|
345
345
|
# event.transcript.results[0].alternatives[0].items[0].end_time #=> Float
|
346
|
-
# event.transcript.results[0].alternatives[0].items[0].type #=> String, one of "
|
346
|
+
# event.transcript.results[0].alternatives[0].items[0].type #=> String, one of "pronunciation", "punctuation"
|
347
347
|
# event.transcript.results[0].alternatives[0].items[0].content #=> String
|
348
348
|
#
|
349
349
|
# For :bad_request_exception event available at #on_bad_request_exception_event callback and response eventstream enumerator:
|
@@ -401,7 +401,7 @@ module Aws::TranscribeStreamingService
|
|
401
401
|
http_response: Seahorse::Client::Http::AsyncResponse.new,
|
402
402
|
config: config)
|
403
403
|
context[:gem_name] = 'aws-sdk-transcribestreamingservice'
|
404
|
-
context[:gem_version] = '1.
|
404
|
+
context[:gem_version] = '1.10.0'
|
405
405
|
Seahorse::Client::Request.new(handlers, context)
|
406
406
|
end
|
407
407
|
|
@@ -278,7 +278,7 @@ module Aws::TranscribeStreamingService
|
|
278
278
|
params: params,
|
279
279
|
config: config)
|
280
280
|
context[:gem_name] = 'aws-sdk-transcribestreamingservice'
|
281
|
-
context[:gem_version] = '1.
|
281
|
+
context[:gem_version] = '1.10.0'
|
282
282
|
Seahorse::Client::Request.new(handlers, context)
|
283
283
|
end
|
284
284
|
|
@@ -148,19 +148,23 @@ module Aws::TranscribeStreamingService
|
|
148
148
|
# @return [String]
|
149
149
|
#
|
150
150
|
# @!attribute [rw] start_time
|
151
|
-
# The offset in
|
152
|
-
#
|
151
|
+
# The offset in seconds from the beginning of the audio stream to the
|
152
|
+
# beginning of the result.
|
153
153
|
# @return [Float]
|
154
154
|
#
|
155
155
|
# @!attribute [rw] end_time
|
156
|
-
# The offset in
|
157
|
-
#
|
156
|
+
# The offset in seconds from the beginning of the audio stream to the
|
157
|
+
# end of the result.
|
158
158
|
# @return [Float]
|
159
159
|
#
|
160
160
|
# @!attribute [rw] is_partial
|
161
|
-
#
|
162
|
-
#
|
163
|
-
#
|
161
|
+
# Amazon Transcribe divides the incoming audio stream into segments at
|
162
|
+
# natural points in the audio. Transcription results are returned
|
163
|
+
# based on these segments.
|
164
|
+
#
|
165
|
+
# The `IsPartial` field is `true` to indicate that Amazon Transcribe
|
166
|
+
# has additional transcription data to send, `false` to indicate that
|
167
|
+
# this is the last transcription result for the segment.
|
164
168
|
# @return [Boolean]
|
165
169
|
#
|
166
170
|
# @!attribute [rw] alternatives
|
@@ -184,7 +188,7 @@ module Aws::TranscribeStreamingService
|
|
184
188
|
# data as a hash:
|
185
189
|
#
|
186
190
|
# {
|
187
|
-
# language_code: "en-US", # required, accepts en-US, en-GB, es-US, fr-CA, fr-FR
|
191
|
+
# language_code: "en-US", # required, accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU
|
188
192
|
# media_sample_rate_hertz: 1, # required
|
189
193
|
# media_encoding: "pcm", # required, accepts pcm
|
190
194
|
# vocabulary_name: "VocabularyName",
|
@@ -193,7 +197,7 @@ module Aws::TranscribeStreamingService
|
|
193
197
|
# }
|
194
198
|
#
|
195
199
|
# @!attribute [rw] language_code
|
196
|
-
# Indicates the language used in the input audio stream.
|
200
|
+
# Indicates the source language used in the input audio stream.
|
197
201
|
# @return [String]
|
198
202
|
#
|
199
203
|
# @!attribute [rw] media_sample_rate_hertz
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-transcribestreamingservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-11-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|