tencentcloud-sdk-tts 3.0.539 → 3.0.541

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: 497618f1ccd525874a8c3ab39f3073c67f35170b
4
- data.tar.gz: 9fc6402ba2b992109388910c5b9174793794ed93
3
+ metadata.gz: 1da68f1cbe3439b5c8a06541d7e5ba2c7b4f016c
4
+ data.tar.gz: 009f6b3af09929643f2cb0fb9bebfe54aab9b1cf
5
5
  SHA512:
6
- metadata.gz: 22ad9fa37ebee4308f183f85bfc00c2a6130c759b4e880f2ac66b39a921075c0510577bc49b1646836d140bd54a1737cc08e55ccf9ff00d9b0e37980ea35ef2d
7
- data.tar.gz: 7f7d443578c12da58926043a028065206bc816e1c30a5cddd3a8ce60101c4a1ddfd7599ea24096a1a29e39d8bf7d570f51b56bfeaa34de3d7eaf76437fc8ebfc
6
+ metadata.gz: 6c249dfe82668905af45351a109de32f6c1786b8bfcf0bf9b1a51cb4fb4b7e77accae68ed53c9eb6fcded2b54a23afe00e627b57754abe36c0de78e2c2f3f328
7
+ data.tar.gz: a300f40316fc5804c0c15c002a8e84adb7a6d723295c6b85895b0a2f1b055f90e5fe54a4c9dbce4f73c0a6113d605f7343d8f8a2b998b7ca7848b88a9eb1c34f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.539
1
+ 3.0.541
@@ -199,15 +199,19 @@ module TencentCloud
199
199
  # @type BeginIndex: Integer
200
200
  # @param EndIndex: 该字在整句中的结束位置,从0开始。
201
201
  # @type EndIndex: Integer
202
+ # @param Phoneme: 该字的音素
203
+ # 注意:此字段可能返回 null,表示取不到有效值。
204
+ # @type Phoneme: String
202
205
 
203
- attr_accessor :Text, :BeginTime, :EndTime, :BeginIndex, :EndIndex
206
+ attr_accessor :Text, :BeginTime, :EndTime, :BeginIndex, :EndIndex, :Phoneme
204
207
 
205
- def initialize(text=nil, begintime=nil, endtime=nil, beginindex=nil, endindex=nil)
208
+ def initialize(text=nil, begintime=nil, endtime=nil, beginindex=nil, endindex=nil, phoneme=nil)
206
209
  @Text = text
207
210
  @BeginTime = begintime
208
211
  @EndTime = endtime
209
212
  @BeginIndex = beginindex
210
213
  @EndIndex = endindex
214
+ @Phoneme = phoneme
211
215
  end
212
216
 
213
217
  def deserialize(params)
@@ -216,6 +220,7 @@ module TencentCloud
216
220
  @EndTime = params['EndTime']
217
221
  @BeginIndex = params['BeginIndex']
218
222
  @EndIndex = params['EndIndex']
223
+ @Phoneme = params['Phoneme']
219
224
  end
220
225
  end
221
226
 
@@ -228,7 +233,7 @@ module TencentCloud
228
233
  # @type SessionId: String
229
234
  # @param Volume: 音量大小,范围:[0,10],分别对应11个等级的音量,默认为0,代表正常音量。没有静音选项。
230
235
  # @type Volume: Float
231
- # @param Speed: 语速,范围:[-2,2],分别对应不同语速:<li>-2代表0.6倍</li><li>-1代表0.8倍</li><li>0代表1.0倍(默认)</li><li>1代表1.2倍</li><li>2代表1.5倍</li>如果需要更细化的语速,可以保留小数点后一位,例如0.5 1.1 1.8等。<br>
236
+ # @param Speed: 语速,范围:[-2,6],分别对应不同语速:<li>-2代表0.6倍</li><li>-1代表0.8倍</li><li>0代表1.0倍(默认)</li><li>1代表1.2倍</li><li>2代表1.5倍</li><li>6代表2.5倍</li>如果需要更细化的语速,可以保留小数点后一位,例如0.5 1.1 1.8等。<br>
232
237
  # @type Speed: Float
233
238
  # @param ProjectId: 项目id,用户自定义,默认为0。
234
239
  # @type ProjectId: Integer
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tts
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.539
4
+ version: 3.0.541
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-28 00:00:00.000000000 Z
11
+ date: 2023-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common