aws-sdk-transcribestreamingservice 1.9.0 → 1.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3f0948ad737f25337ddb7ca500a80ab0610e6c8c
4
- data.tar.gz: 13432d94f91152df312ca446b3b3815b56aba329
3
+ metadata.gz: 672db609cc865f00aeff552833b39bfa124e9e34
4
+ data.tar.gz: e12e43f441a4bf83bd112c3e1aa3e6050aa3fbb3
5
5
  SHA512:
6
- metadata.gz: 000dd1acad216adf32dfb8e0d3a66410b2d43a3c7ec868b184104edb3338f6fa055c2de0dffc8c973c4823758f8fcce2ad822647f63c156dad6e6ab14e70f189
7
- data.tar.gz: 7084a0126d9a8219a92d63d28f7bbc278e06e4ec61703aeb2a6b2146080d1cd320505faac51dba48d38c68dda267cf2e5869e7854fd202a50927ce8f5cae2afd
6
+ metadata.gz: 2de8ef068708687512e5886ee077bd87bfb8c7bd666c682462fa1043ba6e11f3b9870066ed8f6518dbf7d9eacd42e8c53af4ab33f32051f1c06cd162357f8847
7
+ data.tar.gz: 3874ebfe2c865d0dc871e2f1c202c63fc1483bddad1ad85bcb5e439339e1b99e563eb6a573f4ad5dc33b9da5b1c9b1b1927ba5ba283db6fa7a951cff355cc537
@@ -44,6 +44,6 @@ require_relative 'aws-sdk-transcribestreamingservice/event_streams'
44
44
  # @service
45
45
  module Aws::TranscribeStreamingService
46
46
 
47
- GEM_VERSION = '1.9.0'
47
+ GEM_VERSION = '1.10.0'
48
48
 
49
49
  end
@@ -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 "PRONUNCIATION", "PUNCTUATION"
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.9.0'
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.9.0'
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 milliseconds from the beginning of the audio stream to
152
- # the beginning of the result.
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 milliseconds from the beginning of the audio stream to
157
- # the end of the result.
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
- # `true` to indicate that Amazon Transcribe has additional
162
- # transcription data to send, `false` to indicate that this is the
163
- # last transcription result for the audio stream.
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.9.0
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-10-23 00:00:00.000000000 Z
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