google-cloud-speech 0.24.0 → 0.25.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/google-cloud-speech.rb +2 -2
- data/lib/google/cloud/speech.rb +11 -7
- data/lib/google/cloud/speech/audio.rb +8 -8
- data/lib/google/cloud/speech/operation.rb +11 -11
- data/lib/google/cloud/speech/project.rb +21 -21
- data/lib/google/cloud/speech/result.rb +3 -3
- data/lib/google/cloud/speech/stream.rb +10 -10
- data/lib/google/cloud/speech/v1/speech_client_config.json +1 -3
- data/lib/google/cloud/speech/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ccecf5215ecbd7fd0e0ef074b7638711905b8450
|
4
|
+
data.tar.gz: f4c270117ad7bc3611e435fb598b5dd6bcbc835c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d034fa22e135e05a08e14b09ffc2cb075a5cd7757f717a7635bfbd551539d853935670664c21cd636f1b2f2bd68da0d769f2747c8f7b0002b79628d49360197e
|
7
|
+
data.tar.gz: 5b3101e327dbb801a311abc8cc0dcaf2ec3774cce69c22f8bd629fff62701bc9ab7b8717ef4b923dc0c95d0d4d3efb32642fd876d0d0dbe91cb4d99a0ed0fb0d
|
data/README.md
CHANGED
data/lib/google-cloud-speech.rb
CHANGED
@@ -51,7 +51,7 @@ module Google
|
|
51
51
|
# speech = gcloud.speech
|
52
52
|
#
|
53
53
|
# audio = speech.audio "path/to/audio.raw",
|
54
|
-
# encoding: :
|
54
|
+
# encoding: :linear16,
|
55
55
|
# language: "en-US",
|
56
56
|
# sample_rate: 16000
|
57
57
|
#
|
@@ -99,7 +99,7 @@ module Google
|
|
99
99
|
# speech = Google::Cloud.speech
|
100
100
|
#
|
101
101
|
# audio = speech.audio "path/to/audio.raw",
|
102
|
-
# encoding: :
|
102
|
+
# encoding: :linear16,
|
103
103
|
# language: "en-US",
|
104
104
|
# sample_rate: 16000
|
105
105
|
#
|
data/lib/google/cloud/speech.rb
CHANGED
@@ -56,7 +56,7 @@ module Google
|
|
56
56
|
# speech = Google::Cloud::Speech.new
|
57
57
|
#
|
58
58
|
# audio = speech.audio "path/to/audio.raw",
|
59
|
-
# encoding: :
|
59
|
+
# encoding: :linear16,
|
60
60
|
# language: "en-US",
|
61
61
|
# sample_rate: 16000
|
62
62
|
# ```
|
@@ -69,7 +69,7 @@ module Google
|
|
69
69
|
# speech = Google::Cloud::Speech.new
|
70
70
|
#
|
71
71
|
# audio = speech.audio "gs://bucket-name/path/to/audio.raw",
|
72
|
-
# encoding: :
|
72
|
+
# encoding: :linear16,
|
73
73
|
# language: "en-US",
|
74
74
|
# sample_rate: 16000
|
75
75
|
# ```
|
@@ -89,7 +89,7 @@ module Google
|
|
89
89
|
# speech = Google::Cloud::Speech.new
|
90
90
|
#
|
91
91
|
# audio = speech.audio file,
|
92
|
-
# encoding: :
|
92
|
+
# encoding: :linear16,
|
93
93
|
# language: "en-US",
|
94
94
|
# sample_rate: 16000
|
95
95
|
# ```
|
@@ -112,7 +112,7 @@ module Google
|
|
112
112
|
# speech = Google::Cloud::Speech.new
|
113
113
|
#
|
114
114
|
# audio = speech.audio "path/to/audio.raw",
|
115
|
-
# encoding: :
|
115
|
+
# encoding: :linear16,
|
116
116
|
# language: "en-US",
|
117
117
|
# sample_rate: 16000
|
118
118
|
#
|
@@ -133,7 +133,7 @@ module Google
|
|
133
133
|
# speech = Google::Cloud::Speech.new
|
134
134
|
#
|
135
135
|
# audio = speech.audio "path/to/audio.raw",
|
136
|
-
# encoding: :
|
136
|
+
# encoding: :linear16,
|
137
137
|
# language: "en-US",
|
138
138
|
# sample_rate: 16000
|
139
139
|
#
|
@@ -160,7 +160,7 @@ module Google
|
|
160
160
|
#
|
161
161
|
# audio = speech.audio "path/to/audio.raw"
|
162
162
|
#
|
163
|
-
# stream = audio.stream encoding: :
|
163
|
+
# stream = audio.stream encoding: :linear16,
|
164
164
|
# language: "en-US",
|
165
165
|
# sample_rate: 16000
|
166
166
|
#
|
@@ -215,19 +215,23 @@ module Google
|
|
215
215
|
# speech = Google::Cloud::Speech.new
|
216
216
|
#
|
217
217
|
# audio = speech.audio "path/to/audio.raw",
|
218
|
-
# encoding: :
|
218
|
+
# encoding: :linear16,
|
219
219
|
# language: "en-US",
|
220
220
|
# sample_rate: 16000
|
221
221
|
#
|
222
222
|
def self.new project: nil, keyfile: nil, scope: nil, timeout: nil,
|
223
223
|
client_config: nil
|
224
224
|
project ||= Google::Cloud::Speech::Project.default_project
|
225
|
+
project = project.to_s # Always cast to a string
|
226
|
+
fail ArgumentError, "project is missing" if project.empty?
|
227
|
+
|
225
228
|
if keyfile.nil?
|
226
229
|
credentials = Google::Cloud::Speech::Credentials.default scope: scope
|
227
230
|
else
|
228
231
|
credentials = Google::Cloud::Speech::Credentials.new(
|
229
232
|
keyfile, scope: scope)
|
230
233
|
end
|
234
|
+
|
231
235
|
Google::Cloud::Speech::Project.new(
|
232
236
|
Google::Cloud::Speech::Service.new(
|
233
237
|
project, credentials, timeout: timeout,
|
@@ -39,7 +39,7 @@ module Google
|
|
39
39
|
# speech = Google::Cloud::Speech.new
|
40
40
|
#
|
41
41
|
# audio = speech.audio "path/to/audio.raw",
|
42
|
-
# encoding: :
|
42
|
+
# encoding: :linear16,
|
43
43
|
# language: "en-US",
|
44
44
|
# sample_rate: 16000
|
45
45
|
#
|
@@ -59,7 +59,7 @@ module Google
|
|
59
59
|
#
|
60
60
|
# Acceptable values are:
|
61
61
|
#
|
62
|
-
# * `
|
62
|
+
# * `linear16` - Uncompressed 16-bit signed little-endian samples.
|
63
63
|
# (LINEAR16)
|
64
64
|
# * `flac` - The [Free Lossless Audio
|
65
65
|
# Codec](http://flac.sourceforge.net/documentation.html) encoding.
|
@@ -92,8 +92,8 @@ module Google
|
|
92
92
|
# language: "en-US",
|
93
93
|
# sample_rate: 16000
|
94
94
|
#
|
95
|
-
# audio.encoding = :
|
96
|
-
# audio.encoding #=> :
|
95
|
+
# audio.encoding = :linear16
|
96
|
+
# audio.encoding #=> :linear16
|
97
97
|
#
|
98
98
|
attr_accessor :encoding
|
99
99
|
|
@@ -113,7 +113,7 @@ module Google
|
|
113
113
|
# speech = Google::Cloud::Speech.new
|
114
114
|
#
|
115
115
|
# audio = speech.audio "path/to/audio.raw",
|
116
|
-
# encoding: :
|
116
|
+
# encoding: :linear16,
|
117
117
|
# sample_rate: 16000
|
118
118
|
#
|
119
119
|
# audio.language = "en-US"
|
@@ -135,7 +135,7 @@ module Google
|
|
135
135
|
# speech = Google::Cloud::Speech.new
|
136
136
|
#
|
137
137
|
# audio = speech.audio "path/to/audio.raw",
|
138
|
-
# encoding: :
|
138
|
+
# encoding: :linear16,
|
139
139
|
# language: "en-US"
|
140
140
|
#
|
141
141
|
# audio.sample_rate = 16000
|
@@ -200,7 +200,7 @@ module Google
|
|
200
200
|
# speech = Google::Cloud::Speech.new
|
201
201
|
#
|
202
202
|
# audio = speech.audio "path/to/audio.raw",
|
203
|
-
# encoding: :
|
203
|
+
# encoding: :linear16,
|
204
204
|
# language: "en-US",
|
205
205
|
# sample_rate: 16000
|
206
206
|
#
|
@@ -249,7 +249,7 @@ module Google
|
|
249
249
|
# speech = Google::Cloud::Speech.new
|
250
250
|
#
|
251
251
|
# audio = speech.audio "path/to/audio.raw",
|
252
|
-
# encoding: :
|
252
|
+
# encoding: :linear16,
|
253
253
|
# language: "en-US",
|
254
254
|
# sample_rate: 16000
|
255
255
|
#
|
@@ -39,9 +39,9 @@ module Google
|
|
39
39
|
# speech = Google::Cloud::Speech.new
|
40
40
|
#
|
41
41
|
# op = speech.process "path/to/audio.raw",
|
42
|
-
#
|
43
|
-
#
|
44
|
-
#
|
42
|
+
# encoding: :linear16,
|
43
|
+
# language: "en-US",
|
44
|
+
# sample_rate: 16000
|
45
45
|
#
|
46
46
|
# op.done? #=> false
|
47
47
|
# op.reload! # API call
|
@@ -70,7 +70,7 @@ module Google
|
|
70
70
|
# speech = Google::Cloud::Speech.new
|
71
71
|
#
|
72
72
|
# op = speech.process "path/to/audio.raw",
|
73
|
-
# encoding: :
|
73
|
+
# encoding: :linear16,
|
74
74
|
# language: "en-US",
|
75
75
|
# sample_rate: 16000
|
76
76
|
#
|
@@ -92,7 +92,7 @@ module Google
|
|
92
92
|
# speech = Google::Cloud::Speech.new
|
93
93
|
#
|
94
94
|
# op = speech.process "path/to/audio.raw",
|
95
|
-
# encoding: :
|
95
|
+
# encoding: :linear16,
|
96
96
|
# language: "en-US",
|
97
97
|
# sample_rate: 16000
|
98
98
|
#
|
@@ -114,7 +114,7 @@ module Google
|
|
114
114
|
# speech = Google::Cloud::Speech.new
|
115
115
|
#
|
116
116
|
# op = speech.process "path/to/audio.raw",
|
117
|
-
# encoding: :
|
117
|
+
# encoding: :linear16,
|
118
118
|
# language: "en-US",
|
119
119
|
# sample_rate: 16000
|
120
120
|
#
|
@@ -141,7 +141,7 @@ module Google
|
|
141
141
|
# speech = Google::Cloud::Speech.new
|
142
142
|
#
|
143
143
|
# op = speech.process "path/to/audio.raw",
|
144
|
-
# encoding: :
|
144
|
+
# encoding: :linear16,
|
145
145
|
# language: "en-US",
|
146
146
|
# sample_rate: 16000
|
147
147
|
#
|
@@ -165,7 +165,7 @@ module Google
|
|
165
165
|
# speech = Google::Cloud::Speech.new
|
166
166
|
#
|
167
167
|
# op = speech.process "path/to/audio.raw",
|
168
|
-
# encoding: :
|
168
|
+
# encoding: :linear16,
|
169
169
|
# language: "en-US",
|
170
170
|
# sample_rate: 16000
|
171
171
|
#
|
@@ -190,7 +190,7 @@ module Google
|
|
190
190
|
# speech = Google::Cloud::Speech.new
|
191
191
|
#
|
192
192
|
# op = speech.process "path/to/audio.raw",
|
193
|
-
# encoding: :
|
193
|
+
# encoding: :linear16,
|
194
194
|
# language: "en-US",
|
195
195
|
# sample_rate: 16000
|
196
196
|
#
|
@@ -212,7 +212,7 @@ module Google
|
|
212
212
|
# speech = Google::Cloud::Speech.new
|
213
213
|
#
|
214
214
|
# op = speech.process "path/to/audio.raw",
|
215
|
-
# encoding: :
|
215
|
+
# encoding: :linear16,
|
216
216
|
# language: "en-US",
|
217
217
|
# sample_rate: 16000
|
218
218
|
#
|
@@ -236,7 +236,7 @@ module Google
|
|
236
236
|
# speech = Google::Cloud::Speech.new
|
237
237
|
#
|
238
238
|
# op = speech.process "path/to/audio.raw",
|
239
|
-
# encoding: :
|
239
|
+
# encoding: :linear16,
|
240
240
|
# language: "en-US",
|
241
241
|
# sample_rate: 16000
|
242
242
|
#
|
@@ -44,7 +44,7 @@ module Google
|
|
44
44
|
# speech = Google::Cloud::Speech.new
|
45
45
|
#
|
46
46
|
# audio = speech.audio "path/to/audio.raw",
|
47
|
-
# encoding: :
|
47
|
+
# encoding: :linear16,
|
48
48
|
# language: "en-US",
|
49
49
|
# sample_rate: 16000
|
50
50
|
# results = audio.recognize
|
@@ -110,7 +110,7 @@ module Google
|
|
110
110
|
#
|
111
111
|
# Acceptable values are:
|
112
112
|
#
|
113
|
-
# * `
|
113
|
+
# * `linear16` - Uncompressed 16-bit signed little-endian samples.
|
114
114
|
# (LINEAR16)
|
115
115
|
# * `flac` - The [Free Lossless Audio
|
116
116
|
# Codec](http://flac.sourceforge.net/documentation.html) encoding.
|
@@ -152,7 +152,7 @@ module Google
|
|
152
152
|
# speech = Google::Cloud::Speech.new
|
153
153
|
#
|
154
154
|
# audio = speech.audio "path/to/audio.raw",
|
155
|
-
# encoding: :
|
155
|
+
# encoding: :linear16,
|
156
156
|
# language: "en-US",
|
157
157
|
# sample_rate: 16000
|
158
158
|
#
|
@@ -162,7 +162,7 @@ module Google
|
|
162
162
|
# speech = Google::Cloud::Speech.new
|
163
163
|
#
|
164
164
|
# audio = speech.audio "gs://bucket-name/path/to/audio.raw",
|
165
|
-
# encoding: :
|
165
|
+
# encoding: :linear16,
|
166
166
|
# language: "en-US",
|
167
167
|
# sample_rate: 16000
|
168
168
|
#
|
@@ -179,7 +179,7 @@ module Google
|
|
179
179
|
# speech = Google::Cloud::Speech.new
|
180
180
|
#
|
181
181
|
# audio = speech.audio file,
|
182
|
-
# encoding: :
|
182
|
+
# encoding: :linear16,
|
183
183
|
# language: "en-US",
|
184
184
|
# sample_rate: 16000
|
185
185
|
#
|
@@ -222,7 +222,7 @@ module Google
|
|
222
222
|
#
|
223
223
|
# Acceptable values are:
|
224
224
|
#
|
225
|
-
# * `
|
225
|
+
# * `linear16` - Uncompressed 16-bit signed little-endian samples.
|
226
226
|
# (LINEAR16)
|
227
227
|
# * `flac` - The [Free Lossless Audio
|
228
228
|
# Codec](http://flac.sourceforge.net/documentation.html) encoding.
|
@@ -275,7 +275,7 @@ module Google
|
|
275
275
|
# speech = Google::Cloud::Speech.new
|
276
276
|
#
|
277
277
|
# results = speech.recognize "path/to/audio.raw",
|
278
|
-
# encoding: :
|
278
|
+
# encoding: :linear16,
|
279
279
|
# language: "en-US",
|
280
280
|
# sample_rate: 16000
|
281
281
|
#
|
@@ -285,7 +285,7 @@ module Google
|
|
285
285
|
# speech = Google::Cloud::Speech.new
|
286
286
|
#
|
287
287
|
# results = speech.recognize "gs://bucket-name/path/to/audio.raw",
|
288
|
-
# encoding: :
|
288
|
+
# encoding: :linear16,
|
289
289
|
# language: "en-US",
|
290
290
|
# sample_rate: 16000
|
291
291
|
#
|
@@ -302,7 +302,7 @@ module Google
|
|
302
302
|
# speech = Google::Cloud::Speech.new
|
303
303
|
#
|
304
304
|
# results = speech.recognize file,
|
305
|
-
# encoding: :
|
305
|
+
# encoding: :linear16,
|
306
306
|
# language: "en-US",
|
307
307
|
# sample_rate: 16000,
|
308
308
|
# max_alternatives: 10
|
@@ -344,7 +344,7 @@ module Google
|
|
344
344
|
#
|
345
345
|
# Acceptable values are:
|
346
346
|
#
|
347
|
-
# * `
|
347
|
+
# * `linear16` - Uncompressed 16-bit signed little-endian samples.
|
348
348
|
# (LINEAR16)
|
349
349
|
# * `flac` - The [Free Lossless Audio
|
350
350
|
# Codec](http://flac.sourceforge.net/documentation.html) encoding.
|
@@ -398,7 +398,7 @@ module Google
|
|
398
398
|
# speech = Google::Cloud::Speech.new
|
399
399
|
#
|
400
400
|
# op = speech.process "path/to/audio.raw",
|
401
|
-
# encoding: :
|
401
|
+
# encoding: :linear16,
|
402
402
|
# language: "en-US",
|
403
403
|
# sample_rate: 16000
|
404
404
|
#
|
@@ -411,9 +411,9 @@ module Google
|
|
411
411
|
# speech = Google::Cloud::Speech.new
|
412
412
|
#
|
413
413
|
# op = speech.process "gs://bucket-name/path/to/audio.raw",
|
414
|
-
#
|
415
|
-
#
|
416
|
-
#
|
414
|
+
# encoding: :linear16,
|
415
|
+
# language: "en-US",
|
416
|
+
# sample_rate: 16000
|
417
417
|
#
|
418
418
|
# op.done? #=> false
|
419
419
|
# op.reload!
|
@@ -431,10 +431,10 @@ module Google
|
|
431
431
|
# speech = Google::Cloud::Speech.new
|
432
432
|
#
|
433
433
|
# op = speech.process file,
|
434
|
-
#
|
435
|
-
#
|
436
|
-
#
|
437
|
-
#
|
434
|
+
# encoding: :linear16,
|
435
|
+
# language: "en-US",
|
436
|
+
# sample_rate: 16000,
|
437
|
+
# max_alternatives: 10
|
438
438
|
#
|
439
439
|
# op.done? #=> false
|
440
440
|
# op.reload!
|
@@ -469,7 +469,7 @@ module Google
|
|
469
469
|
#
|
470
470
|
# Acceptable values are:
|
471
471
|
#
|
472
|
-
# * `
|
472
|
+
# * `linear16` - Uncompressed 16-bit signed little-endian samples.
|
473
473
|
# (LINEAR16)
|
474
474
|
# * `flac` - The [Free Lossless Audio
|
475
475
|
# Codec](http://flac.sourceforge.net/documentation.html) encoding.
|
@@ -530,7 +530,7 @@ module Google
|
|
530
530
|
#
|
531
531
|
# speech = Google::Cloud::Speech.new
|
532
532
|
#
|
533
|
-
# stream = speech.stream encoding: :
|
533
|
+
# stream = speech.stream encoding: :linear16,
|
534
534
|
# language: "en-US",
|
535
535
|
# sample_rate: 16000
|
536
536
|
#
|
@@ -623,7 +623,7 @@ module Google
|
|
623
623
|
end
|
624
624
|
|
625
625
|
def convert_encoding encoding
|
626
|
-
mapping = {
|
626
|
+
mapping = { linear: :LINEAR16, linear16: :LINEAR16,
|
627
627
|
flac: :FLAC, mulaw: :MULAW, amr: :AMR, amr_wb: :AMR_WB,
|
628
628
|
ogg_opus: :OGG_OPUS, speex: :SPEEX_WITH_HEADER_BYTE }
|
629
629
|
mapping[encoding] || encoding
|
@@ -46,7 +46,7 @@ module Google
|
|
46
46
|
# speech = Google::Cloud::Speech.new
|
47
47
|
#
|
48
48
|
# audio = speech.audio "path/to/audio.raw",
|
49
|
-
# encoding: :
|
49
|
+
# encoding: :linear16,
|
50
50
|
# language: "en-US",
|
51
51
|
# sample_rate: 16000
|
52
52
|
# results = audio.recognize
|
@@ -96,7 +96,7 @@ module Google
|
|
96
96
|
# speech = Google::Cloud::Speech.new
|
97
97
|
#
|
98
98
|
# audio = speech.audio "path/to/audio.raw",
|
99
|
-
# encoding: :
|
99
|
+
# encoding: :linear16,
|
100
100
|
# language: "en-US",
|
101
101
|
# sample_rate: 16000
|
102
102
|
# results = audio.recognize
|
@@ -154,7 +154,7 @@ module Google
|
|
154
154
|
#
|
155
155
|
# speech = Google::Cloud::Speech.new
|
156
156
|
#
|
157
|
-
# stream = speech.stream encoding: :
|
157
|
+
# stream = speech.stream encoding: :linear16,
|
158
158
|
# language: "en-US",
|
159
159
|
# sample_rate: 16000
|
160
160
|
#
|
@@ -31,7 +31,7 @@ module Google
|
|
31
31
|
#
|
32
32
|
# speech = Google::Cloud::Speech.new
|
33
33
|
#
|
34
|
-
# stream = speech.stream encoding: :
|
34
|
+
# stream = speech.stream encoding: :linear16,
|
35
35
|
# language: "en-US",
|
36
36
|
# sample_rate: 16000
|
37
37
|
#
|
@@ -96,7 +96,7 @@ module Google
|
|
96
96
|
#
|
97
97
|
# audio = speech.audio "path/to/audio.raw"
|
98
98
|
#
|
99
|
-
# stream = speech.stream encoding: :
|
99
|
+
# stream = speech.stream encoding: :linear16,
|
100
100
|
# language: "en-US",
|
101
101
|
# sample_rate: 16000
|
102
102
|
#
|
@@ -155,7 +155,7 @@ module Google
|
|
155
155
|
#
|
156
156
|
# speech = Google::Cloud::Speech.new
|
157
157
|
#
|
158
|
-
# stream = speech.stream encoding: :
|
158
|
+
# stream = speech.stream encoding: :linear16,
|
159
159
|
# language: "en-US",
|
160
160
|
# sample_rate: 16000
|
161
161
|
#
|
@@ -189,7 +189,7 @@ module Google
|
|
189
189
|
#
|
190
190
|
# speech = Google::Cloud::Speech.new
|
191
191
|
#
|
192
|
-
# stream = speech.stream encoding: :
|
192
|
+
# stream = speech.stream encoding: :linear16,
|
193
193
|
# language: "en-US",
|
194
194
|
# sample_rate: 16000
|
195
195
|
#
|
@@ -224,7 +224,7 @@ module Google
|
|
224
224
|
#
|
225
225
|
# speech = Google::Cloud::Speech.new
|
226
226
|
#
|
227
|
-
# stream = speech.stream encoding: :
|
227
|
+
# stream = speech.stream encoding: :linear16,
|
228
228
|
# language: "en-US",
|
229
229
|
# sample_rate: 16000
|
230
230
|
#
|
@@ -266,7 +266,7 @@ module Google
|
|
266
266
|
#
|
267
267
|
# speech = Google::Cloud::Speech.new
|
268
268
|
#
|
269
|
-
# stream = speech.stream encoding: :
|
269
|
+
# stream = speech.stream encoding: :linear16,
|
270
270
|
# language: "en-US",
|
271
271
|
# sample_rate: 16000
|
272
272
|
#
|
@@ -312,7 +312,7 @@ module Google
|
|
312
312
|
#
|
313
313
|
# speech = Google::Cloud::Speech.new
|
314
314
|
#
|
315
|
-
# stream = speech.stream encoding: :
|
315
|
+
# stream = speech.stream encoding: :linear16,
|
316
316
|
# language: "en-US",
|
317
317
|
# sample_rate: 16000
|
318
318
|
#
|
@@ -357,7 +357,7 @@ module Google
|
|
357
357
|
#
|
358
358
|
# speech = Google::Cloud::Speech.new
|
359
359
|
#
|
360
|
-
# stream = speech.stream encoding: :
|
360
|
+
# stream = speech.stream encoding: :linear16,
|
361
361
|
# language: "en-US",
|
362
362
|
# sample_rate: 16000
|
363
363
|
#
|
@@ -404,7 +404,7 @@ module Google
|
|
404
404
|
#
|
405
405
|
# speech = Google::Cloud::Speech.new
|
406
406
|
#
|
407
|
-
# stream = speech.stream encoding: :
|
407
|
+
# stream = speech.stream encoding: :linear16,
|
408
408
|
# language: "en-US",
|
409
409
|
# sample_rate: 16000,
|
410
410
|
# utterance: true
|
@@ -449,7 +449,7 @@ module Google
|
|
449
449
|
#
|
450
450
|
# speech = Google::Cloud::Speech.new
|
451
451
|
#
|
452
|
-
# stream = speech.stream encoding: :
|
452
|
+
# stream = speech.stream encoding: :linear16,
|
453
453
|
# language: "en-US",
|
454
454
|
# sample_rate: 16000
|
455
455
|
#
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-speech
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.25.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Moore
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-
|
12
|
+
date: 2017-07-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: google-cloud-core
|
@@ -194,7 +194,7 @@ files:
|
|
194
194
|
- lib/google/cloud/speech/v1/speech_client.rb
|
195
195
|
- lib/google/cloud/speech/v1/speech_client_config.json
|
196
196
|
- lib/google/cloud/speech/version.rb
|
197
|
-
homepage:
|
197
|
+
homepage: https://github.com/GoogleCloudPlatform/google-cloud-ruby/tree/master/google-cloud-speech
|
198
198
|
licenses:
|
199
199
|
- Apache-2.0
|
200
200
|
metadata: {}
|
@@ -214,7 +214,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
214
214
|
version: '0'
|
215
215
|
requirements: []
|
216
216
|
rubyforge_project:
|
217
|
-
rubygems_version: 2.6.
|
217
|
+
rubygems_version: 2.6.12
|
218
218
|
signing_key:
|
219
219
|
specification_version: 4
|
220
220
|
summary: API Client library for Google Cloud Speech API
|