tencentcloud-sdk-python-mps 3.0.1068__tar.gz → 3.0.1073__tar.gz

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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-mps-3.0.1068 → tencentcloud-sdk-python-mps-3.0.1073}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-mps-3.0.1068 → tencentcloud-sdk-python-mps-3.0.1073}/setup.py +1 -1
  3. {tencentcloud-sdk-python-mps-3.0.1068 → tencentcloud-sdk-python-mps-3.0.1073}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-mps-3.0.1068 → tencentcloud-sdk-python-mps-3.0.1073}/tencentcloud/mps/v20190612/models.py +60 -1
  5. {tencentcloud-sdk-python-mps-3.0.1068 → tencentcloud-sdk-python-mps-3.0.1073}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-mps-3.0.1073/tencentcloud_sdk_python_mps.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-mps-3.0.1068/tencentcloud_sdk_python_mps.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-mps-3.0.1068 → tencentcloud-sdk-python-mps-3.0.1073}/README.rst +0 -0
  9. {tencentcloud-sdk-python-mps-3.0.1068 → tencentcloud-sdk-python-mps-3.0.1073}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-mps-3.0.1068 → tencentcloud-sdk-python-mps-3.0.1073}/tencentcloud/mps/__init__.py +0 -0
  11. {tencentcloud-sdk-python-mps-3.0.1068 → tencentcloud-sdk-python-mps-3.0.1073}/tencentcloud/mps/v20190612/__init__.py +0 -0
  12. {tencentcloud-sdk-python-mps-3.0.1068 → tencentcloud-sdk-python-mps-3.0.1073}/tencentcloud/mps/v20190612/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-mps-3.0.1068 → tencentcloud-sdk-python-mps-3.0.1073}/tencentcloud/mps/v20190612/mps_client.py +0 -0
  14. {tencentcloud-sdk-python-mps-3.0.1068 → tencentcloud-sdk-python-mps-3.0.1073}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-mps-3.0.1068 → tencentcloud-sdk-python-mps-3.0.1073}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-mps-3.0.1068 → tencentcloud-sdk-python-mps-3.0.1073}/tencentcloud_sdk_python_mps.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-mps
3
- Version: 3.0.1068
3
+ Version: 3.0.1073
4
4
  Summary: Tencent Cloud Mps SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-mps',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1068"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1073"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Mps SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1068'
17
+ __version__ = '3.0.1073'
@@ -3226,6 +3226,9 @@ class AiRecognitionTaskAsrFullTextResult(AbstractModel):
3226
3226
  :param _Output: 语音全文识别任务输出信息。
3227
3227
  注意:此字段可能返回 null,表示取不到有效值。
3228
3228
  :type Output: :class:`tencentcloud.mps.v20190612.models.AiRecognitionTaskAsrFullTextResultOutput`
3229
+ :param _Progress: 任务进度。
3230
+ 注意:此字段可能返回 null,表示取不到有效值。
3231
+ :type Progress: int
3229
3232
  """
3230
3233
  self._Status = None
3231
3234
  self._ErrCodeExt = None
@@ -3233,6 +3236,7 @@ class AiRecognitionTaskAsrFullTextResult(AbstractModel):
3233
3236
  self._Message = None
3234
3237
  self._Input = None
3235
3238
  self._Output = None
3239
+ self._Progress = None
3236
3240
 
3237
3241
  @property
3238
3242
  def Status(self):
@@ -3282,6 +3286,14 @@ class AiRecognitionTaskAsrFullTextResult(AbstractModel):
3282
3286
  def Output(self, Output):
3283
3287
  self._Output = Output
3284
3288
 
3289
+ @property
3290
+ def Progress(self):
3291
+ return self._Progress
3292
+
3293
+ @Progress.setter
3294
+ def Progress(self, Progress):
3295
+ self._Progress = Progress
3296
+
3285
3297
 
3286
3298
  def _deserialize(self, params):
3287
3299
  self._Status = params.get("Status")
@@ -3294,6 +3306,7 @@ class AiRecognitionTaskAsrFullTextResult(AbstractModel):
3294
3306
  if params.get("Output") is not None:
3295
3307
  self._Output = AiRecognitionTaskAsrFullTextResultOutput()
3296
3308
  self._Output._deserialize(params.get("Output"))
3309
+ self._Progress = params.get("Progress")
3297
3310
  memeber_set = set(params.keys())
3298
3311
  for name, value in vars(self).items():
3299
3312
  property_name = name[1:]
@@ -5092,6 +5105,9 @@ class AiRecognitionTaskTransTextResult(AbstractModel):
5092
5105
  :param _Output: 翻译任务输出信息。
5093
5106
  注意:此字段可能返回 null,表示取不到有效值。
5094
5107
  :type Output: :class:`tencentcloud.mps.v20190612.models.AiRecognitionTaskTransTextResultOutput`
5108
+ :param _Progress: 任务进度。
5109
+ 注意:此字段可能返回 null,表示取不到有效值。
5110
+ :type Progress: int
5095
5111
  """
