func (s *CIService) PutAudioAuditingJob(ctx context.Context, opt *PutAudioAuditingJobOptions) (*PutAudioAuditingJobResult, *Response, error)
// 将 examplebucket-1250000000 和 COS_REGION修改为真实的信息// CI 任务需要提供CIURLbu, _ := url.Parse("https://examplebucket-1250000000.cos.COS_REGION.myqcloud.com")cu, _ := url.Parse("https://examplebucket-1250000000.ci.COS_REGION.myqcloud.com")b := &cos.BaseURL{BucketURL: bu, CIURL: cu}c := cos.NewClient(b, &http.Client{Transport: &cos.AuthorizationTransport{SecretID: os.Getenv("SECRETID"),SecretKey: os.Getenv("SECRETKEY"),}})opt := &cos.PutAudioAuditingJobOptions{InputObject: "test.mp3",Conf: &cos.AudioAuditingJobConf{DetectType: "Porn,Ads",},}res, _, err := c.CI.PutAudioAuditingJob(context.Background(), opt)
type PutAudioAuditingJobOptions struct {InputObject stringInputUrl stringInputDataId stringInputUserInfo *UserExtraInfoConf *AudioAuditingJobConf}type UserExtraInfo struct {TokenId stringNickname stringDeviceId stringAppId stringRoom stringIP stringType string}type AudioAuditingJobConf struct {DetectType stringCallback stringCallbackVersion stringBizType string}
参数名称 | 参数描述 | 类型 |
InputObject | 存储在 COS 存储桶中的音频文件名称,例如在目录 test 中的文件 audio.mp3,则文件名称为 test/audio.mp3 。Object 和 Url 只能选择其中一种。 | String |
InputUrl | 音频文件的链接地址,例如 http://examplebucket-1250000000.cos.ap-shanghai.myqcloud.com/audio.mp3 。Object 和 Url 只能选择其中一种。 | String |
InputDataId | 音频标识,该字段在结果中返回原始内容,长度限制为512字节。 | String |
InputUserInfo | 用户业务字段。 | Object |
Conf | 审核规则配置。 | Struct |
BizType | String | |
DetectType | 审核的场景类型,有效值:Porn(涉黄)、Ads(广告),可以传入多种类型,不同类型以逗号分隔,例如:Porn,Ads。如您有更多场景的审核需要,请使用 BizType 参数。 | String |
Callback | 审核结果以回调形式发送至您的回调地址,支持以 http:// 或者 https:// 开头的地址,例如:http://www.callback.com 。 | String |
CallbackVersion | 回调内容的结构,有效值:Simple(回调内容包含基本信息)、Detail(回调内容包含详细信息)。默认为 Simple。 | String |
func (s *CIService) GetAudioAuditingJob(ctx context.Context, jobid string) (*GetAudioAuditingJobResult, *Response, error)
// 将 examplebucket-1250000000 和 COS_REGION修改为真实的信息// CI 任务需要提供CIURLbu, _ := url.Parse("https://examplebucket-1250000000.cos.COS_REGION.myqcloud.com")cu, _ := url.Parse("https://examplebucket-1250000000.ci.COS_REGION.myqcloud.com")b := &cos.BaseURL{BucketURL: bu, CIURL: cu}c := cos.NewClient(b, &http.Client{Transport: &cos.AuthorizationTransport{SecretID: os.Getenv("SECRETID"),SecretKey: os.Getenv("SECRETKEY"),}})jobId := "sace25f391a72e11eb99f********"res, _, err := c.CI.GetAudioAuditingJob(context.Background(), jobId)
参数名称 | 参数描述 | 类型 |
jobId | 任务 ID。 | String |
本页内容是否解决了您的问题?