google-cloud-text_to_speech-v1beta1 0.1.0 → 0.3.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
  SHA256:
3
- metadata.gz: c8f488af7ab243b1619a563026892982bdc11fffbf76a99eab4f82fadf34f96a
4
- data.tar.gz: c00f383126e782e54dd742d799eab2961520278168dade281a73b75b8cad94ff
3
+ metadata.gz: de2de106cdd7284b300a3b37e46ca094e7eda1f041e1575e79aeea63380b7252
4
+ data.tar.gz: 8c72cd39142518547a5eeadc9c60364a8c71c24554be82e0d3747ea7970a9182
5
5
  SHA512:
6
- metadata.gz: 0b9bdfc557dbec143e6c969d5a66729b2a897bfc99e4c95f9d93a31b19be743bc906e0fed23bdb69c5f4fa18260757d4557aa349c221f2a007585db5383e1377
7
- data.tar.gz: 97d571a59649bdc98a96498511d02dfee7216507f8343a131153eace7aee289383ba0607940afe0398958a12a609d0c3b283f7c682777e3313087fa18baf6b11
6
+ metadata.gz: 0342e5eb764967a9af77ed71912931208ffcfe1e8f711e0728a5fa7b816cf2c85cb91b3923bf70f65e2ba6224e6a389a95fdad182523be4b80ea51d6f00f4b44
7
+ data.tar.gz: 3c106c4f18e0581e7222ebe96dc33911b66db72647ef9031c74a4a8bc68ecb42ac4aba92dfa0faacd727abbe6e41128f739e31478ce05f5f99662a0559f2aa12
data/README.md CHANGED
@@ -18,6 +18,7 @@ In order to use this library, you first need to go through the following steps:
18
18
 
19
19
  1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
20
20
  1. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
