Updated on 2023-07-17 GMT+08:00

Querying a Video Moderation Job

  1. This section describes how to query a video moderation job using the video moderation SDK and AK/SK.

    Replace the AK/SK in the sample code with the actual AK/SK. Use the withJobId method of the RunQueryVideoModerationJobRequest class to configure the ID of the moderation task, and then execute the code.

    package com.huaweicloud.sdk.test;
     
    import com.huaweicloud.sdk.core.auth.ICredential;
    import com.huaweicloud.sdk.core.auth.BasicCredentials;
    import com.huaweicloud.sdk.core.exception.ConnectionException;
    import com.huaweicloud.sdk.core.exception.RequestTimeoutException;
    import com.huaweicloud.sdk.core.exception.ServiceResponseException;
    import com.huaweicloud.sdk.moderation.v3.region.ModerationRegion;
    import com.huaweicloud.sdk.moderation.v3.*;
    import com.huaweicloud.sdk.moderation.v3.model.*;
     
    public class RunQueryVideoModerationJobSolution {
     
        public static void main(String[] args) {
           //Enter your AK/SK.
            String ak = "<YOUR AK>";
            String sk = "<YOUR SK>";
     
            ICredential auth = new BasicCredentials()
                    .withAk(ak)
                    .withSk(sk);
     
            ModerationClient client = ModerationClient.newBuilder()
                    .withCredential(auth)
                    .withRegion(ModerationRegion.valueOf("xxx"))  //Replace xxx with the region where the service is located.
                    .build();
            RunQueryVideoModerationJobRequest request = new RunQueryVideoModerationJobRequest();
            request.withJobId("jobId");
            try {
                RunQueryVideoModerationJobResponse response = client.runQueryVideoModerationJob(request);
                System.out.println(response.toString());
            } catch (ConnectionException e) {
                e.printStackTrace();
            } catch (RequestTimeoutException e) {
                e.printStackTrace();
            } catch (ServiceResponseException e) {
                e.printStackTrace();
                System.out.println(e.getHttpStatusCode());
                System.out.println(e.getErrorCode());
                System.out.println(e.getErrorMsg());
            }
        }
    }
  2. The console returns the query result of the video moderation job.
    class RunQueryVideoModerationJobResponse {
        requestId: a6dcb5c9f993efb977c8898e1ef91c87
        jobId: 01663171200_48ce5a21498e47af8f2a49773c3d0fce
        status: running
        requestParams: class VideoModerationResultRequestParams {
            data: class VideoModerationResultRequestParamsData {
                url: http://xxx.xx.xxxx
                frameInterval: 5
            }
            eventType: default
            imageCategories: [porn, image_text, terrorism]
            audioCategories: [ad, porn]
            callback: http://xxx.xx.xxxx
        }
        createTime: null
        updateTime: 2022-09-15T14:08:06.006Z
        result: null
    }