Class ApiMediaMetadata
Audio/video container and per-stream metadata. Mirrors the useful subset of the internal `riviera.MediaMetadata` message.
Inherited Members
Namespace: Dropbox.Api.Riviera
Assembly: Dropbox.Api.dll
Syntax
public class ApiMediaMetadata
Constructors
View SourceApiMediaMetadata(ulong, double, string, IEnumerable<ApiMediaStream>)
Initializes a new instance of the ApiMediaMetadata class.
Declaration
public ApiMediaMetadata(ulong bitrateBps = 0, double durationS = 0, string creationTime = "", IEnumerable<ApiMediaStream> streams = null)
Parameters
| Type | Name | Description |
|---|---|---|
| ulong | bitrateBps | The bitrate bps |
| double | durationS | The duration s |
| string | creationTime | Container-level creation time, when present. |
| IEnumerable<ApiMediaStream> | streams | The streams |
Properties
View SourceBitrateBps
Gets the bitrate bps of the api media metadata
Declaration
public ulong BitrateBps { get; protected set; }
Property Value
| Type | Description |
|---|---|
| ulong |
CreationTime
Container-level creation time, when present.
Declaration
public string CreationTime { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
DurationS
Gets the duration s of the api media metadata
Declaration
public double DurationS { get; protected set; }
Property Value
| Type | Description |
|---|---|
| double |
Streams
Gets the streams of the api media metadata
Declaration
public IList<ApiMediaStream> Streams { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<ApiMediaStream> |