API | Description |
Submits video moderation job. | |
Queries the result of specified video moderation job. |
PutVideoAuditingJob
) is used to submit a video moderation job. You can receive the moderation result by setting the callback address or querying by JobId
.func (s *CIService) PutVideoAuditingJob(ctx context.Context, opt *PutVideoAuditingJobOptions) (*PutVideoAuditingJobResult, *Response, error)
// Replace `examplebucket-1250000000` and `COS_REGION` with your actual information// For CI jobs, you need to provide the CIURL.bu, _ := 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.PutVideoAuditingJobOptions{InputObject: "demo.mp4",Conf: &cos.VideoAuditingJobConf{DetectType: "Porn,Ads",Snapshot: &cos.PutVideoAuditingJobSnapshot{Mode: "Interval",TimeInterval: 50.5,Count: 100,},},}res, _, err := c.CI.PutVideoAuditingJob(context.Background(), opt)
type PutVideoAuditingJobOptions struct {InputObject stringInputUrl stringInputDataId stringInputUserInfo *UserExtraInfoConf *VideoAuditingJobConfType string}type UserExtraInfo struct {TokenId stringNickname stringDeviceId stringAppId stringRoom stringIP stringType string}type VideoAuditingJobConf struct {DetectType stringSnapshot *PutVideoAuditingJobSnapshotCallback stringCallbackVersion stringCallbackType intBizType stringDetectContent int}type PutVideoAuditingJobSnapshot struct {Mode stringCount intTimeInterval float32}
Parameter | Description | Type |
InputObject | Name of the video file in the COS bucket; for example, if the file is video.mp4 in the test directory, then the filename is test/video.mp4 . Either Object or Url can be selected at a time. | String |
InputUrl | Full URL of the video file, such as http://examplebucket-1250000000.cos.ap-shanghai.myqcloud.com/test.mp4 . Either Object or Url can be selected at a time. | String |
InputDataId | Video ID. This field will return the original content in the result, which can contain up to 512 bytes. | String |
InputUserInfo | Business field. | Object |
Type | Moderation job type, which is fixed at live_video for live stream moderation. | String |
Conf | Moderation rule configuration. | Struct |
BizType | Moderation policy. If this parameter is not specified, the default policy will be used. The policy can be configured in the console as instructed in Setting Moderation Policy. | String |
DetectType | The scene to be moderated, such as Porn (pornography) and Ads (advertising). You can pass in multiple types and separate them by comma, such as Porn,Ads . If you need to moderate more scenes, use the BizType parameter. | String |
Snapshot | Video image moderation is implemented by taking a certain number of screenshots based on the video frame capturing capability and then moderating the screenshots one by one. This parameter is used to specify the configuration of video frame capturing. | Struct |
Callback | The moderation result can be sent to your callback address in the form of a callback. Addresses starting with http:// or https:// are supported, such as http://www.callback.com . | String |
CallbackVersion | Structure of the callback content. Valid values: Simple (the callback content contains basic information), Detail (the callback content contains detailed information). Default value: Simple . | String |
CallbackType | Callback segment type. Valid values: 1 (calls back all captured frames and audio segments); 2 (calls back only non-compliant captured frames and audio segments). Default value: 1 . | Integer |
DetectContent | Whether to moderate video sound. Valid values: 0 (moderates the video image only), 1 (moderates both the video image and video sound). Default value: 0 . | Integer |
Mode | Frame capturing mode. Valid values: Interval (interval mode), Average (average mode), Fps (fixed frame rate mode). Default value: Interval . Interval mode: The TimeInterval and Count parameters take effect. If Count is set but TimeInterval is not, all frames will be captured to generate a total of Count images. Average mode: The Count parameter takes effect, indicating to capture a total of Count images at an average interval in the entire video. Fps mode: TimeInterval indicates how many frames to capture per second. If TimeInterval is not set, all frames will be captured to generate a total of Count images. | String |
Count | The number of captured frames. Value range: (0, 10000]. | Integer |
TimeInterval | Video frame capturing frequency. Value range: (0.000, 60.000] seconds. The value supports the float format, accurate to the millisecond. | Float |
PutVideoAuditingJob
function will parse the XML content returned by the API into the PutVideoAuditingJobResult
structure. For specific response parameters, see Submitting Video Moderation Job.GetVideoAuditingJob
) is used to query the result of the specified video moderation job by JobId
.func (s *CIService) GetVideoAuditingJob(ctx context.Context, jobid string) (*GetVideoAuditingJobResult, *Response, error)
// Replace `examplebucket-1250000000` and `COS_REGION` with your actual information// For CI jobs, you need to provide the CIURL.bu, _ := 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 := "avce25f391a72e11eb99f********"res, _, err := c.CI.GetVideoAuditingJob(context.Background(), jobId)
Parameter | Description | Type |
jobId | Job ID | String |
GetVideoAuditingJob
function will parse the XML content returned by the API into the GetVideoAuditingJobResult
structure. For specific response parameters, see Querying Video Moderation Job Result.
Apakah halaman ini membantu?