5096
5112
  self._Status = None
5097
5113
  self._ErrCodeExt = None
@@ -5099,6 +5115,7 @@ class AiRecognitionTaskTransTextResult(AbstractModel):
5099
5115
  self._Message = None
5100
5116
  self._Input = None
5101
5117
  self._Output = None
5118
+ self._Progress = None
5102
5119
 
5103
5120
  @property
5104
5121
  def Status(self):
@@ -5148,6 +5165,14 @@ class AiRecognitionTaskTransTextResult(AbstractModel):
5148
5165
  def Output(self, Output):
5149
5166
  self._Output = Output
5150
5167
 
5168
+ @property
5169
+ def Progress(self):
5170
+ return self._Progress
5171
+
5172
+ @Progress.setter
5173
+ def Progress(self, Progress):
5174
+ self._Progress = Progress
5175
+
5151
5176
 
5152
5177
  def _deserialize(self, params):
5153
5178
  self._Status = params.get("Status")
@@ -5160,6 +5185,7 @@ class AiRecognitionTaskTransTextResult(AbstractModel):
5160
5185
  if params.get("Output") is not None:
5161
5186
  self._Output = AiRecognitionTaskTransTextResultOutput()
5162
5187
  self._Output._deserialize(params.get("Output"))
5188
+ self._Progress = params.get("Progress")
5163
5189
  memeber_set = set(params.keys())
5164
5190
  for name, value in vars(self).items():
5165
5191
  property_name = name[1:]
@@ -8584,6 +8610,8 @@ class AudioTemplateInfo(AbstractModel):
8584
8610
  def __init__(self):
8585
8611
  r"""
8586
8612
  :param _Codec: 音频流的编码格式。
8613
+ 当不需要对音频进行转码时,可选值为:
8614
+ <li>copy。</li>
8587
8615
  当外层参数 Container 为 mp3 时,可选值为:
8588
8616
  <li>libmp3lame。</li>
8589
8617
  当外层参数 Container 为 ogg 或 flac 时,可选值为:
@@ -8594,7 +8622,8 @@ class AudioTemplateInfo(AbstractModel):
8594
8622
  <li>ac3。</li>
8595
8623
  当外层参数 Container 为 mp4 或 flv 时,可选值为:
8596
8624
  <li>libfdk_aac:更适合 mp4;</li>
8597
- <li>libmp3lame:更适合 flv。</li>
8625
+ <li>libmp3lame:更适合 flv;</li>
8626
+ <li>mp2。</li>
8598
8627
  当外层参数 Container 为 hls 时,可选值为:
8599
8628
  <li>libfdk_aac;</li>
8600
8629
  <li>libmp3lame。</li>
@@ -8677,6 +8706,8 @@ class AudioTemplateInfoForUpdate(AbstractModel):
8677
8706
  def __init__(self):
8678
8707
  r"""
