Configuration Item | Description |
Storage path | When selecting the storage path, the system will verify whether you have authorized StreamLive the read and write permissions on Tencent Cloud COS. Only after authorization can StreamLive read the storage path information and store images in COS. If you have already authorized StreamLive with read and write permissions on COS, you can directly click Select to choose the storage path. If you have not yet authorized StreamLive with read and write permissions on COS, after clicking Select , please follow the system prompts to complete the authorization and then choose the storage path. |
File Name | The file name consists of two parts: base file name, file generation time. Base file name: Required, supports input of 1-32 characters including numbers, letters, underscores, and hyphens. File generation time: Supports both Unix and UTC (+0:00) formats, which can be set in the timestamp format. |
Timestamp format | Supports both Unix and UTC (+0:00) formats. |
Configuration Item | Description |
Subaccount | In AWS Identity and Access Management (IAM), create a sub-account via 'Add users', grant the sub-account the corresponding S3 bucket permissions. Record the Access key ID and Secret access key, and enter them here as the secret ID and secret key. For details, refer to: Configure AWS Sub-account and Policy |
Output S3 Bucket | S3 Region: Enter the region where the S3 bucket is located. Use the following format 'ap-southeast-1'. S3 bucket name. |
Output File Path | Enter the folder directory path, starting and ending with /. For example: /output/. If not entered, the root directory of this S3 bucket will be used by default. |
File Name | The file name consists of two parts: base file name, file generation time. Base file name: Required, supports input of 1-32 characters including numbers, letters, underscores, and hyphens. File generation time: Supports both Unix and UTC (+0:00) formats, which can be set in the timestamp format. |
Timestamp format | Supports both Unix and UTC (+0:00) formats. |
Configuration Item | Description |
Name | The following detailed parameters will be saved under this name. You can enter 1-20 characters consisting of letters and numbers. You can also reuse existing parameter template by clicking Copy above. |
Width,Height | Enter the resolution of the output image, specifying width and height separately. If left blank or set to 0, the resolution will follow the source image. If a value is entered, it must be an even number between 0 and 3000. |
Capture Interval Units | Currently, only SECONDS is supported. |
Capture Interval | You can enter a positive integer between 1 and 3600, representing 1-3600 seconds. |
Scaling Behavior | When there is a discrepancy between the source stream resolution and the set output resolution, you can define the image scaling behavior: DEFAULT: Insert black boxes around the image to provide the specified output resolution. STRETCH_TO_OUTPUT: Stretch the image to the specified output resolution. |
Sharpness | Changes the strength of the anti-alias filter used for scaling. 0 is the softest setting, 100 is the sharpest. A setting of 50 is recommended for most content. |
Resource
of the JSON, make sure you attach /*
to the S3 ARN. For example, if your S3 ARN is arn:aws:s3:::thebucketname
, enter arn:aws:s3:::thebucketname/*
.{ "Version": "2012-10-17", "Statement": [ { "Sid": "Statement1", "Effect": "Allow", "Action": [ "s3:PutObject" ], "Resource": [ "arn:aws:s3:::thebucketname/*" ] } ] }
{ "Version": "2012-10-17", "Statement": [ { "Sid": "Statement1", "Effect": "Allow", "Action": [ "s3:PutObject" ], "Resource": [ "*" ] } ] }
Was this page helpful?