-
Notifications
You must be signed in to change notification settings - Fork 271
/
update_live_mpu_task.go
199 lines (178 loc) · 8.58 KB
/
update_live_mpu_task.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
package live
//Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//You may obtain a copy of the License at
//
//http://www.apache.org/licenses/LICENSE-2.0
//
//Unless required by applicable law or agreed to in writing, software
//distributed under the License is distributed on an "AS IS" BASIS,
//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//See the License for the specific language governing permissions and
//limitations under the License.
//
// Code generated by Alibaba Cloud SDK Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
import (
"github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests"
"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
)
// UpdateLiveMPUTask invokes the live.UpdateLiveMPUTask API synchronously
func (client *Client) UpdateLiveMPUTask(request *UpdateLiveMPUTaskRequest) (response *UpdateLiveMPUTaskResponse, err error) {
response = CreateUpdateLiveMPUTaskResponse()
err = client.DoAction(request, response)
return
}
// UpdateLiveMPUTaskWithChan invokes the live.UpdateLiveMPUTask API asynchronously
func (client *Client) UpdateLiveMPUTaskWithChan(request *UpdateLiveMPUTaskRequest) (<-chan *UpdateLiveMPUTaskResponse, <-chan error) {
responseChan := make(chan *UpdateLiveMPUTaskResponse, 1)
errChan := make(chan error, 1)
err := client.AddAsyncTask(func() {
defer close(responseChan)
defer close(errChan)
response, err := client.UpdateLiveMPUTask(request)
if err != nil {
errChan <- err
} else {
responseChan <- response
}
})
if err != nil {
errChan <- err
close(responseChan)
close(errChan)
}
return responseChan, errChan
}
// UpdateLiveMPUTaskWithCallback invokes the live.UpdateLiveMPUTask API asynchronously
func (client *Client) UpdateLiveMPUTaskWithCallback(request *UpdateLiveMPUTaskRequest, callback func(response *UpdateLiveMPUTaskResponse, err error)) <-chan int {
result := make(chan int, 1)
err := client.AddAsyncTask(func() {
var response *UpdateLiveMPUTaskResponse
var err error
defer close(result)
response, err = client.UpdateLiveMPUTask(request)
callback(response, err)
result <- 1
})
if err != nil {
defer close(result)
callback(nil, err)
result <- 0
}
return result
}
// UpdateLiveMPUTaskRequest is the request struct for api UpdateLiveMPUTask
type UpdateLiveMPUTaskRequest struct {
*requests.RpcRequest
SingleSubParams UpdateLiveMPUTaskSingleSubParams `position:"Query" name:"SingleSubParams" type:"Struct"`
SeiParams UpdateLiveMPUTaskSeiParams `position:"Query" name:"SeiParams" type:"Struct"`
TranscodeParams UpdateLiveMPUTaskTranscodeParams `position:"Query" name:"TranscodeParams" type:"Struct"`
AppId string `position:"Query" name:"AppId"`
MixMode string `position:"Query" name:"MixMode"`
ChannelId string `position:"Query" name:"ChannelId"`
TaskId string `position:"Query" name:"TaskId"`
StreamURL string `position:"Query" name:"StreamURL"`
}
// UpdateLiveMPUTaskSingleSubParams is a repeated param struct in UpdateLiveMPUTaskRequest
type UpdateLiveMPUTaskSingleSubParams struct {
StreamType string `name:"StreamType"`
SourceType string `name:"SourceType"`
UserId string `name:"UserId"`
}
// UpdateLiveMPUTaskSeiParams is a repeated param struct in UpdateLiveMPUTaskRequest
type UpdateLiveMPUTaskSeiParams struct {
LayoutVolume UpdateLiveMPUTaskSeiParamsLayoutVolume `name:"LayoutVolume" type:"Struct"`
PassThrough UpdateLiveMPUTaskSeiParamsPassThrough `name:"PassThrough" type:"Struct"`
}
// UpdateLiveMPUTaskTranscodeParams is a repeated param struct in UpdateLiveMPUTaskRequest
type UpdateLiveMPUTaskTranscodeParams struct {
Layout UpdateLiveMPUTaskTranscodeParamsLayout `name:"Layout" type:"Struct"`
Background UpdateLiveMPUTaskTranscodeParamsBackground `name:"Background" type:"Struct"`
UserInfos *[]UpdateLiveMPUTaskTranscodeParamsUserInfosItem `name:"UserInfos" type:"Repeated"`
EncodeParams UpdateLiveMPUTaskTranscodeParamsEncodeParams `name:"EncodeParams" type:"Struct"`
}
// UpdateLiveMPUTaskSeiParamsLayoutVolume is a repeated param struct in UpdateLiveMPUTaskRequest
type UpdateLiveMPUTaskSeiParamsLayoutVolume struct {
FollowIdr string `name:"FollowIdr"`
Interval string `name:"Interval"`
}
// UpdateLiveMPUTaskSeiParamsPassThrough is a repeated param struct in UpdateLiveMPUTaskRequest
type UpdateLiveMPUTaskSeiParamsPassThrough struct {
FollowIdr string `name:"FollowIdr"`
PayloadContentKey string `name:"PayloadContentKey"`
PayloadContent string `name:"PayloadContent"`
Interval string `name:"Interval"`
}
// UpdateLiveMPUTaskTranscodeParamsLayout is a repeated param struct in UpdateLiveMPUTaskRequest
type UpdateLiveMPUTaskTranscodeParamsLayout struct {
UserPanes *[]UpdateLiveMPUTaskTranscodeParamsLayoutUserPanesItem `name:"UserPanes" type:"Repeated"`
LayoutMode string `name:"LayoutMode"`
MaxVideoUser UpdateLiveMPUTaskTranscodeParamsLayoutMaxVideoUser `name:"MaxVideoUser" type:"Struct"`
}
// UpdateLiveMPUTaskTranscodeParamsBackground is a repeated param struct in UpdateLiveMPUTaskRequest
type UpdateLiveMPUTaskTranscodeParamsBackground struct {
URL string `name:"URL"`
RenderMode string `name:"RenderMode"`
}
// UpdateLiveMPUTaskTranscodeParamsUserInfosItem is a repeated param struct in UpdateLiveMPUTaskRequest
type UpdateLiveMPUTaskTranscodeParamsUserInfosItem struct {
StreamType string `name:"StreamType"`
SourceType string `name:"SourceType"`
UserId string `name:"UserId"`
}
// UpdateLiveMPUTaskTranscodeParamsEncodeParams is a repeated param struct in UpdateLiveMPUTaskRequest
type UpdateLiveMPUTaskTranscodeParamsEncodeParams struct {
AudioOnly string `name:"AudioOnly"`
VideoWidth string `name:"VideoWidth"`
AudioBitrate string `name:"AudioBitrate"`
VideoFramerate string `name:"VideoFramerate"`
VideoHeight string `name:"VideoHeight"`
VideoBitrate string `name:"VideoBitrate"`
AudioSampleRate string `name:"AudioSampleRate"`
VideoGop string `name:"VideoGop"`
AudioChannels string `name:"AudioChannels"`
}
// UpdateLiveMPUTaskTranscodeParamsLayoutUserPanesItem is a repeated param struct in UpdateLiveMPUTaskRequest
type UpdateLiveMPUTaskTranscodeParamsLayoutUserPanesItem struct {
BackgroundImageUrl string `name:"BackgroundImageUrl"`
ZOrder string `name:"ZOrder"`
X string `name:"X"`
Width string `name:"Width"`
Y string `name:"Y"`
UserInfo UpdateLiveMPUTaskTranscodeParamsLayoutUserPanesItemUserInfo `name:"UserInfo" type:"Struct"`
RenderMode string `name:"RenderMode"`
Height string `name:"Height"`
}
// UpdateLiveMPUTaskTranscodeParamsLayoutMaxVideoUser is a repeated param struct in UpdateLiveMPUTaskRequest
type UpdateLiveMPUTaskTranscodeParamsLayoutMaxVideoUser struct {
StreamType string `name:"StreamType"`
SourceType string `name:"SourceType"`
UserId string `name:"UserId"`
}
// UpdateLiveMPUTaskTranscodeParamsLayoutUserPanesItemUserInfo is a repeated param struct in UpdateLiveMPUTaskRequest
type UpdateLiveMPUTaskTranscodeParamsLayoutUserPanesItemUserInfo struct {
SourceType string `name:"SourceType"`
UserId string `name:"UserId"`
}
// UpdateLiveMPUTaskResponse is the response struct for api UpdateLiveMPUTask
type UpdateLiveMPUTaskResponse struct {
*responses.BaseResponse
RequestId string `json:"RequestId" xml:"RequestId"`
}
// CreateUpdateLiveMPUTaskRequest creates a request to invoke UpdateLiveMPUTask API
func CreateUpdateLiveMPUTaskRequest() (request *UpdateLiveMPUTaskRequest) {
request = &UpdateLiveMPUTaskRequest{
RpcRequest: &requests.RpcRequest{},
}
request.InitWithApiInfo("live", "2016-11-01", "UpdateLiveMPUTask", "live", "openAPI")
request.Method = requests.POST
return
}
// CreateUpdateLiveMPUTaskResponse creates a response to parse from UpdateLiveMPUTask response
func CreateUpdateLiveMPUTaskResponse() (response *UpdateLiveMPUTaskResponse) {
response = &UpdateLiveMPUTaskResponse{
BaseResponse: &responses.BaseResponse{},
}
return
}