tencentcloud-sdk-nodejs 4.0.281 → 4.0.282

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.
@@ -35,6 +35,21 @@ export interface AudioStreamInfo {
35
35
  Codec: string
36
36
  }
37
37
 
38
+ /**
39
+ * 分类删除事件。
40
+ */
41
+ export interface ClassDeletedEvent {
42
+ /**
43
+ * 删除的分类归属。
44
+ */
45
+ Owner: Entity
46
+
47
+ /**
48
+ * 删除的分类路径列表。
49
+ */
50
+ ClassPathSet: Array<string>
51
+ }
52
+
38
53
  /**
39
54
  * ModifyMaterial返回参数结构体
40
55
  */
@@ -80,6 +95,16 @@ export interface ExportVideoByVideoSegmentationDataResponse {
80
95
  RequestId?: string
81
96
  }
82
97
 
98
+ /**
99
+ * 媒体删除事件。
100
+ */
101
+ export interface MaterialDeletedEvent {
102
+ /**
103
+ * 删除的媒体 Id 列表。
104
+ */
105
+ MaterialIdSet: Array<string>
106
+ }
107
+
83
108
  /**
84
109
  * ImportMaterial返回参数结构体
85
110
  */
@@ -692,50 +717,23 @@ export interface RevokeResourceAuthorizationResponse {
692
717
  }
693
718
 
694
719
  /**
695
- * HandleStreamConnectProject请求参数结构体
720
+ * DescribeTasks返回参数结构体
696
721
  */
