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

Creating a Video Moderation Job

  1. This section describes how to create 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. You can use the withUrls method of the RunCreateVideoModerationJobRequest class to configure the URLs of the videos to be reviewed, and then execute the code.

    # coding: utf-8
     
    from huaweicloudsdkcore.auth.credentials import BasicCredentials
    from huaweicloudsdkmoderation.v3.region.moderation_region import ModerationRegion
    from huaweicloudsdkcore.exceptions import exceptions
    from huaweicloudsdkmoderation.v3 import *
     
    if __name__ == "__main__":
           //Enter your AK/SK.
        ak = "<YOUR AK>"
        sk = "<YOUR SK>"
     
        credentials = BasicCredentials(ak, sk) \
     
        client = ModerationClient.new_builder() \
            .with_credentials(credentials) \
            .with_region(ModerationRegion.value_of("xxx")) \    //Replace xxx with the region where the service is located.
            .build()
     
        try:
            request = RunCreateVideoModerationJobRequest()
            listAudioCategoriesbody = [
                "porn"
            ]
            listImageCategoriesbody = [
                "porn"
            ]
            databody = VideoCreateRequestData(
                url="http://xxx.xx.xxxx",
                frame_interval=5.5
            )
            request.body = VideoCreateRequest(
                callback="http://xxx.xx.xxxx",
                audio_categories=listAudioCategoriesbody,
                image_categories=listImageCategoriesbody,
                event_type="default",
                data=databody
            )
            response = client.run_create_video_moderation_job(request)
            print(response)
        except exceptions.ClientRequestException as e:
            print(e.status_code)
            print(e.request_id)
            print(e.error_code)
            print(e.error_msg)
  2. The console returns the creation result of the video moderation job.
    {"request_id": "dbbcb75d1a174bfa899a38be38fdd107", "job_id": "xxx"}