8679
8708
  :param _Codec: 音频流的编码格式。
8709
+ 当不需要对音频进行转码时,可选值为:
8710
+ <li>copy。</li>
8680
8711
  当外层参数 Container 为 mp3 时,可选值为:
8681
8712
  <li>libmp3lame。</li>
8682
8713
  当外层参数 Container 为 ogg 或 flac 时,可选值为:
@@ -9434,10 +9465,15 @@ class ComposeAudioStream(AbstractModel):
9434
9465
  <li>1:单声道 。</li>
9435
9466
  <li>2:双声道(默认)。</li>
9436
9467
  :type AudioChannel: int
9468
+ :param _Bitrate: 参考码率,单位 kbps,范围:26~10000。
9469
+ 如果设置,编码时会尽量按该码率进行编码。
9470
+ 如果不设置,服务将根据音频参数自动采用合适的码率。
9471
+ :type Bitrate: int
9437
9472
  """
9438
9473
  self._Codec = None
9439
9474
  self._SampleRate = None
9440
9475
  self._AudioChannel = None
9476
+ self._Bitrate = None
9441
9477
 
9442
9478
  @property
9443
9479
  def Codec(self):
@@ -9463,11 +9499,20 @@ class ComposeAudioStream(AbstractModel):
9463
9499
  def AudioChannel(self, AudioChannel):
9464
9500
  self._AudioChannel = AudioChannel
9465
9501
 
9502
+ @property
9503
+ def Bitrate(self):
9504
+ return self._Bitrate
9505
+
9506
+ @Bitrate.setter
9507
+ def Bitrate(self, Bitrate):
9508
+ self._Bitrate = Bitrate
9509
+
9466
9510
 
9467
9511
  def _deserialize(self, params):
9468
9512
  self._Codec = params.get("Codec")
9469
9513
  self._SampleRate = params.get("SampleRate")
9470
9514
  self._AudioChannel = params.get("AudioChannel")
9515
+ self._Bitrate = params.get("Bitrate")
9471
9516
  memeber_set = set(params.keys())
9472
9517
  for name, value in vars(self).items():
9473
9518
  property_name = name[1:]
@@ -10838,9 +10883,14 @@ class ComposeVideoStream(AbstractModel):
10838
10883
  :param _Fps: 视频帧率,取值范围:[0, 60],单位:Hz。
10839
10884
  默认值:0,表示和第一个视频帧率一致。
10840
10885
  :type Fps: int
10886
+ :param _Bitrate: 参考码率,单位 kbps,范围:50~35000。
10887
+ 如果设置,编码时会尽量按该码率进行编码。
10888
+ 如果不设置,服务将通过画面复杂度自动采用合适的码率。
10889
+ :type Bitrate: int
10841
10890
  """
10842
10891
  self._Codec = None
10843
10892
  self._Fps = None
10893
+ self._Bitrate = None
10844
10894
 
10845
10895
  @property
10846
10896
  def Codec(self):
@@ -10858,10 +10908,19 @@ class ComposeVideoStream(AbstractModel):
10858
10908
  def Fps(self, Fps):
10859
10909
  self._Fps = Fps
10860
10910
 
10911
+ @property
10912
+ def Bitrate(self):
10913
+ return self._Bitrate
10914
+
10915
+ @Bitrate.setter
10916
+ def Bitrate(self, Bitrate):
10917
+ self._Bitrate = Bitrate
10918
+
10861
10919
 
10862
10920
  def _deserialize(self, params):
10863
10921
  self._Codec = params.get("Codec")
10864
10922
  self._Fps = params.get("Fps")
10923
+ self._Bitrate = params.get("Bitrate")
10865
10924
  memeber_set = set(params.keys())
10866
10925
  for name, value in vars(self).items():
10867
10926
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-mps
3
- Version: 3.0.1068
3
+ Version: 3.0.1073
4
4
  Summary: Tencent Cloud Mps SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1073
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1068