You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
173 lines
4.8 KiB
173 lines
4.8 KiB
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"os"
|
|
|
|
"github.com/tencentyun/cos-go-sdk-v5"
|
|
"github.com/tencentyun/cos-go-sdk-v5/debug"
|
|
)
|
|
|
|
func log_status(err error) {
|
|
if err == nil {
|
|
return
|
|
}
|
|
if cos.IsNotFoundError(err) {
|
|
// WARN
|
|
fmt.Println("WARN: Resource is not existed")
|
|
} else if e, ok := cos.IsCOSError(err); ok {
|
|
fmt.Printf("ERROR: Code: %v\n", e.Code)
|
|
fmt.Printf("ERROR: Message: %v\n", e.Message)
|
|
fmt.Printf("ERROR: Resource: %v\n", e.Resource)
|
|
fmt.Printf("ERROR: RequestId: %v\n", e.RequestID)
|
|
// ERROR
|
|
} else {
|
|
fmt.Printf("ERROR: %v\n", err)
|
|
// ERROR
|
|
}
|
|
}
|
|
|
|
func InvokeConcatTask() {
|
|
u, _ := url.Parse("https://wwj-bj-1253960454.cos.ap-beijing.myqcloud.com")
|
|
cu, _ := url.Parse("https://wwj-bj-1253960454.ci.ap-beijing.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
|
|
concatFragment := make([]cos.ConcatFragment, 0)
|
|
concatFragment = append(concatFragment, cos.ConcatFragment{
|
|
Url: "https://wwj-bj-1253960454.cos.ap-beijing.myqcloud.com/input/117374C.mp4",
|
|
StartTime: "0",
|
|
EndTime: "10",
|
|
})
|
|
concatFragment = append(concatFragment, cos.ConcatFragment{
|
|
Url: "https://wwj-bj-1253960454.cos.ap-beijing.myqcloud.com/input/117374C.mp4",
|
|
StartTime: "20",
|
|
EndTime: "30",
|
|
})
|
|
createJobOpt := &cos.CreateMediaJobsOptions{
|
|
Tag: "Concat",
|
|
Operation: &cos.MediaProcessJobOperation{
|
|
Output: &cos.JobOutput{
|
|
Region: "ap-beijing",
|
|
Object: "output/go_117374C.mp4",
|
|
Bucket: "wwj-bj-1253960454",
|
|
},
|
|
ConcatTemplate: &cos.ConcatTemplate{
|
|
Container: &cos.Container{
|
|
Format: "mp4",
|
|
},
|
|
Video: &cos.Video{
|
|
Codec: "H.264",
|
|
},
|
|
Audio: &cos.Audio{
|
|
Codec: "AAC",
|
|
},
|
|
ConcatFragment:concatFragment,
|
|
},
|
|
},
|
|
QueueId: DescribeQueueRes.QueueList[0].QueueId,
|
|
}
|
|
createJobRes, _, err := c.CI.CreateMediaJobs(context.Background(), createJobOpt)
|
|
log_status(err)
|
|
fmt.Printf("%+v\n", createJobRes.JobsDetail)
|
|
|
|
// DescribeMediaJobs
|
|
DescribeJobRes, _, err := c.CI.DescribeMediaJob(context.Background(), createJobRes.JobsDetail.JobId)
|
|
log_status(err)
|
|
fmt.Printf("%+v\n", DescribeJobRes.JobsDetail)
|
|
}
|
|
|
|
func InvokeTranscodeTask() {
|
|
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.CreateMediaJobsOptions{
|
|
Tag: "Transcode",
|
|
Input: &cos.JobInput{
|
|
Object: "input/117374C.mp4",
|
|
},
|
|
Operation: &cos.MediaProcessJobOperation{
|
|
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.CreateMediaJobs(context.Background(), createJobOpt)
|
|
log_status(err)
|
|
fmt.Printf("%+v\n", createJobRes.JobsDetail)
|
|
|
|
// DescribeMediaJobs
|
|
DescribeJobRes, _, err := c.CI.DescribeMediaJob(context.Background(), createJobRes.JobsDetail.JobId)
|
|
log_status(err)
|
|
fmt.Printf("%+v\n", DescribeJobRes.JobsDetail)
|
|
}
|
|
|
|
func main() {
|
|
InvokeConcatTask()
|
|
//InvokeTranscodeTask()
|
|
}
|