21
+ 1. [Enable the API.](https://console.cloud.google.com/apis/library/texttospeech.googleapis.com)
21
22
  1. {file:AUTHENTICATION.md Set up authentication.}
22
23
 
23
24
  ## Quick Start
@@ -33,6 +34,9 @@ response = client.list_voices request
33
34
  View the [Client Library Documentation](https://googleapis.dev/ruby/google-cloud-text_to_speech-v1beta1/latest)
34
35
  for class and method documentation.
35
36
 
37
+ See also the [Product Documentation](https://cloud.google.com/text-to-speech)
38
+ for general usage information.
39
+
36
40
  ## Enabling Logging
37
41
 
38
42
  To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
@@ -63,20 +63,12 @@ module Google
63
63
  end
64
64
  default_config = Client::Configuration.new parent_config
65
65
 
66
- default_config.rpcs.list_voices.timeout = 600.0
67
- default_config.rpcs.list_voices.retry_policy = {
66
+ default_config.timeout = 300.0
67
+ default_config.retry_policy = {
68
68
  initial_delay: 0.1,
69
69
  max_delay: 60.0,
70
70
  multiplier: 1.3,
71
- retry_codes: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
72
- }
73
-
74
- default_config.rpcs.synthesize_speech.timeout = 600.0
75
- default_config.rpcs.synthesize_speech.retry_policy = {
76
- initial_delay: 0.1,
77
- max_delay: 60.0,
78
- multiplier: 1.3,
79
- retry_codes: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
71
+ retry_codes: [14, 4]
80
72
  }
81
73
 
82
74
  default_config
@@ -144,7 +136,8 @@ module Google
144
136
  if credentials.is_a?(String) || credentials.is_a?(Hash)
145
137
  credentials = Credentials.new credentials, scope: @config.scope
146
138
  end
147
- @quota_project_id = credentials.respond_to?(:quota_project_id) ? credentials.quota_project_id : nil
139
+ @quota_project_id = @config.quota_project
140
+ @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
148
141
 
149
142
  @text_to_speech_stub = ::Gapic::ServiceStub.new(
150
143
  ::Google::Cloud::TextToSpeech::V1beta1::TextToSpeech::Stub,
@@ -238,7 +231,7 @@ module Google
238
231
  # @param options [::Gapic::CallOptions, ::Hash]
239
232
  # Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
240
233
  #
241
- # @overload synthesize_speech(input: nil, voice: nil, audio_config: nil)
234
+ # @overload synthesize_speech(input: nil, voice: nil, audio_config: nil, enable_time_pointing: nil)
242
235
  # Pass arguments to `synthesize_speech` via keyword arguments. Note that at
243
236
  # least one keyword argument is required. To specify no parameters, or to keep all
244
237
  # the default parameter values, pass an empty Hash as a request object (see above).
@@ -249,6 +242,8 @@ module Google
249
242
  # Required. The desired voice of the synthesized audio.
250
243
  # @param audio_config [::Google::Cloud::TextToSpeech::V1beta1::AudioConfig, ::Hash]
251
244
  # Required. The configuration of the synthesized audio.
245
+ # @param enable_time_pointing [::Array<::Google::Cloud::TextToSpeech::V1beta1::SynthesizeSpeechRequest::TimepointType>]
246
+ # Whether and what timepoints should be returned in the response.
252
247
  #
253
248
  # @yield [response, operation] Access the result along with the RPC operation
254
249
  # @yieldparam response [::Google::Cloud::TextToSpeech::V1beta1::SynthesizeSpeechResponse]
@@ -365,24 +360,28 @@ module Google
365
360
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
366
361
  # trigger a retry.
367
362
  # @return [::Hash]
363
+ # @!attribute [rw] quota_project
364
+ # A separate project against which to charge quota.
365
+ # @return [::String]
368
366
  #
369
367
  class Configuration
370
368
  extend ::Gapic::Config
371
369
 
372
- config_attr :endpoint, "texttospeech.googleapis.com", String
373
- config_attr :credentials, nil do |value|
370
+ config_attr :endpoint, "texttospeech.googleapis.com", ::String
371
+ config_attr :credentials, nil do |value|
374
372
  allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
375
373
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
376
374
  allowed.any? { |klass| klass === value }
377
375
  end
378
- config_attr :scope, nil, ::String, ::Array, nil
379
- config_attr :lib_name, nil, ::String, nil
380
- config_attr :lib_version, nil, ::String, nil
381
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
382
- config_attr :interceptors, nil, ::Array, nil
383
- config_attr :timeout, nil, ::Numeric, nil
384
- config_attr :metadata, nil, ::Hash, nil
385
- config_attr :retry_policy, nil, ::Hash, Proc, nil
376
+ config_attr :scope, nil, ::String, ::Array, nil
377
+ config_attr :lib_name, nil, ::String, nil
378
+ config_attr :lib_version, nil, ::String, nil
379
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
380
+ config_attr :interceptors, nil, ::Array, nil
381
+ config_attr :timeout, nil, ::Numeric, nil
382
+ config_attr :metadata, nil, ::Hash, nil
383
+ config_attr :retry_policy, nil, ::Hash, ::Proc, nil
384
+ config_attr :quota_project, nil, ::String, nil
386
385
 
387
386
  # @private
388
387
  def initialize parent_config = nil
@@ -398,7 +397,7 @@ module Google
398
397
  def rpcs
399
398
  @rpcs ||= begin
400
399
  parent_rpcs = nil
401
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
400
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
402
401
  Rpcs.new parent_rpcs
403
402
  end
404
403
  end
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module TextToSpeech
23
23
  module V1beta1
24
- VERSION = "0.1.0"
24
+ VERSION = "0.3.0"
25
25
  end
26
26
  end
27
27
  end
@@ -24,6 +24,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
24
24
  optional :input, :message, 1, "google.cloud.texttospeech.v1beta1.SynthesisInput"
25
25
  optional :voice, :message, 2, "google.cloud.texttospeech.v1beta1.VoiceSelectionParams"
26
26
  optional :audio_config, :message, 3, "google.cloud.texttospeech.v1beta1.AudioConfig"
27
+ repeated :enable_time_pointing, :enum, 4, "google.cloud.texttospeech.v1beta1.SynthesizeSpeechRequest.TimepointType"
28
+ end
29
+ add_enum "google.cloud.texttospeech.v1beta1.SynthesizeSpeechRequest.TimepointType" do
30
+ value :TIMEPOINT_TYPE_UNSPECIFIED, 0
31
+ value :SSML_MARK, 1
27
32
  end
28
33
  add_message "google.cloud.texttospeech.v1beta1.SynthesisInput" do
29
34
  oneof :input_source do
@@ -46,6 +51,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
46
51
  end
47
52
  add_message "google.cloud.texttospeech.v1beta1.SynthesizeSpeechResponse" do
48
53
  optional :audio_content, :bytes, 1
54
+ repeated :timepoints, :message, 2, "google.cloud.texttospeech.v1beta1.Timepoint"
55
+ optional :audio_config, :message, 4, "google.cloud.texttospeech.v1beta1.AudioConfig"
56
+ end
57
+ add_message "google.cloud.texttospeech.v1beta1.Timepoint" do
58
+ optional :mark_name, :string, 4
59
+ optional :time_seconds, :double, 3
49
60
  end
50
61
  add_enum "google.cloud.texttospeech.v1beta1.SsmlVoiceGender" do
51
62
  value :SSML_VOICE_GENDER_UNSPECIFIED, 0
@@ -57,7 +68,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
57
68
  value :AUDIO_ENCODING_UNSPECIFIED, 0
58
69
  value :LINEAR16, 1
59
70
  value :MP3, 2
71
+ value :MP3_64_KBPS, 4
60
72
  value :OGG_OPUS, 3
73
+ value :MULAW, 5
61
74
  end
62
75
  end
63
76
  end
@@ -70,10 +83,12 @@ module Google
70
83
  ListVoicesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.texttospeech.v1beta1.ListVoicesResponse").msgclass
71
84
  Voice = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.texttospeech.v1beta1.Voice").msgclass
72
85
  SynthesizeSpeechRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.texttospeech.v1beta1.SynthesizeSpeechRequest").msgclass
86
+ SynthesizeSpeechRequest::TimepointType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.texttospeech.v1beta1.SynthesizeSpeechRequest.TimepointType").enummodule
73
87
  SynthesisInput = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.texttospeech.v1beta1.SynthesisInput").msgclass
74
88
  VoiceSelectionParams = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.texttospeech.v1beta1.VoiceSelectionParams").msgclass
75
89
  AudioConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.texttospeech.v1beta1.AudioConfig").msgclass
76
90
  SynthesizeSpeechResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.texttospeech.v1beta1.SynthesizeSpeechResponse").msgclass
91
+ Timepoint = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.texttospeech.v1beta1.Timepoint").msgclass
77
92
  SsmlVoiceGender = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.texttospeech.v1beta1.SsmlVoiceGender").enummodule
78
93
  AudioEncoding = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.texttospeech.v1beta1.AudioEncoding").enummodule
79
94
  end
@@ -15,7 +15,6 @@
15
15
  # See the License for the specific language governing permissions and
16
16
  # limitations under the License.
17
17
  #
18
- #
19
18
 
20
19
  require 'grpc'
21
20
  require 'google/cloud/texttospeech/v1beta1/cloud_tts_pb'
@@ -76,9 +76,21 @@ module Google
76
76
  # @!attribute [rw] audio_config
77
77
  # @return [::Google::Cloud::TextToSpeech::V1beta1::AudioConfig]
78
78
  # Required. The configuration of the synthesized audio.
79
+ # @!attribute [rw] enable_time_pointing
80
+ # @return [::Array<::Google::Cloud::TextToSpeech::V1beta1::SynthesizeSpeechRequest::TimepointType>]
81
+ # Whether and what timepoints should be returned in the response.
79
82
  class SynthesizeSpeechRequest
80
83
  include ::Google::Protobuf::MessageExts
81
84
  extend ::Google::Protobuf::MessageExts::ClassMethods
85
+
86
+ # The type of timepoint information that is returned in the response.
87
+ module TimepointType
88
+ # Not specified. No timepoint information will be returned.
89
+ TIMEPOINT_TYPE_UNSPECIFIED = 0
90
+
91
+ # Timepoint information of `<mark>` tags in SSML input will be returned.
92
+ SSML_MARK = 1
93
+ end
82
94
  end
83
95
 
84
96
  # Contains text input to be synthesized. Either `text` or `ssml` must be
@@ -93,7 +105,7 @@ module Google
93
105
  # The SSML document to be synthesized. The SSML document must be valid
94
106
  # and well-formed. Otherwise the RPC will fail and return
95
107
  # [google.rpc.Code.INVALID_ARGUMENT][]. For more information, see
96
- # [SSML](/speech/text-to-speech/docs/ssml).
108
+ # [SSML](https://cloud.google.com/text-to-speech/docs/ssml).
97
109
  class SynthesisInput
98
110
  include ::Google::Protobuf::MessageExts
99
111
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -184,11 +196,31 @@ module Google
184
196
  # For LINEAR16 audio, we include the WAV header. Note: as
185
197
  # with all bytes fields, protobuffers use a pure binary representation,
186
198
  # whereas JSON representations use base64.
199
+ # @!attribute [rw] timepoints
200
+ # @return [::Array<::Google::Cloud::TextToSpeech::V1beta1::Timepoint>]
201
+ # A link between a position in the original request input and a corresponding
202
+ # time in the output audio. It's only supported via `<mark>` of SSML input.
203
+ # @!attribute [rw] audio_config
204
+ # @return [::Google::Cloud::TextToSpeech::V1beta1::AudioConfig]
205
+ # The audio metadata of `audio_content`.
187
206
  class SynthesizeSpeechResponse
188
207
  include ::Google::Protobuf::MessageExts
189
208
  extend ::Google::Protobuf::MessageExts::ClassMethods
190
209
  end
191
210
 
211
+ # This contains a mapping between a certain point in the input text and a
212
+ # corresponding time in the output audio.
213
+ # @!attribute [rw] mark_name
214
+ # @return [::String]
215
+ # Timepoint name as received from the client within `<mark>` tag.
216
+ # @!attribute [rw] time_seconds
217
+ # @return [::Float]
218
+ # Time offset in seconds from the start of the synthesized audio.
219
+ class Timepoint
220
+ include ::Google::Protobuf::MessageExts
221
+ extend ::Google::Protobuf::MessageExts::ClassMethods
222
+ end
223
+
192
224
  # Gender of the voice as described in
193
225
  # [SSML voice element](https://www.w3.org/TR/speech-synthesis11/#edef_voice).
194
226
  module SsmlVoiceGender
@@ -205,7 +237,7 @@ module Google
205
237
  # A female voice.
206
238
  FEMALE = 2
207
239
 
208
- # A gender-neutral voice.
240
+ # A gender-neutral voice. This voice is not yet supported.
209
241
  NEUTRAL = 3
210
242
  end
211
243
 
@@ -222,11 +254,18 @@ module Google
222
254
  # MP3 audio at 32kbps.
223
255
  MP3 = 2
224
256
 
257
+ # MP3 at 64kbps.
258
+ MP3_64_KBPS = 4
259
+
225
260
  # Opus encoded audio wrapped in an ogg container. The result will be a
226
261
  # file which can be played natively on Android, and in browsers (at least
227
262
  # Chrome and Firefox). The quality of the encoding is considerably higher
228
263
  # than MP3 while using approximately the same bitrate.
229
264
  OGG_OPUS = 3
265
+
266
+ # 8-bit samples that compand 14-bit audio samples using G.711 PCMU/mu-law.
267
+ # Audio content returned as MULAW also contains a WAV header.
268
+ MULAW = 5
230
269
  end
231
270
  end
232
271
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-text_to_speech-v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-06 00:00:00.000000000 Z
11
+ date: 2020-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.2'
19
+ version: '0.3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0.2'
26
+ version: '0.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: google-cloud-errors
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -58,14 +58,42 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '5.10'
61
+ version: '5.14'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '5.10'
68
+ version: '5.14'
69
+ - !ruby/object:Gem::Dependency
70
+ name: minitest-focus
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.1'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.1'
83
+ - !ruby/object:Gem::Dependency
84
+ name: minitest-rg
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '5.2'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '5.2'
69
97
  - !ruby/object:Gem::Dependency
70
98
  name: rake
71
99
  requirement: !ruby/object:Gem::Requirement
@@ -134,7 +162,6 @@ files:
134
162
  - LICENSE.md
135
163
  - README.md
136
164
  - lib/google-cloud-text_to_speech-v1beta1.rb
137
- - lib/google/cloud/common_resources_pb.rb
138
165
  - lib/google/cloud/text_to_speech/v1beta1.rb
139
166
  - lib/google/cloud/text_to_speech/v1beta1/text_to_speech.rb
140
167
  - lib/google/cloud/text_to_speech/v1beta1/text_to_speech/client.rb
@@ -165,7 +192,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
165
192
  - !ruby/object:Gem::Version
166
193
  version: '0'
167
194
  requirements: []
168
- rubygems_version: 3.0.6
195
+ rubygems_version: 3.1.3
169
196
  signing_key:
170
197
  specification_version: 4
171
198
  summary: API Client library for the Cloud Text-to-Speech V1beta1 API
@@ -1,15 +0,0 @@
1
- # Generated by the protocol buffer compiler. DO NOT EDIT!
2
- # source: google/cloud/common_resources.proto
3
-
4
- require 'google/protobuf'
5
-
6
- require 'google/api/resource_pb'
7
- Google::Protobuf::DescriptorPool.generated_pool.build do
8
- add_file("google/cloud/common_resources.proto", :syntax => :proto3) do
9
- end
10
- end
11
-
12
- module Google
13
- module Cloud
14
- end
15
- end