Video 资源类型
视频资源将与视频相关的数据项分组到一个单一结构。
如果 DriveItem 具有一个非 null video facet,则该项表示一个视频文件。 通过从文件中提取元数据对 Video 资源的属性进行填充。
JSON 表示形式
下面是资源的 JSON 表示形式。
{
"audioBitsPerSample": 16,
"audioChannels": 1,
"audioFormat": "AAC",
"audioSamplesPerSecond": 44100,
"bitrate": 39101896,
"duration": 8053,
"fourCC": "H264",
"frameRate": 239.877,
"height": 1280,
"width": 720
}
属性
属性名称 | 类型 | 说明 |
---|---|---|
audioBitsPerSample | Int32 | 每个样本的音频位数。 |
audioChannels | Int32 | 音频频道数。 |
audioFormat | string | 音频格式名称(AAC、MP3 等)。 |
audioSamplesPerSecond | Int32 | 每秒音频采样数。 |
bitrate | Int32 | 视频比特率(以位/秒为单位)。 |
duration | Int64 | 文件时长(以毫秒为单位)。 |
fourCC | string | 视频格式的“四个字符代码”名称。 |
frameRate | double | 视频的帧速率。 |
height | Int32 | 视频高度(以像素为单位)。 |
width | Int32 | 视频的宽度,以像素为单位。 |
注解
有关 DriveItem 上 facet 的详细信息,请参阅 DriveItem。