Updated on 2026-01-08 GMT+08:00

Snapshot Capturing

Live captures snapshots from a livestream based on a configured template and stores the captured snapshots in an OBS bucket. Multiple snapshot templates can be configured for an ingest domain name. The template whose App Name match those in your ingest URL will be applied.

Process Flow

Figure 1 shows the process for configuring a snapshot template.

Figure 1 Process for configuring a snapshot template
  1. (Optional) Create an OBS bucket for storing live video snapshots. If you already have one, go to 2.

    The OBS bucket for storing live video snapshots must be in the same region as the Live service. For example, if you use Live in the CN North-Beijing4 region, then snapshots must be stored in an OBS bucket in the CN North-Beijing4 region.

  2. Authorize access to the OBS bucket so that the system can save the snapshots in the OBS bucket.
  3. Configure a snapshot template to capture snapshots from a video stream at a specified interval and save them as JPG files in an authorized OBS bucket.
  4. View snapshots in the output path.

Notes

  • Live and the OBS bucket for storing snapshots must be in the same region.
  • You are advised to set the OBS bucket as a private bucket. The differences between a private bucket and a public bucket are as follows:
    • Private bucket: You must add authentication information before accessing the bucket and downloading snapshots. For details about the authentication information, see Creating a Signed URL (SDK for Go).
    • Public bucket: You can directly access the bucket and download snapshots.
  • Multiple snapshot templates can be configured for a domain name. The snapshot template whose App Name matches that in your ingest URL will be applied.
  • Only JPG files can be generated.
  • In the AP-Bangkok region, submit a service ticket for review after configuring a template. The configuration takes effect only after it is approved.
  • Huawei Cloud Live plans to bring offline the function of carrying authentication information in a snapshot callback URL on August 15, 2024.

Prerequisites

Pricing Notes

Step 1: (Optional) Create an OBS Bucket

If you have not created an OBS bucket, create one in the region of Live. If you already have one, go to Step 2: Authorize Access to the OBS Bucket.

Step 2: Authorize Access to the OBS Bucket

For details, see OBS Authorization.

Step 3: Configure a Snapshot Template

After OBS authorization is successful, you can configure a snapshot template.

  1. Log in to the Live console.
  2. In the navigation pane, choose Domains.
  3. Click Manage in the Operation column of the desired ingest domain name.
  4. In the navigation pane, choose Templates > Snapshot Capturing.
  5. Click Create Snapshot Template. The Snapshot Capturing dialog box is displayed on the right.

    Figure 2 Creating a snapshot template

    Table 1 describes the parameters.

    Table 1 Template parameters

    Parameter

    Description

    App Name

    Application name. The default value is live. You can customize the application name. Only letters, digits, underscores (_), and hyphens (-) are allowed. The snapshot template whose application name matches that in your ingest URL takes effect.

    Storage Location

    Live snapshots are stored in OBS.

    Storage Bucket

    OBS bucket for storing snapshots

    Storage Path (Optional)

    OBS bucket path for storing snapshots

    Capturing Frequency

    Snapshot capturing frequency, in seconds.

    Value range: 5 to 3,600

    Storage Mode

    Snapshot file storage mode.

    • All: A snapshot file name contains the timestamp. All snapshot files of each stream are stored in OBS. Example: snapshot/{domain}/{app_name}/{stream_name}/{UnixTimestamp}.jpg
    • Latest: A snapshot file name does not contain the timestamp. Only the latest snapshot file of each stream will be saved. A new snapshot file overwrites the previous one. Example: snapshot/{domain}/{app_name}/{stream_name}.jpg

    Callback

    Whether to enable callback If this function is enabled, you need to deploy an HTTP/HTTPS service to receive callback messages and configure a callback URL on the console or using APIs. When a snapshot is successfully captured, the Live server sends a POST request to the callback URL. The request body is in JSON format.

    Protocol

    A callback URL supports HTTP and HTTPS. HTTPS is more secure than HTTP and is recommended.

    Callback URL

    Enter a callback URL when Callback is enabled. A callback URL cannot contain message headers or parameters. HTTP and HTTPS (recommended) are supported.

    Callback messages in JSON format are sent in POST requests to your server through HTTP APIs. For details about a callback message body, see Callback Message.

    Authentication Key (Optional)

    Authentication key. Configure this parameter only when callback authentication is required.

    • A key contains 32 to 128 characters.
    • A key can also be automatically generated.

  6. Click OK.

    After the snapshot template is configured, you can start streaming live videos. The Live service will take snapshots for livestreams based on the snapshot template.

  7. Click Edit in the Operation column to modify template parameters. App Name cannot be modified.

Step 4: View Snapshots

View snapshots in the predefined output path or from a download link in your received callback message.

  • Viewing snapshots on the console
    1. Log in to the Live console.
    2. In the navigation pane, choose Domains.
    3. Click Manage in the Operation column of the desired ingest domain name.
    4. In the navigation pane, choose Templates > Snapshot Capturing.
    5. Click the output path in the Storage Location column to go to the OBS bucket and view snapshot details.
      Figure 3 Viewing snapshot details

      You can download and share the snapshots. For details, see OBS Help Center.

  • Viewing snapshots through a callback message

    If you set a callback URL when configuring a snapshot template, then you will receive a message each time a snapshot is generated. Table 2 describes the fields in a callback message.

    { 
        "domain": "play.example.com",
        "app": "live",
        "stream_name": "test001",
        "snapshot_url": "https://xxx.obs.cn-north-4.myhuaweicloud.com:443...",
        "width":"720",
        "height":"1280",
        "obs_addr": {
            "bucket": "xxx",
            "location": "cn-north-4",
            "object": "xxx.jpg"
        },
       "auth_timestamp":1587954140,
        "auth_sign":"4918b1axxxxxxb583cffa119d72513bbc35a989f8569fxxxxxx057646154a04a"
    }
    Table 2 Message body

    Field

    Description

    domain

    Ingest domain name

    app

    Application name

    stream_name

    Stream name

    snapshot_url

    URL to download snapshots

    width

    Image width

    Unit: pixel

    height

    Image height

    Unit: pixel

    obs_addr

    Address of the OBS bucket where snapshots are stored.
    • bucket: OBS bucket name
    • location: Region where the OBS bucket is located
    • object: OBS object path

    auth_timestamp

    UNIX timestamp when the event notification signature expires. This parameter is carried when an authentication key is configured.

    The value is a decimal Unix timestamp, that is, the number of seconds that have elapsed since January 1, 1970 00:00:00 UTC/GMT.

    Example: 1592639100 (June 20, 2020 15:45)

    auth_sign

    Event notification signature. This parameter is carried when an authentication key is configured.

    auth_sign = HmacSHA256(domain + app + stream_name + snapshot_url + width + height + obs_addr.bucket + obs_addr.location + obs_addr.object + auth_timestamp,key)

    key indicates the key used for authentication.