tencentcloud 1.81.183 published on Wednesday, Apr 16, 2025 by tencentcloudstack
tencentcloud.getMpsMediaMetaData
Explore with Pulumi AI
tencentcloud 1.81.183 published on Wednesday, Apr 16, 2025 by tencentcloudstack
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,
},
},
}));
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,
},
})
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
})
}
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),
},
},
});
});
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());
}
}
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}
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>
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]
func GetMpsMediaMetaData(ctx *Context, args *GetMpsMediaMetaDataArgs, opts ...InvokeOption) (*GetMpsMediaMetaDataResult, error)
func GetMpsMediaMetaDataOutput(ctx *Context, args *GetMpsMediaMetaDataOutputArgs, opts ...InvokeOption) GetMpsMediaMetaDataResultOutput
> 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)
}
public static CompletableFuture<GetMpsMediaMetaDataResult> getMpsMediaMetaData(GetMpsMediaMetaDataArgs args, InvokeOptions options)
public static Output<GetMpsMediaMetaDataResult> getMpsMediaMetaData(GetMpsMediaMetaDataArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getMpsMediaMetaData:getMpsMediaMetaData
arguments:
# arguments dictionary
The following arguments are supported:
- Input
Info This property is required. GetMps Media Meta Data Input Info - Input information of file for metadata getting.
- Id string
- Result
Output stringFile - Used to save results.
- Input
Info This property is required. GetMps Media Meta Data Input Info - Input information of file for metadata getting.
- Id string
- Result
Output stringFile - Used to save results.
- input
Info This property is required. GetMps Media Meta Data Input Info - Input information of file for metadata getting.
- id String
- result
Output StringFile - Used to save results.
- input
Info This property is required. GetMps Media Meta Data Input Info - Input information of file for metadata getting.
- id string
- result
Output stringFile - Used to save results.
- input_
info This property is required. GetMps Media Meta Data Input Info - Input information of file for metadata getting.
- id str
- result_
output_ strfile - Used to save results.
- input
Info This property is required. Property Map - Input information of file for metadata getting.
- id String
- result
Output StringFile - Used to save results.
getMpsMediaMetaData Result
The following output properties are available:
- Id string
- Input
Info GetMps Media Meta Data Input Info - Meta
Datas List<GetMps Media Meta Data Meta Data> - Media metadata.
- Result
Output stringFile
- Id string
- Input
Info GetMps Media Meta Data Input Info - Meta
Datas []GetMps Media Meta Data Meta Data - Media metadata.
- Result
Output stringFile
- id String
- input
Info GetMps Media Meta Data Input Info - meta
Datas List<GetMps Media Meta Data Meta Data> - Media metadata.
- result
Output StringFile
- id string
- input
Info GetMps Media Meta Data Input Info - meta
Datas GetMps Media Meta Data Meta Data[] - Media metadata.
- result
Output stringFile
- id String
- input
Info Property Map - meta
Datas List<Property Map> - Media metadata.
- result
Output StringFile
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. - Cos
Input GetInfo Mps Media Meta Data Input Info Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info GetMps Media Meta Data Input Info S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input GetInfo Mps Media Meta Data Input Info Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.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. - Cos
Input GetInfo Mps Media Meta Data Input Info Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info GetMps Media Meta Data Input Info S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input GetInfo Mps Media Meta Data Input Info Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.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. - cos
Input GetInfo Mps Media Meta Data Input Info Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info GetMps Media Meta Data Input Info S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input GetInfo Mps Media Meta Data Input Info Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.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. - cos
Input GetInfo Mps Media Meta Data Input Info Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info GetMps Media Meta Data Input Info S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input GetInfo Mps Media Meta Data Input Info Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.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_ Getinfo Mps Media Meta Data Input Info Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3_
input_ Getinfo Mps Media Meta Data Input Info S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url_
input_ Getinfo Mps Media Meta Data Input Info Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.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. - cos
Input Property MapInfo - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info Property Map - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input Property MapInfo - The URL of the object to process. This parameter is valid and required when
Type
isURL
.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.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key 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.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key 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.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key 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.
- s3Secret
Id string - The key ID required to access the AWS S3 object.
- s3Secret
Key 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_ strid - The key ID required to access the AWS S3 object.
- s3_
secret_ strkey - 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.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key 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
- Audio
Duration This property is required. double - 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. List<GetMps Media Meta Data Meta Data Audio Stream Set> - 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.
- Video
Duration This property is required. double - 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. List<GetMps Media Meta Data Meta Data Video Stream Set> - 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.
- Audio
Duration This property is required. float64 - 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. []GetMps Media Meta Data Meta Data Audio Stream Set - 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.
- Video
Duration This property is required. float64 - 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. []GetMps Media Meta Data Meta Data Video Stream Set - 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.
- audio
Duration This property is required. Double - 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. List<GetMps Media Meta Data Meta Data Audio Stream Set> - 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.
- video
Duration This property is required. Double - 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. List<GetMps Media Meta Data Meta Data Video Stream Set> - 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.
- audio
Duration This property is required. number - 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. GetMps Media Meta Data Meta Data Audio Stream Set[] - 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.
- video
Duration This property is required. number - 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. GetMps Media Meta Data Meta Data Video Stream Set[] - 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[GetMps Media Meta Data Meta Data Audio Stream Set] - 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[GetMps Media Meta Data Meta Data Video Stream Set] - 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.
- audio
Duration This property is required. Number - 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. 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.
- video
Duration This property is required. Number - 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. 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.
- Sampling
Rate 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.
- Sampling
Rate 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.
- sampling
Rate 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.
- sampling
Rate 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.
- sampling
Rate 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.
- Color
Primaries This property is required. string - Color primariesNote: this field may return
null
, indicating that no valid value was found. - Color
Space This property is required. string - Color spaceNote: this field may return
null
, indicating that no valid value was found. - Color
Transfer 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.
- Hdr
Type 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.
- Color
Primaries This property is required. string - Color primariesNote: this field may return
null
, indicating that no valid value was found. - Color
Space This property is required. string - Color spaceNote: this field may return
null
, indicating that no valid value was found. - Color
Transfer 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.
- Hdr
Type 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.
- color
Primaries This property is required. String - Color primariesNote: this field may return
null
, indicating that no valid value was found. - color
Space This property is required. String - Color spaceNote: this field may return
null
, indicating that no valid value was found. - color
Transfer 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.
- hdr
Type 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.
- color
Primaries This property is required. string - Color primariesNote: this field may return
null
, indicating that no valid value was found. - color
Space This property is required. string - Color spaceNote: this field may return
null
, indicating that no valid value was found. - color
Transfer 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.
- hdr
Type 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.
- color
Primaries This property is required. String - Color primariesNote: this field may return
null
, indicating that no valid value was found. - color
Space This property is required. String - Color spaceNote: this field may return
null
, indicating that no valid value was found. - color
Transfer 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.
- hdr
Type 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.
tencentcloud 1.81.183 published on Wednesday, Apr 16, 2025 by tencentcloudstack