add:支持多任务接口
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -29,3 +29,4 @@ cover.html
|
|||||||
cover.out
|
cover.out
|
||||||
covprofile
|
covprofile
|
||||||
coverage.html
|
coverage.html
|
||||||
|
example/CI/media_process/media_process
|
||||||
|
|||||||
32
ci_media.go
32
ci_media.go
@@ -119,6 +119,7 @@ type Snapshot struct {
|
|||||||
Height string `xml:"Height,omitempty"`
|
Height string `xml:"Height,omitempty"`
|
||||||
}
|
}
|
||||||
type MediaProcessJobOperation struct {
|
type MediaProcessJobOperation struct {
|
||||||
|
Tag string `xml:"Tag,omitempty"`
|
||||||
Output *JobOutput `xml:"Output,omitempty"`
|
Output *JobOutput `xml:"Output,omitempty"`
|
||||||
Transcode *Transcode `xml:"Transcode,omitempty"`
|
Transcode *Transcode `xml:"Transcode,omitempty"`
|
||||||
Watermark *Watermark `xml:"Watermark,omitempty"`
|
Watermark *Watermark `xml:"Watermark,omitempty"`
|
||||||
@@ -150,8 +151,35 @@ type MediaProcessJobDetail struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type CreateMediaJobsResult struct {
|
type CreateMediaJobsResult struct {
|
||||||
XMLName xml.Name `xml:"Response"`
|
XMLName xml.Name `xml:"Response"`
|
||||||
JobsDetail MediaProcessJobDetail `xml:"JobsDetail,omitempty"`
|
JobsDetail *MediaProcessJobDetail `xml:"JobsDetail,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type CreateMultiMediaJobsOptions struct {
|
||||||
|
XMLName xml.Name `xml:"Request"`
|
||||||
|
Tag string `xml:"Tag,omitempty"`
|
||||||
|
Input *JobInput `xml:"Input,omitempty"`
|
||||||
|
Operation []*MediaProcessJobOperation `xml:"Operation,omitempty"`
|
||||||
|
QueueId string `xml:"QueueId,omitempty"`
|
||||||
|
CallBack string `xml:"CallBack,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type CreateMultiMediaJobsResult struct {
|
||||||
|
XMLName xml.Name `xml:"Response"`
|
||||||
|
JobsDetail []*MediaProcessJobDetail `xml:"JobsDetail,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *CIService) CreateMultiMediaJobs(ctx context.Context, opt *CreateMultiMediaJobsOptions) (*CreateMultiMediaJobsResult, *Response, error) {
|
||||||
|
var res CreateMultiMediaJobsResult
|
||||||
|
sendOpt := sendOptions{
|
||||||
|
baseURL: s.client.BaseURL.CIURL,
|
||||||
|
uri: "/jobs",
|
||||||
|
method: http.MethodPost,
|
||||||
|
body: opt,
|
||||||
|
result: &res,
|
||||||
|
}
|
||||||
|
resp, err := s.client.send(ctx, &sendOpt)
|
||||||
|
return &res, resp, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *CIService) CreateMediaJobs(ctx context.Context, opt *CreateMediaJobsOptions) (*CreateMediaJobsResult, *Response, error) {
|
func (s *CIService) CreateMediaJobs(ctx context.Context, opt *CreateMediaJobsOptions) (*CreateMediaJobsResult, *Response, error) {
|
||||||
|
|||||||
@@ -65,12 +65,11 @@ func InvokeSnapshotTask() {
|
|||||||
Operation: &cos.MediaProcessJobOperation{
|
Operation: &cos.MediaProcessJobOperation{
|
||||||
Output: &cos.JobOutput{
|
Output: &cos.JobOutput{
|
||||||
Region: "ap-beijing",
|
Region: "ap-beijing",
|
||||||
Object: "output/${InputName}-${Number}.jpg",
|
Object: "output/abc-${Number}.jpg",
|
||||||
Bucket: "wwj-bj-1253960454",
|
Bucket: "wwj-bj-1253960454",
|
||||||
},
|
},
|
||||||
// TemplateId:"t1af5d050a8b4d45d1afb60bfbacbfa0f0",
|
|
||||||
Snapshot: &cos.Snapshot{
|
Snapshot: &cos.Snapshot{
|
||||||
Mode: "Interval",
|
Mode: "Interval",
|
||||||
Start: "0",
|
Start: "0",
|
||||||
Count: "1",
|
Count: "1",
|
||||||
},
|
},
|
||||||
@@ -84,7 +83,7 @@ func InvokeSnapshotTask() {
|
|||||||
// DescribeMediaJobs
|
// DescribeMediaJobs
|
||||||
DescribeJobRes, _, err := c.CI.DescribeMediaJob(context.Background(), createJobRes.JobsDetail.JobId)
|
DescribeJobRes, _, err := c.CI.DescribeMediaJob(context.Background(), createJobRes.JobsDetail.JobId)
|
||||||
log_status(err)
|
log_status(err)
|
||||||
fmt.Printf("%+v\n", DescribeJobRes.JobsDetail)
|
fmt.Printf("%+v\n", DescribeJobRes.JobsDetail)
|
||||||
}
|
}
|
||||||
|
|
||||||
func InvokeConcatTask() {
|
func InvokeConcatTask() {
|
||||||
@@ -116,14 +115,14 @@ func InvokeConcatTask() {
|
|||||||
// CreateMediaJobs
|
// CreateMediaJobs
|
||||||
concatFragment := make([]cos.ConcatFragment, 0)
|
concatFragment := make([]cos.ConcatFragment, 0)
|
||||||
concatFragment = append(concatFragment, cos.ConcatFragment{
|
concatFragment = append(concatFragment, cos.ConcatFragment{
|
||||||
Url: "https://wwj-bj-1253960454.cos.ap-beijing.myqcloud.com/input/117374C.mp4",
|
Url: "https://wwj-bj-1253960454.cos.ap-beijing.myqcloud.com/input/117374C.mp4",
|
||||||
StartTime: "0",
|
StartTime: "0",
|
||||||
EndTime: "10",
|
EndTime: "10",
|
||||||
})
|
})
|
||||||
concatFragment = append(concatFragment, cos.ConcatFragment{
|
concatFragment = append(concatFragment, cos.ConcatFragment{
|
||||||
Url: "https://wwj-bj-1253960454.cos.ap-beijing.myqcloud.com/input/117374C.mp4",
|
Url: "https://wwj-bj-1253960454.cos.ap-beijing.myqcloud.com/input/117374C.mp4",
|
||||||
StartTime: "20",
|
StartTime: "20",
|
||||||
EndTime: "30",
|
EndTime: "30",
|
||||||
})
|
})
|
||||||
createJobOpt := &cos.CreateMediaJobsOptions{
|
createJobOpt := &cos.CreateMediaJobsOptions{
|
||||||
Tag: "Concat",
|
Tag: "Concat",
|
||||||
@@ -143,7 +142,7 @@ func InvokeConcatTask() {
|
|||||||
Audio: &cos.Audio{
|
Audio: &cos.Audio{
|
||||||
//Codec: "AAC",
|
//Codec: "AAC",
|
||||||
},
|
},
|
||||||
ConcatFragment:concatFragment,
|
ConcatFragment: concatFragment,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
QueueId: DescribeQueueRes.QueueList[0].QueueId,
|
QueueId: DescribeQueueRes.QueueList[0].QueueId,
|
||||||
@@ -224,9 +223,87 @@ func InvokeTranscodeTask() {
|
|||||||
fmt.Printf("%+v\n", DescribeJobRes.JobsDetail)
|
fmt.Printf("%+v\n", DescribeJobRes.JobsDetail)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func InvokeMultiTasks() {
|
||||||
|
u, _ := url.Parse("https://wwj-cq-1253960454.cos.ap-chongqing.myqcloud.com")
|
||||||
|
cu, _ := url.Parse("https://wwj-cq-1253960454.ci.ap-chongqing.myqcloud.com")
|
||||||
|
b := &cos.BaseURL{BucketURL: u, CIURL: cu}
|
||||||
|
c := cos.NewClient(b, &http.Client{
|
||||||
|
Transport: &cos.AuthorizationTransport{
|
||||||
|
SecretID: os.Getenv("COS_SECRETID"),
|
||||||
|
SecretKey: os.Getenv("COS_SECRETKEY"),
|
||||||
|
Transport: &debug.DebugRequestTransport{
|
||||||
|
RequestHeader: true,
|
||||||
|
// Notice when put a large file and set need the request body, might happend out of memory error.
|
||||||
|
RequestBody: true,
|
||||||
|
ResponseHeader: true,
|
||||||
|
ResponseBody: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
// DescribeMediaProcessQueues
|
||||||
|
DescribeQueueOpt := &cos.DescribeMediaProcessQueuesOptions{
|
||||||
|
QueueIds: "",
|
||||||
|
PageNumber: 1,
|
||||||
|
PageSize: 2,
|
||||||
|
}
|
||||||
|
DescribeQueueRes, _, err := c.CI.DescribeMediaProcessQueues(context.Background(), DescribeQueueOpt)
|
||||||
|
log_status(err)
|
||||||
|
fmt.Printf("%+v\n", DescribeQueueRes)
|
||||||
|
// CreateMediaJobs
|
||||||
|
createJobOpt := &cos.CreateMultiMediaJobsOptions{
|
||||||
|
Input: &cos.JobInput{
|
||||||
|
Object: "input/117374C.mp4",
|
||||||
|
},
|
||||||
|
Operation: []*cos.MediaProcessJobOperation{
|
||||||
|
&cos.MediaProcessJobOperation{
|
||||||
|
Tag: "Snapshot",
|
||||||
|
Output: &cos.JobOutput{
|
||||||
|
Region: "ap-chongqing",
|
||||||
|
Object: "output/go_${Number}.mp4",
|
||||||
|
Bucket: "wwj-cq-1253960454",
|
||||||
|
},
|
||||||
|
Snapshot: &cos.Snapshot{
|
||||||
|
Mode: "Interval",
|
||||||
|
Start: "0",
|
||||||
|
Count: "1",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
&cos.MediaProcessJobOperation{
|
||||||
|
Tag: "Transcode",
|
||||||
|
Output: &cos.JobOutput{
|
||||||
|
Region: "ap-chongqing",
|
||||||
|
Object: "output/go_117374C.mp4",
|
||||||
|
Bucket: "wwj-cq-1253960454",
|
||||||
|
},
|
||||||
|
Transcode: &cos.Transcode{
|
||||||
|
Container: &cos.Container{
|
||||||
|
Format: "mp4",
|
||||||
|
},
|
||||||
|
Video: &cos.Video{
|
||||||
|
Codec: "H.264",
|
||||||
|
},
|
||||||
|
Audio: &cos.Audio{
|
||||||
|
Codec: "AAC",
|
||||||
|
},
|
||||||
|
TimeInterval: &cos.TimeInterval{
|
||||||
|
Start: "10",
|
||||||
|
Duration: "",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
QueueId: "paaf4fce5521a40888a3034a5de80f6ca",
|
||||||
|
}
|
||||||
|
createJobRes, _, err := c.CI.CreateMultiMediaJobs(context.Background(), createJobOpt)
|
||||||
|
log_status(err)
|
||||||
|
for k, job := range createJobRes.JobsDetail {
|
||||||
|
fmt.Printf("job:%d, %+v\n", k, job)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
InvokeSnapshotTask()
|
// InvokeSnapshotTask()
|
||||||
// InvokeConcatTask()
|
// InvokeConcatTask()
|
||||||
// InvokeTranscodeTask()
|
// InvokeTranscodeTask()
|
||||||
|
InvokeMultiTasks()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user