1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getMpsMediaMetaData
tencentcloud 1.81.183 published on Wednesday, Apr 16, 2025 by tencentcloudstack

tencentcloud.getMpsMediaMetaData

Explore with Pulumi AI

Use this data source to query detailed information of mps media_meta_data

Example Usage

Query the mps media meta data through COS

import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";

const object = tencentcloud.getCosBucketObject({
    bucket: `keep-bucket-${local.app_id}`,
    key: "/mps-test/test.mov",
});
const metadata = Promise.all([object, object]).then(([object, object1]) => tencentcloud.getMpsMediaMetaData({
    inputInfo: {
        type: "COS",
        cosInputInfo: {
            bucket: object.bucket,
            region: "%s",
            object: object1.key,
        },
    },
}));
Copy
import pulumi
import pulumi_tencentcloud as tencentcloud

object = tencentcloud.get_cos_bucket_object(bucket=f"keep-bucket-{local['app_id']}",
    key="/mps-test/test.mov")
metadata = tencentcloud.get_mps_media_meta_data(input_info={
    "type": "COS",
    "cos_input_info": {
        "bucket": object.bucket,
        "region": "%s",
        "object": object.key,
    },
})
Copy
package main

import (
	"fmt"

	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		object, err := tencentcloud.LookupCosBucketObject(ctx, &tencentcloud.LookupCosBucketObjectArgs{
			Bucket: fmt.Sprintf("keep-bucket-%v", local.App_id),
			Key:    "/mps-test/test.mov",
		}, nil)
		if err != nil {
			return err
		}
		_, err = tencentcloud.GetMpsMediaMetaData(ctx, &tencentcloud.GetMpsMediaMetaDataArgs{
			InputInfo: tencentcloud.GetMpsMediaMetaDataInputInfo{
				Type: "COS",
				CosInputInfo: tencentcloud.GetMpsMediaMetaDataInputInfoCosInputInfo{
					Bucket: object.Bucket,
					Region: "%s",
					Object: object.Key,
				},
			},
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;

return await Deployment.RunAsync(() => 
{
    var @object = Tencentcloud.GetCosBucketObject.Invoke(new()
    {
        Bucket = $"keep-bucket-{local.App_id}",
        Key = "/mps-test/test.mov",
    });

    var metadata = Tencentcloud.GetMpsMediaMetaData.Invoke(new()
    {
        InputInfo = new Tencentcloud.Inputs.GetMpsMediaMetaDataInputInfoInputArgs
        {
            Type = "COS",
            CosInputInfo = new Tencentcloud.Inputs.GetMpsMediaMetaDataInputInfoCosInputInfoInputArgs
            {
                Bucket = @object.Apply(getCosBucketObjectResult => getCosBucketObjectResult.Bucket),
                Region = "%s",
                Object = @object.Apply(getCosBucketObjectResult => getCosBucketObjectResult.Key),
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetCosBucketObjectArgs;
import com.pulumi.tencentcloud.inputs.GetMpsMediaMetaDataArgs;
import com.pulumi.tencentcloud.inputs.GetMpsMediaMetaDataInputInfoArgs;
import com.pulumi.tencentcloud.inputs.GetMpsMediaMetaDataInputInfoCosInputInfoArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var object = TencentcloudFunctions.getCosBucketObject(GetCosBucketObjectArgs.builder()
            .bucket(String.format("keep-bucket-%s", local.app_id()))
            .key("/mps-test/test.mov")
            .build());

        final var metadata = TencentcloudFunctions.getMpsMediaMetaData(GetMpsMediaMetaDataArgs.builder()
            .inputInfo(GetMpsMediaMetaDataInputInfoArgs.builder()
                .type("COS")
                .cosInputInfo(GetMpsMediaMetaDataInputInfoCosInputInfoArgs.builder()
                    .bucket(object.applyValue(getCosBucketObjectResult -> getCosBucketObjectResult.bucket()))
                    .region("%s")
                    .object(object.applyValue(getCosBucketObjectResult -> getCosBucketObjectResult.key()))
                    .build())
                .build())
            .build());

    }
}
Copy
variables:
  object:
    fn::invoke:
      function: tencentcloud:getCosBucketObject
      arguments:
        bucket: keep-bucket-${local.app_id}
        key: /mps-test/test.mov
  metadata:
    fn::invoke:
      function: tencentcloud:getMpsMediaMetaData
      arguments:
        inputInfo:
          type: COS
          cosInputInfo:
            bucket: ${object.bucket}
            region: '%s'
            object: ${object.key}
Copy

Using getMpsMediaMetaData

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getMpsMediaMetaData(args: GetMpsMediaMetaDataArgs, opts?: InvokeOptions): Promise<GetMpsMediaMetaDataResult>
function getMpsMediaMetaDataOutput(args: GetMpsMediaMetaDataOutputArgs, opts?: InvokeOptions): Output<GetMpsMediaMetaDataResult>
Copy
def get_mps_media_meta_data(id: Optional[str] = None,
                            input_info: Optional[GetMpsMediaMetaDataInputInfo] = None,
                            result_output_file: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetMpsMediaMetaDataResult
def get_mps_media_meta_data_output(id: Optional[pulumi.Input[str]] = None,
                            input_info: Optional[pulumi.Input[GetMpsMediaMetaDataInputInfoArgs]] = None,
                            result_output_file: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetMpsMediaMetaDataResult]
Copy
func GetMpsMediaMetaData(ctx *Context, args *GetMpsMediaMetaDataArgs, opts ...InvokeOption) (*GetMpsMediaMetaDataResult, error)
func GetMpsMediaMetaDataOutput(ctx *Context, args *GetMpsMediaMetaDataOutputArgs, opts ...InvokeOption) GetMpsMediaMetaDataResultOutput
Copy

> Note: This function is named GetMpsMediaMetaData in the Go SDK.

public static class GetMpsMediaMetaData 
{
    public static Task<GetMpsMediaMetaDataResult> InvokeAsync(GetMpsMediaMetaDataArgs args, InvokeOptions? opts = null)
    public static Output<GetMpsMediaMetaDataResult> Invoke(GetMpsMediaMetaDataInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetMpsMediaMetaDataResult> getMpsMediaMetaData(GetMpsMediaMetaDataArgs args, InvokeOptions options)
public static Output<GetMpsMediaMetaDataResult> getMpsMediaMetaData(GetMpsMediaMetaDataArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: tencentcloud:index/getMpsMediaMetaData:getMpsMediaMetaData
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

InputInfo This property is required. GetMpsMediaMetaDataInputInfo
Input information of file for metadata getting.
Id string
ResultOutputFile string
Used to save results.
InputInfo This property is required. GetMpsMediaMetaDataInputInfo
Input information of file for metadata getting.
Id string
ResultOutputFile string
Used to save results.
inputInfo This property is required. GetMpsMediaMetaDataInputInfo
Input information of file for metadata getting.
id String
resultOutputFile String
Used to save results.
inputInfo This property is required. GetMpsMediaMetaDataInputInfo
Input information of file for metadata getting.
id string
resultOutputFile string
Used to save results.
input_info This property is required. GetMpsMediaMetaDataInputInfo
Input information of file for metadata getting.
id str
result_output_file str
Used to save results.
inputInfo This property is required. Property Map
Input information of file for metadata getting.
id String
resultOutputFile String
Used to save results.

getMpsMediaMetaData Result

The following output properties are available:

Supporting Types

GetMpsMediaMetaDataInputInfo

Type This property is required. string
The input type. Valid values:COS: A COS bucket address.URL: A URL.AWS-S3: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
CosInputInfo GetMpsMediaMetaDataInputInfoCosInputInfo
The information of the COS object to process. This parameter is valid and required when Type is COS.
S3InputInfo GetMpsMediaMetaDataInputInfoS3InputInfo
The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
UrlInputInfo GetMpsMediaMetaDataInputInfoUrlInputInfo
The URL of the object to process. This parameter is valid and required when Type is URL.Note: This field may return null, indicating that no valid value can be obtained.
Type This property is required. string
The input type. Valid values:COS: A COS bucket address.URL: A URL.AWS-S3: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
CosInputInfo GetMpsMediaMetaDataInputInfoCosInputInfo
The information of the COS object to process. This parameter is valid and required when Type is COS.
S3InputInfo GetMpsMediaMetaDataInputInfoS3InputInfo
The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
UrlInputInfo GetMpsMediaMetaDataInputInfoUrlInputInfo
The URL of the object to process. This parameter is valid and required when Type is URL.Note: This field may return null, indicating that no valid value can be obtained.
type This property is required. String
The input type. Valid values:COS: A COS bucket address.URL: A URL.AWS-S3: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
cosInputInfo GetMpsMediaMetaDataInputInfoCosInputInfo
The information of the COS object to process. This parameter is valid and required when Type is COS.
s3InputInfo GetMpsMediaMetaDataInputInfoS3InputInfo
The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
urlInputInfo GetMpsMediaMetaDataInputInfoUrlInputInfo
The URL of the object to process. This parameter is valid and required when Type is URL.Note: This field may return null, indicating that no valid value can be obtained.
type This property is required. string
The input type. Valid values:COS: A COS bucket address.URL: A URL.AWS-S3: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
cosInputInfo GetMpsMediaMetaDataInputInfoCosInputInfo
The information of the COS object to process. This parameter is valid and required when Type is COS.
s3InputInfo GetMpsMediaMetaDataInputInfoS3InputInfo
The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
urlInputInfo GetMpsMediaMetaDataInputInfoUrlInputInfo
The URL of the object to process. This parameter is valid and required when Type is URL.Note: This field may return null, indicating that no valid value can be obtained.
type This property is required. str
The input type. Valid values:COS: A COS bucket address.URL: A URL.AWS-S3: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
cos_input_info GetMpsMediaMetaDataInputInfoCosInputInfo
The information of the COS object to process. This parameter is valid and required when Type is COS.
s3_input_info GetMpsMediaMetaDataInputInfoS3InputInfo
The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
url_input_info GetMpsMediaMetaDataInputInfoUrlInputInfo
The URL of the object to process. This parameter is valid and required when Type is URL.Note: This field may return null, indicating that no valid value can be obtained.
type This property is required. String
The input type. Valid values:COS: A COS bucket address.URL: A URL.AWS-S3: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
cosInputInfo Property Map
The information of the COS object to process. This parameter is valid and required when Type is COS.
s3InputInfo Property Map
The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
urlInputInfo Property Map
The URL of the object to process. This parameter is valid and required when Type is URL.Note: This field may return null, indicating that no valid value can be obtained.

GetMpsMediaMetaDataInputInfoCosInputInfo

Bucket This property is required. string
The COS bucket of the object to process, such as TopRankVideo-125xxx88.
Object This property is required. string
The path of the object to process, such as /movie/201907/WildAnimal.mov.
Region This property is required. string
The region of the COS bucket, such as ap-chongqing.
Bucket This property is required. string
The COS bucket of the object to process, such as TopRankVideo-125xxx88.
Object This property is required. string
The path of the object to process, such as /movie/201907/WildAnimal.mov.
Region This property is required. string
The region of the COS bucket, such as ap-chongqing.
bucket This property is required. String
The COS bucket of the object to process, such as TopRankVideo-125xxx88.
object This property is required. String
The path of the object to process, such as /movie/201907/WildAnimal.mov.
region This property is required. String
The region of the COS bucket, such as ap-chongqing.
bucket This property is required. string
The COS bucket of the object to process, such as TopRankVideo-125xxx88.
object This property is required. string
The path of the object to process, such as /movie/201907/WildAnimal.mov.
region This property is required. string
The region of the COS bucket, such as ap-chongqing.
bucket This property is required. str
The COS bucket of the object to process, such as TopRankVideo-125xxx88.
object This property is required. str
The path of the object to process, such as /movie/201907/WildAnimal.mov.
region This property is required. str
The region of the COS bucket, such as ap-chongqing.
bucket This property is required. String
The COS bucket of the object to process, such as TopRankVideo-125xxx88.
object This property is required. String
The path of the object to process, such as /movie/201907/WildAnimal.mov.
region This property is required. String
The region of the COS bucket, such as ap-chongqing.

GetMpsMediaMetaDataInputInfoS3InputInfo

S3Bucket This property is required. string
The AWS S3 bucket.
S3Object This property is required. string
The path of the AWS S3 object.
S3Region This property is required. string
The region of the AWS S3 bucket.
S3SecretId string
The key ID required to access the AWS S3 object.
S3SecretKey string
The key required to access the AWS S3 object.
S3Bucket This property is required. string
The AWS S3 bucket.
S3Object This property is required. string
The path of the AWS S3 object.
S3Region This property is required. string
The region of the AWS S3 bucket.
S3SecretId string
The key ID required to access the AWS S3 object.
S3SecretKey string
The key required to access the AWS S3 object.
s3Bucket This property is required. String
The AWS S3 bucket.
s3Object This property is required. String
The path of the AWS S3 object.
s3Region This property is required. String
The region of the AWS S3 bucket.
s3SecretId String
The key ID required to access the AWS S3 object.
s3SecretKey String
The key required to access the AWS S3 object.
s3Bucket This property is required. string
The AWS S3 bucket.
s3Object This property is required. string
The path of the AWS S3 object.
s3Region This property is required. string
The region of the AWS S3 bucket.
s3SecretId string
The key ID required to access the AWS S3 object.
s3SecretKey string
The key required to access the AWS S3 object.
s3_bucket This property is required. str
The AWS S3 bucket.
s3_object This property is required. str
The path of the AWS S3 object.
s3_region This property is required. str
The region of the AWS S3 bucket.
s3_secret_id str
The key ID required to access the AWS S3 object.
s3_secret_key str
The key required to access the AWS S3 object.
s3Bucket This property is required. String
The AWS S3 bucket.
s3Object This property is required. String
The path of the AWS S3 object.
s3Region This property is required. String
The region of the AWS S3 bucket.
s3SecretId String
The key ID required to access the AWS S3 object.
s3SecretKey String
The key required to access the AWS S3 object.

GetMpsMediaMetaDataInputInfoUrlInputInfo

Url This property is required. string
URL of a video.
Url This property is required. string
URL of a video.
url This property is required. String
URL of a video.
url This property is required. string
URL of a video.
url This property is required. str
URL of a video.
url This property is required. String
URL of a video.

GetMpsMediaMetaDataMetaData

AudioDuration This property is required. double
Audio duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
AudioStreamSets This property is required. List<GetMpsMediaMetaDataMetaDataAudioStreamSet>
Audio stream information.Note: This field may return null, indicating that no valid values can be obtained.
Bitrate This property is required. double
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
Container This property is required. string
Container, such as m4a and mp4.Note: This field may return null, indicating that no valid values can be obtained.
Duration This property is required. double
Video duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
Height This property is required. double
Height of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
Rotate This property is required. double
Selected angle during video recording in degrees.Note: This field may return null, indicating that no valid values can be obtained.
Size This property is required. double
Size of an uploaded media file in bytes (which is the sum of size of m3u8 and ts files if the video is in HLS format).Note: This field may return null, indicating that no valid values can be obtained.
VideoDuration This property is required. double
Video duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
VideoStreamSets This property is required. List<GetMpsMediaMetaDataMetaDataVideoStreamSet>
Video stream information.Note: This field may return null, indicating that no valid values can be obtained.
Width This property is required. double
Maximum value of the width of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
AudioDuration This property is required. float64
Audio duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
AudioStreamSets This property is required. []GetMpsMediaMetaDataMetaDataAudioStreamSet
Audio stream information.Note: This field may return null, indicating that no valid values can be obtained.
Bitrate This property is required. float64
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
Container This property is required. string
Container, such as m4a and mp4.Note: This field may return null, indicating that no valid values can be obtained.
Duration This property is required. float64
Video duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
Height This property is required. float64
Height of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
Rotate This property is required. float64
Selected angle during video recording in degrees.Note: This field may return null, indicating that no valid values can be obtained.
Size This property is required. float64
Size of an uploaded media file in bytes (which is the sum of size of m3u8 and ts files if the video is in HLS format).Note: This field may return null, indicating that no valid values can be obtained.
VideoDuration This property is required. float64
Video duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
VideoStreamSets This property is required. []GetMpsMediaMetaDataMetaDataVideoStreamSet
Video stream information.Note: This field may return null, indicating that no valid values can be obtained.
Width This property is required. float64
Maximum value of the width of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
audioDuration This property is required. Double
Audio duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
audioStreamSets This property is required. List<GetMpsMediaMetaDataMetaDataAudioStreamSet>
Audio stream information.Note: This field may return null, indicating that no valid values can be obtained.
bitrate This property is required. Double
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
container This property is required. String
Container, such as m4a and mp4.Note: This field may return null, indicating that no valid values can be obtained.
duration This property is required. Double
Video duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
height This property is required. Double
Height of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
rotate This property is required. Double
Selected angle during video recording in degrees.Note: This field may return null, indicating that no valid values can be obtained.
size This property is required. Double
Size of an uploaded media file in bytes (which is the sum of size of m3u8 and ts files if the video is in HLS format).Note: This field may return null, indicating that no valid values can be obtained.
videoDuration This property is required. Double
Video duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
videoStreamSets This property is required. List<GetMpsMediaMetaDataMetaDataVideoStreamSet>
Video stream information.Note: This field may return null, indicating that no valid values can be obtained.
width This property is required. Double
Maximum value of the width of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
audioDuration This property is required. number
Audio duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
audioStreamSets This property is required. GetMpsMediaMetaDataMetaDataAudioStreamSet[]
Audio stream information.Note: This field may return null, indicating that no valid values can be obtained.
bitrate This property is required. number
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
container This property is required. string
Container, such as m4a and mp4.Note: This field may return null, indicating that no valid values can be obtained.
duration This property is required. number
Video duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
height This property is required. number
Height of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
rotate This property is required. number
Selected angle during video recording in degrees.Note: This field may return null, indicating that no valid values can be obtained.
size This property is required. number
Size of an uploaded media file in bytes (which is the sum of size of m3u8 and ts files if the video is in HLS format).Note: This field may return null, indicating that no valid values can be obtained.
videoDuration This property is required. number
Video duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
videoStreamSets This property is required. GetMpsMediaMetaDataMetaDataVideoStreamSet[]
Video stream information.Note: This field may return null, indicating that no valid values can be obtained.
width This property is required. number
Maximum value of the width of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
audio_duration This property is required. float
Audio duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
audio_stream_sets This property is required. Sequence[GetMpsMediaMetaDataMetaDataAudioStreamSet]
Audio stream information.Note: This field may return null, indicating that no valid values can be obtained.
bitrate This property is required. float
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
container This property is required. str
Container, such as m4a and mp4.Note: This field may return null, indicating that no valid values can be obtained.
duration This property is required. float
Video duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
height This property is required. float
Height of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
rotate This property is required. float
Selected angle during video recording in degrees.Note: This field may return null, indicating that no valid values can be obtained.
size This property is required. float
Size of an uploaded media file in bytes (which is the sum of size of m3u8 and ts files if the video is in HLS format).Note: This field may return null, indicating that no valid values can be obtained.
video_duration This property is required. float
Video duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
video_stream_sets This property is required. Sequence[GetMpsMediaMetaDataMetaDataVideoStreamSet]
Video stream information.Note: This field may return null, indicating that no valid values can be obtained.
width This property is required. float
Maximum value of the width of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
audioDuration This property is required. Number
Audio duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
audioStreamSets This property is required. List<Property Map>
Audio stream information.Note: This field may return null, indicating that no valid values can be obtained.
bitrate This property is required. Number
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
container This property is required. String
Container, such as m4a and mp4.Note: This field may return null, indicating that no valid values can be obtained.
duration This property is required. Number
Video duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
height This property is required. Number
Height of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
rotate This property is required. Number
Selected angle during video recording in degrees.Note: This field may return null, indicating that no valid values can be obtained.
size This property is required. Number
Size of an uploaded media file in bytes (which is the sum of size of m3u8 and ts files if the video is in HLS format).Note: This field may return null, indicating that no valid values can be obtained.
videoDuration This property is required. Number
Video duration in seconds.Note: This field may return null, indicating that no valid values can be obtained.
videoStreamSets This property is required. List<Property Map>
Video stream information.Note: This field may return null, indicating that no valid values can be obtained.
width This property is required. Number
Maximum value of the width of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.

GetMpsMediaMetaDataMetaDataAudioStreamSet

Bitrate This property is required. double
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
Channel This property is required. double
Number of sound channels, e.g., 2Note: this field may return null, indicating that no valid value was found.
Codec This property is required. string
Video stream codec, such as h264.Note: This field may return null, indicating that no valid values can be obtained.
SamplingRate This property is required. double
Sample rate of an audio stream in Hz.Note: This field may return null, indicating that no valid values can be obtained.
Bitrate This property is required. float64
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
Channel This property is required. float64
Number of sound channels, e.g., 2Note: this field may return null, indicating that no valid value was found.
Codec This property is required. string
Video stream codec, such as h264.Note: This field may return null, indicating that no valid values can be obtained.
SamplingRate This property is required. float64
Sample rate of an audio stream in Hz.Note: This field may return null, indicating that no valid values can be obtained.
bitrate This property is required. Double
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
channel This property is required. Double
Number of sound channels, e.g., 2Note: this field may return null, indicating that no valid value was found.
codec This property is required. String
Video stream codec, such as h264.Note: This field may return null, indicating that no valid values can be obtained.
samplingRate This property is required. Double
Sample rate of an audio stream in Hz.Note: This field may return null, indicating that no valid values can be obtained.
bitrate This property is required. number
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
channel This property is required. number
Number of sound channels, e.g., 2Note: this field may return null, indicating that no valid value was found.
codec This property is required. string
Video stream codec, such as h264.Note: This field may return null, indicating that no valid values can be obtained.
samplingRate This property is required. number
Sample rate of an audio stream in Hz.Note: This field may return null, indicating that no valid values can be obtained.
bitrate This property is required. float
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
channel This property is required. float
Number of sound channels, e.g., 2Note: this field may return null, indicating that no valid value was found.
codec This property is required. str
Video stream codec, such as h264.Note: This field may return null, indicating that no valid values can be obtained.
sampling_rate This property is required. float
Sample rate of an audio stream in Hz.Note: This field may return null, indicating that no valid values can be obtained.
bitrate This property is required. Number
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
channel This property is required. Number
Number of sound channels, e.g., 2Note: this field may return null, indicating that no valid value was found.
codec This property is required. String
Video stream codec, such as h264.Note: This field may return null, indicating that no valid values can be obtained.
samplingRate This property is required. Number
Sample rate of an audio stream in Hz.Note: This field may return null, indicating that no valid values can be obtained.

GetMpsMediaMetaDataMetaDataVideoStreamSet

Bitrate This property is required. double
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
Codec This property is required. string
Video stream codec, such as h264.Note: This field may return null, indicating that no valid values can be obtained.
ColorPrimaries This property is required. string
Color primariesNote: this field may return null, indicating that no valid value was found.
ColorSpace This property is required. string
Color spaceNote: this field may return null, indicating that no valid value was found.
ColorTransfer This property is required. string
Color transferNote: this field may return null, indicating that no valid value was found.
Fps This property is required. double
Frame rate in Hz.Note: This field may return null, indicating that no valid values can be obtained.
HdrType This property is required. string
HDR typeNote: This field may return null, indicating that no valid value was found.
Height This property is required. double
Height of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
Width This property is required. double
Maximum value of the width of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
Bitrate This property is required. float64
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
Codec This property is required. string
Video stream codec, such as h264.Note: This field may return null, indicating that no valid values can be obtained.
ColorPrimaries This property is required. string
Color primariesNote: this field may return null, indicating that no valid value was found.
ColorSpace This property is required. string
Color spaceNote: this field may return null, indicating that no valid value was found.
ColorTransfer This property is required. string
Color transferNote: this field may return null, indicating that no valid value was found.
Fps This property is required. float64
Frame rate in Hz.Note: This field may return null, indicating that no valid values can be obtained.
HdrType This property is required. string
HDR typeNote: This field may return null, indicating that no valid value was found.
Height This property is required. float64
Height of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
Width This property is required. float64
Maximum value of the width of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
bitrate This property is required. Double
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
codec This property is required. String
Video stream codec, such as h264.Note: This field may return null, indicating that no valid values can be obtained.
colorPrimaries This property is required. String
Color primariesNote: this field may return null, indicating that no valid value was found.
colorSpace This property is required. String
Color spaceNote: this field may return null, indicating that no valid value was found.
colorTransfer This property is required. String
Color transferNote: this field may return null, indicating that no valid value was found.
fps This property is required. Double
Frame rate in Hz.Note: This field may return null, indicating that no valid values can be obtained.
hdrType This property is required. String
HDR typeNote: This field may return null, indicating that no valid value was found.
height This property is required. Double
Height of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
width This property is required. Double
Maximum value of the width of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
bitrate This property is required. number
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
codec This property is required. string
Video stream codec, such as h264.Note: This field may return null, indicating that no valid values can be obtained.
colorPrimaries This property is required. string
Color primariesNote: this field may return null, indicating that no valid value was found.
colorSpace This property is required. string
Color spaceNote: this field may return null, indicating that no valid value was found.
colorTransfer This property is required. string
Color transferNote: this field may return null, indicating that no valid value was found.
fps This property is required. number
Frame rate in Hz.Note: This field may return null, indicating that no valid values can be obtained.
hdrType This property is required. string
HDR typeNote: This field may return null, indicating that no valid value was found.
height This property is required. number
Height of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
width This property is required. number
Maximum value of the width of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
bitrate This property is required. float
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
codec This property is required. str
Video stream codec, such as h264.Note: This field may return null, indicating that no valid values can be obtained.
color_primaries This property is required. str
Color primariesNote: this field may return null, indicating that no valid value was found.
color_space This property is required. str
Color spaceNote: this field may return null, indicating that no valid value was found.
color_transfer This property is required. str
Color transferNote: this field may return null, indicating that no valid value was found.
fps This property is required. float
Frame rate in Hz.Note: This field may return null, indicating that no valid values can be obtained.
hdr_type This property is required. str
HDR typeNote: This field may return null, indicating that no valid value was found.
height This property is required. float
Height of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
width This property is required. float
Maximum value of the width of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
bitrate This property is required. Number
Bitrate of a video stream in bps.Note: This field may return null, indicating that no valid values can be obtained.
codec This property is required. String
Video stream codec, such as h264.Note: This field may return null, indicating that no valid values can be obtained.
colorPrimaries This property is required. String
Color primariesNote: this field may return null, indicating that no valid value was found.
colorSpace This property is required. String
Color spaceNote: this field may return null, indicating that no valid value was found.
colorTransfer This property is required. String
Color transferNote: this field may return null, indicating that no valid value was found.
fps This property is required. Number
Frame rate in Hz.Note: This field may return null, indicating that no valid values can be obtained.
hdrType This property is required. String
HDR typeNote: This field may return null, indicating that no valid value was found.
height This property is required. Number
Height of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.
width This property is required. Number
Maximum value of the width of a video stream in px.Note: This field may return null, indicating that no valid values can be obtained.

Package Details

Repository
tencentcloud tencentcloudstack/terraform-provider-tencentcloud
License
Notes
This Pulumi package is based on the tencentcloud Terraform Provider.