697
- export interface HandleStreamConnectProjectRequest {
698
- /**
699
- * 平台 Id,指定访问的平台。关于平台概念,请参见文档 [平台](https://cloud.tencent.com/document/product/1156/43767)。
700
- */
701
- Platform: string
702
-
703
- /**
704
- * 云转推项目 Id 。
705
- */
706
- ProjectId: string
707
-
708
- /**
709
- * 请参考 [操作类型](#Operation)
710
- */
711
- Operation: string
712
-
713
- /**
714
- * 转推输入源操作参数。具体操作方式详见 [操作类型](#Operation) 及下文示例。
715
- */
716
- InputInfo?: StreamInputInfo
717
-
718
- /**
719
- * 主备输入源标识,取值有:
720
- <li> Main :主源;</li>
721
- <li> Backup :备源。</li>
722
- */
723
- InputEndpoint?: string
724
-
722
+ export interface DescribeTasksResponse {
725
723
  /**
726
- * 转推输出源操作参数。具体操作方式详见 [操作类型](#Operation) 及下文示例。
724
+ * 符合搜索条件的记录总数。
727
725
  */
728
- OutputInfo?: StreamConnectOutput
726
+ TotalCount: number
729
727
 
730
728
  /**
731
- * 云转推当前预计结束时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。具体操作方式详见 [操作类型](#Operation) 及下文示例。
729
+ * 任务基础信息列表。
732
730
  */
733
- CurrentStopTime?: string
731
+ TaskBaseInfoSet: Array<TaskBaseInfo>
734
732
 
735
733
  /**
736
- * 操作者。如不填,默认为 `cmeid_system`,表示平台管理员操作,可以操作所有云转推项目。如果指定操作者,则操作者必须为项目所有者。
734
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
737
735
  */
738
- Operator?: string
736
+ RequestId?: string
739
737
  }
740
738
 
741
739
  /**
@@ -921,6 +919,49 @@ export interface DescribeTeamsRequest {
921
919
  Limit?: number
922
920
  }
923
921
 
922
+ /**
923
+ * 平台信息。
924
+ */
925
+ export interface PlatformInfo {
926
+ /**
927
+ * 平台标识。
928
+ */
929
+ Platform: string
930
+
931
+ /**
932
+ * 平台描述。
933
+ */
934
+ Description: string
935
+
936
+ /**
937
+ * 云点播子应用 Id。
938
+ */
939
+ VodSubAppId: number
940
+
941
+ /**
942
+ * 平台绑定的 license Id。
943
+ */
944
+ LicenseId: string
945
+
946
+ /**
947
+ * 平台状态,可取值为:
948
+ <li>Normal:正常,可使用。;</li>
949
+ <li>Stopped:已停用,暂无法使用;</li>
950
+ <li>Expired:已过期,需要重新购买会员包。</li>
951
+ */
952
+ Status: string
953
+
954
+ /**
955
+ * 创建时间,格式按照 ISO 8601 标准表示。
956
+ */
957
+ CreateTime: string
958
+
959
+ /**
960
+ * 更新时间,格式按照 ISO 8601 标准表示。
961
+ */
962
+ UpdateTime: string
963
+ }
964
+
924
965
  /**
925
966
  * 链接类型的素材信息
926
967
  */
@@ -1479,15 +1520,17 @@ export interface StorageNewFileCreatedEvent {
1479
1520
  MaterialId: string
1480
1521
 
1481
1522
  /**
1482
- * 操作者 Id
1523
+ * 操作者 Id。(废弃,请勿使用)
1483
1524
  */
1484
1525
  Operator: string
1485
1526
 
1486
1527
  /**
1487
- * 操作类型,可取值为:
1488
- <li>Upload:上传;</li>
1528
+ * 操作类型,可取值有:
1529
+ <li>Upload:本地上传;</li>
1489
1530
  <li>PullUpload:拉取上传;</li>
1490
- <li>Record:直播录制。</li>
1531
+ <li>VideoEdit:视频剪辑;</li>
1532
+ <li>LiveStreamClip:直播流剪辑;</li>
1533
+ <li>LiveStreamRecord:直播流录制。</li>
1491
1534
  */
1492
1535
  OperationType: string
1493
1536
 
@@ -1500,6 +1543,16 @@ export interface StorageNewFileCreatedEvent {
1500
1543
  * 媒体分类路径。
1501
1544
  */
1502
1545
  ClassPath: string
1546
+
1547
+ /**
1548
+ * 生成文件的任务 Id。当生成新文件是拉取上传、视频剪辑、直播流剪辑时为任务 Id。
1549
+ */
1550
+ TaskId: string
1551
+
1552
+ /**
1553
+ * 来源上下文信息。视频剪辑生成新文件时此字段为项目 Id;直播流剪辑或者直播流录制生成新文件则为原始流地址。
1554
+ */
1555
+ SourceContext: string
1503
1556
  }
1504
1557
 
1505
1558
  /**
@@ -1536,16 +1589,6 @@ export interface MediaTrack {
1536
1589
  TrackItems: Array<MediaTrackItem>
1537
1590
  }
1538
1591
 
1539
- /**
1540
- * DeleteVideoEncodingPreset返回参数结构体
1541
- */
1542
- export interface DeleteVideoEncodingPresetResponse {
1543
- /**
1544
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1545
- */
1546
- RequestId?: string
1547
- }
1548
-
1549
1592
  /**
1550
1593
  * DeleteLoginStatus返回参数结构体
1551
1594
  */
@@ -1747,46 +1790,28 @@ export interface EmptyTrackItem {
1747
1790
  }
1748
1791
 
1749
1792
  /**
1750
- * 平台信息。
1793
+ * 分类移动事件。
1751
1794
  */
1752
- export interface PlatformInfo {
1753
- /**
1754
- * 平台标识。
1755
- */
1756
- Platform: string
1757
-
1795
+ export interface ClassMovedEvent {
1758
1796
  /**
1759
- * 平台描述。
1797
+ * 源分类归属。
1760
1798
  */
1761
- Description: string
1762
-
1763
- /**
1764
- * 云点播子应用 Id。
1765
- */
1766
- VodSubAppId: number
1799
+ SourceOwner: Entity
1767
1800
 
1768
1801
  /**
1769
- * 平台绑定的 license Id。
1802
+ * 源分类路径列表。
1770
1803
  */
1771
- LicenseId: string
1772
-
1773
- /**
1774
- * 平台状态,可取值为:
1775
- <li>Normal:正常,可使用。;</li>
1776
- <li>Stopped:已停用,暂无法使用;</li>
1777
- <li>Expired:已过期,需要重新购买会员包。</li>
1778
- */
1779
- Status: string
1804
+ SourceClassPathSet: Array<string>
1780
1805
 
1781
1806
  /**
1782
- * 创建时间,格式按照 ISO 8601 标准表示。
1807
+ * 目标分类归属。
1783
1808
  */
1784
- CreateTime: string
1809
+ DestinationOwner: Entity
1785
1810
 
1786
1811
  /**
1787
- * 更新时间,格式按照 ISO 8601 标准表示。
1812
+ * 目标分类归属。
1788
1813
  */
1789
- UpdateTime: string
1814
+ DestinationClassPath: string
1790
1815
  }
1791
1816
 
1792
1817
  /**
@@ -1804,6 +1829,26 @@ export interface DeleteVideoEncodingPresetRequest {
1804
1829
  Id: number
1805
1830
  }
1806
1831
 
1832
+ /**
1833
+ * 媒体导入事件
1834
+ */
1835
+ export interface MaterialImportedEvent {
1836
+ /**
1837
+ * 导入的媒体信息列表。
1838
+ */
1839
+ MediaInfoSet: Array<ImportMediaInfo>
1840
+
1841
+ /**
1842
+ * 媒体归属。
1843
+ */
1844
+ Owner: Entity
1845
+
1846
+ /**
1847
+ * 媒体分类路径。
1848
+ */
1849
+ ClassPath: string
1850
+ }
1851
+
1807
1852
  /**
1808
1853
  * ModifyVideoEncodingPreset返回参数结构体
1809
1854
  */
@@ -1969,6 +2014,36 @@ export interface VideoEncodingPresetVideoSetting {
1969
2014
  Bitrate?: number
1970
2015
  }
1971
2016
 
2017
+ /**
2018
+ * 雪碧图
2019
+ */
2020
+ export interface MediaImageSpriteInfo {
2021
+ /**
2022
+ * 雪碧图小图的高度。
2023
+ */
2024
+ Height: number
2025
+
2026
+ /**
2027
+ * 雪碧图小图的宽度。
2028
+ */
2029
+ Width: number
2030
+
2031
+ /**
2032
+ * 雪碧图小图的总数量。
2033
+ */
2034
+ TotalCount: number
2035
+
2036
+ /**
2037
+ * 截取雪碧图输出的地址。
2038
+ */
2039
+ ImageUrlSet: Array<string>
2040
+
2041
+ /**
2042
+ * 雪碧图子图位置与时间关系的 WebVtt 文件地址。WebVtt 文件表明了各个雪碧图小图对应的时间点,以及在雪碧大图里的坐标位置,一般被播放器用于实现预览。
2043
+ */
2044
+ WebVttUrl: string
2045
+ }
2046
+
1972
2047
  /**
1973
2048
  * DeleteClass请求参数结构体
1974
2049
  */
@@ -2098,6 +2173,36 @@ export interface CreateVideoEncodingPresetResponse {
2098
2173
  RequestId?: string
2099
2174
  }
2100
2175
 
2176
+ /**
2177
+ * 视频编码配置的视频设置更新信息
2178
+ */
2179
+ export interface VideoEncodingPresetVideoSettingForUpdate {
2180
+ /**
2181
+ * 视频短边尺寸,取值范围: [128, 4096],单位:px。
2182
+ 视频最后的分辨率,根据短边尺寸和宽高比进行计算。
2183
+ 例:如果项目的宽高比是 16:9 :
2184
+ <li>短边尺寸为 1080,则导出视频的分辨率为 1920 * 1080。</li>
2185
+ <li>短边尺寸为 720,则导出视频的分辨率为 1280 * 720。</li>
2186
+ 如果项目的宽高比是 9:16 :
2187
+ <li>短边尺寸为 1080,则导出视频的分辨率为 1080 * 1920。</li>
2188
+ <li>短边尺寸为 720,则导出视频的分辨率为 720 * 1280。</li>
2189
+ 不填则不修改。
2190
+ */
2191
+ ShortEdge?: number
2192
+
2193
+ /**
2194
+ * 指定码率,单位 bps。当该参数为'0' 时则不强制限定码率。
2195
+ 不填则不修改。
2196
+ */
2197
+ Bitrate?: number
2198
+
2199
+ /**
2200
+ * 指定帧率。单位 Hz。
2201
+ 不填则不修改。
2202
+ */
2203
+ FrameRate?: number
2204
+ }
2205
+
2101
2206
  /**
2102
2207
  * GrantResourceAuthorization返回参数结构体
2103
2208
  */
@@ -2626,33 +2731,33 @@ export interface ModifyTeamMemberRequest {
2626
2731
  }
2627
2732
 
2628
2733
  /**
2629
- * 视频编码配置的视频设置更新信息
2734
+ * 媒体移动事件
2630
2735
  */
2631
- export interface VideoEncodingPresetVideoSettingForUpdate {
2736
+ export interface MaterialMovedEvent {
2632
2737
  /**
2633
- * 视频短边尺寸,取值范围: [128, 4096],单位:px。
2634
- 视频最后的分辨率,根据短边尺寸和宽高比进行计算。
2635
- 例:如果项目的宽高比是 16:9 :
2636
- <li>短边尺寸为 1080,则导出视频的分辨率为 1920 * 1080。</li>
2637
- <li>短边尺寸为 720,则导出视频的分辨率为 1280 * 720。</li>
2638
- 如果项目的宽高比是 9:16 :
2639
- <li>短边尺寸为 1080,则导出视频的分辨率为 1080 * 1920。</li>
2640
- <li>短边尺寸为 720,则导出视频的分辨率为 720 * 1280。</li>
2641
- 不填则不修改。
2642
- */
2643
- ShortEdge?: number
2738
+ * 要移动的媒体 Id 列表。
2739
+ */
2740
+ MaterialIdSet: Array<string>
2644
2741
 
2645
2742
  /**
2646
- * 指定码率,单位 bps。当该参数为'0' 时则不强制限定码率。
2647
- 不填则不修改。
2648
- */
2649
- Bitrate?: number
2743
+ * 源媒体归属。
2744
+ */
2745
+ SourceOwner: Entity
2650
2746
 
2651
2747
  /**
2652
- * 指定帧率。单位 Hz。
2653
- 不填则不修改。
2654
- */
2655
- FrameRate?: number
2748
+ * 源媒体分类路径。
2749
+ */
2750
+ SourceClassPath: string
2751
+
2752
+ /**
2753
+ * 目标媒体分类归属。
2754
+ */
2755
+ DestinationOwner: Entity
2756
+
2757
+ /**
2758
+ * 目标媒体分类路径。
2759
+ */
2760
+ DestinationClassPath: string
2656
2761
  }
2657
2762
 
2658
2763
  /**
@@ -3167,14 +3272,9 @@ export interface ListMediaRequest {
3167
3272
  }
3168
3273
 
3169
3274
  /**
3170
- * HandleStreamConnectProject返回参数结构体
3275
+ * DeleteVideoEncodingPreset返回参数结构体
3171
3276
  */
3172
- export interface HandleStreamConnectProjectResponse {
3173
- /**
3174
- * 输入源推流地址,当 Operation 取值 AddInput 且 InputType 为 RtmpPush 类型时有效。
3175
- */
3176
- StreamInputRtmpPushUrl: string
3177
-
3277
+ export interface DeleteVideoEncodingPresetResponse {
3178
3278
  /**
3179
3279
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3180
3280
  */
@@ -3260,6 +3360,46 @@ export interface LiveStreamClipProjectInput {
3260
3360
  StreamRecordDuration: number
3261
3361
  }
3262
3362
 
3363
+ /**
3364
+ * 媒体更新事件。
3365
+ */
3366
+ export interface MaterialModifiedEvent {
3367
+ /**
3368
+ * 媒体 Id。
3369
+ */
3370
+ MaterialId: string
3371
+
3372
+ /**
3373
+ * 更新后的媒体名称。如未更新则为空。
3374
+ */
3375
+ Name: string
3376
+
3377
+ /**
3378
+ * 更新后的媒体预置标签列表。如未更新媒体预置标签,则该字段为空数组。
3379
+ */
3380
+ PresetTagIdSet: Array<string>
3381
+
3382
+ /**
3383
+ * 更新后的媒体自定义标签列表。如未更新媒体自定义标签,则该字段为空数组。
3384
+ */
3385
+ TagSet: Array<string>
3386
+ }
3387
+
3388
+ /**
3389
+ * HandleStreamConnectProject返回参数结构体
3390
+ */
3391
+ export interface HandleStreamConnectProjectResponse {
3392
+ /**
3393
+ * 输入源推流地址,当 Operation 取值 AddInput 且 InputType 为 RtmpPush 类型时有效。
3394
+ */
3395
+ StreamInputRtmpPushUrl: string
3396
+
3397
+ /**
3398
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3399
+ */
3400
+ RequestId?: string
3401
+ }
3402
+
3263
3403
  /**
3264
3404
  * DeleteTeamMembers请求参数结构体
3265
3405
  */
@@ -3380,21 +3520,89 @@ export interface OtherMaterial {
3380
3520
  */
3381
3521
  export interface EventContent {
3382
3522
  /**
3383
- * 事件类型,可取值为:
3384
- <li>Storage.NewFileCreated:新文件产生;</li>
3385
- <li>Project.StreamConnect.StatusChanged:云转推项目状态变更。</li>
3523
+ * 事件类型,可取值有:
3524
+ <li>Storage.NewFileCreated:新文件产生事件;</li>
3525
+ <li>Project.StreamConnect.StatusChanged:云转推项目状态变更事件;</li>
3526
+ <li>Project.Switcher.StatusChanged:导播台项目状态变更事件;</li>
3527
+ <li>Material.Imported:媒体导入事件;</li>
3528
+ <li>Material.Added:媒体添加事件;</li>
3529
+ <li>Material.Moved:媒体移动事件;</li>
3530
+ <li>Material.Modified:媒体变更事件;</li>
3531
+ <li>Material.Deleted:媒体删除事件;</li>
3532
+ <li>Class.Created:分类新增事件;</li>
3533
+ <li>Class.Moved:分类移动事件;</li>
3534
+ <li>Class.Deleted:分类删除事件。</li>
3386
3535
  */
3387
3536
  EventType: string
3388
3537
 
3389
3538
  /**
3390
- * 新文件产生事件信息。仅当 EventType 为 Storage.NewFileCreated 时有效。
3539
+ * 操作者,表示触发事件的操作者。如果是 `cmeid_system` 表示平台管理员操作。
3540
+ */
3541
+ Operator: string
3542
+
3543
+ /**
3544
+ * 新文件产生事件。仅当 EventType 为 Storage.NewFileCreated 时有效。
3391
3545
  */
3392
3546
  StorageNewFileCreatedEvent: StorageNewFileCreatedEvent
3393
3547
 
3394
3548
  /**
3395
- * 云转推项目状态变更事件信息。仅当 EventType 为 Project.StreamConnect.StatusChanged 时有效。
3549
+ * 云转推项目状态变更事件。仅当 EventType 为 Project.StreamConnect.StatusChanged 时有效。
3396
3550
  */
3397
3551
  ProjectStreamConnectStatusChangedEvent: ProjectStreamConnectStatusChangedEvent
3552
+
3553
+ /**
3554
+ * 导播台项目状态变更事件。仅当 EventType 为 Project.Switcher.StatusChanged 时有效。
3555
+ 注意:此字段可能返回 null,表示取不到有效值。
3556
+ */
3557
+ ProjectSwitcherStatusChangedEvent: ProjectSwitcherStatusChangedEvent
3558
+
3559
+ /**
3560
+ * 媒体导入事件。仅当 EventType 为 Material.Imported 时有效。
3561
+ 注意:此字段可能返回 null,表示取不到有效值。
3562
+ */
3563
+ MaterialImportedEvent: MaterialImportedEvent
3564
+
3565
+ /**
3566
+ * 媒体添加事件。仅当 EventType 为 Material.Added 时有效。
3567
+ 注意:此字段可能返回 null,表示取不到有效值。
3568
+ */
3569
+ MaterialAddedEvent: MaterialAddedEvent
3570
+
3571
+ /**
3572
+ * 媒体移动事件。仅当 EventType 为 Material.Moved 时有效。
3573
+ 注意:此字段可能返回 null,表示取不到有效值。
3574
+ */
3575
+ MaterialMovedEvent: MaterialMovedEvent
3576
+
3577
+ /**
3578
+ * 媒体更新事件。仅当 EventType 为 Material.Modified 时有效。
3579
+ 注意:此字段可能返回 null,表示取不到有效值。
3580
+ */
3581
+ MaterialModifiedEvent: MaterialModifiedEvent
3582
+
3583
+ /**
3584
+ * 媒体删除事件。仅当 EventType 为 Material.Deleted 时有效。
3585
+ 注意:此字段可能返回 null,表示取不到有效值。
3586
+ */
3587
+ MaterialDeletedEvent: MaterialDeletedEvent
3588
+
3589
+ /**
3590
+ * 分类创建事件。仅当 EventType 为 Class.Created 时有效。
3591
+ 注意:此字段可能返回 null,表示取不到有效值。
3592
+ */
3593
+ ClassCreatedEvent: ClassCreatedEvent
3594
+
3595
+ /**
3596
+ * 分类移动事件。仅当 EventType 为 Class.Moved 时有效。
3597
+ 注意:此字段可能返回 null,表示取不到有效值。
3598
+ */
3599
+ ClassMovedEvent: ClassMovedEvent
3600
+
3601
+ /**
3602
+ * 分类删除事件。仅当 EventType 为 Class.Deleted 时有效。
3603
+ 注意:此字段可能返回 null,表示取不到有效值。
3604
+ */
3605
+ ClassDeletedEvent: ClassDeletedEvent
3398
3606
  }
3399
3607
 
3400
3608
  /**
@@ -3617,6 +3825,26 @@ export interface DescribeLoginStatusResponse {
3617
3825
  RequestId?: string
3618
3826
  }
3619
3827
 
3828
+ /**
3829
+ * 媒体添加事件。
3830
+ */
3831
+ export interface MaterialAddedEvent {
3832
+ /**
3833
+ * 添加的媒体 Id 列表。
3834
+ */
3835
+ MaterialIdSet: Array<string>
3836
+
3837
+ /**
3838
+ * 添加的媒体归属。
3839
+ */
3840
+ Owner: Entity
3841
+
3842
+ /**
3843
+ * 添加的媒体分类路径。
3844
+ */
3845
+ ClassPath: string
3846
+ }
3847
+
3620
3848
  /**
3621
3849
  * CreateVideoEncodingPreset请求参数结构体
3622
3850
  */
@@ -4079,23 +4307,50 @@ export interface CosPublishInputInfo {
4079
4307
  }
4080
4308
 
4081
4309
  /**
4082
- * DescribeTasks返回参数结构体
4310
+ * HandleStreamConnectProject请求参数结构体
4083
4311
  */
4084
- export interface DescribeTasksResponse {
4312
+ export interface HandleStreamConnectProjectRequest {
4085
4313
  /**
4086
- * 符合搜索条件的记录总数。
4314
+ * 平台 Id,指定访问的平台。关于平台概念,请参见文档 [平台](https://cloud.tencent.com/document/product/1156/43767)。
4087
4315
  */
4088
- TotalCount: number
4316
+ Platform: string
4089
4317
 
4090
4318
  /**
4091
- * 任务基础信息列表。
4319
+ * 云转推项目 Id 。
4092
4320
  */
4093
- TaskBaseInfoSet: Array<TaskBaseInfo>
4321
+ ProjectId: string
4094
4322
 
4095
4323
  /**
4096
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4324
+ * 请参考 [操作类型](#Operation)
4097
4325
  */
4098
- RequestId?: string
4326
+ Operation: string
4327
+
4328
+ /**
4329
+ * 转推输入源操作参数。具体操作方式详见 [操作类型](#Operation) 及下文示例。
4330
+ */
4331
+ InputInfo?: StreamInputInfo
4332
+
4333
+ /**
4334
+ * 主备输入源标识,取值有:
4335
+ <li> Main :主源;</li>
4336
+ <li> Backup :备源。</li>
4337
+ */
4338
+ InputEndpoint?: string
4339
+
4340
+ /**
4341
+ * 转推输出源操作参数。具体操作方式详见 [操作类型](#Operation) 及下文示例。
4342
+ */
4343
+ OutputInfo?: StreamConnectOutput
4344
+
4345
+ /**
4346
+ * 云转推当前预计结束时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。具体操作方式详见 [操作类型](#Operation) 及下文示例。
4347
+ */
4348
+ CurrentStopTime?: string
4349
+
4350
+ /**
4351
+ * 操作者。如不填,默认为 `cmeid_system`,表示平台管理员操作,可以操作所有云转推项目。如果指定操作者,则操作者必须为项目所有者。
4352
+ */
4353
+ Operator?: string
4099
4354
  }
4100
4355
 
4101
4356
  /**
@@ -4394,6 +4649,27 @@ export interface MediaMetaData {
4394
4649
  AudioStreamInfoSet: Array<AudioStreamInfo>
4395
4650
  }
4396
4651
 
4652
+ /**
4653
+ * 导播台项目状态变更事件
4654
+ */
4655
+ export interface ProjectSwitcherStatusChangedEvent {
4656
+ /**
4657
+ * 导播台项目 Id。
4658
+ */
4659
+ ProjectId: string
4660
+
4661
+ /**
4662
+ * 导播台项目状态,可取值有:
4663
+ <li>Started:导播台启动;</li>
4664
+ <li>Stopped:导播台停止;</li>
4665
+ <li>PvwStarted:导播台 PVW 开启;</li>
4666
+ <li>PgmStarted:导播台 PGM 开启,输出推流开始;</li>
4667
+ <li>PvwStopped:导播台 PVW 停止;</li>
4668
+ <li>PgmStopped:导播台 PGM 停止,输出推流结束。</li>
4669
+ */
4670
+ Status: string
4671
+ }
4672
+
4397
4673
  /**
4398
4674
  * 媒资绑定资源信息,包含媒资绑定模板 ID 和文件信息。
4399
4675
  */
@@ -4458,33 +4734,18 @@ export interface ExportVideoByEditorTrackDataResponse {
4458
4734
  }
4459
4735
 
4460
4736
  /**
4461
- * 雪碧图
4737
+ * 分类创建事件。
4462
4738
  */
4463
- export interface MediaImageSpriteInfo {
4739
+ export interface ClassCreatedEvent {
4464
4740
  /**
4465
- * 雪碧图小图的高度。
4741
+ * 分类归属。
4466
4742
  */
4467
- Height: number
4468
-
4469
- /**
4470
- * 雪碧图小图的宽度。
4471
- */
4472
- Width: number
4473
-
4474
- /**
4475
- * 雪碧图小图的总数量。
4476
- */
4477
- TotalCount: number
4478
-
4479
- /**
4480
- * 截取雪碧图输出的地址。
4481
- */
4482
- ImageUrlSet: Array<string>
4743
+ Owner: Entity
4483
4744
 
4484
4745
  /**
4485
- * 雪碧图子图位置与时间关系的 WebVtt 文件地址。WebVtt 文件表明了各个雪碧图小图对应的时间点,以及在雪碧大图里的坐标位置,一般被播放器用于实现预览。
4746
+ * 分类路径。
4486
4747
  */
4487
- WebVttUrl: string
4748
+ ClassPath: string
4488
4749
  }
4489
4750
 
4490
4751
  /**
@@ -4600,6 +4861,21 @@ export interface TextReplacementInfo {
4600
4861
  Text: string
4601
4862
  }
4602
4863
 
4864
+ /**
4865
+ * 导入媒资信息
4866
+ */
4867
+ export interface ImportMediaInfo {
4868
+ /**
4869
+ * 云点播文件 FileId。
4870
+ */
4871
+ FileId: string
4872
+
4873
+ /**
4874
+ * 媒体 Id。
4875
+ */
4876
+ MaterialId: string
4877
+ }
4878
+
4603
4879
  /**
4604
4880
  * DescribeMaterials请求参数结构体
4605
4881
  */