Dropbox .NET SDK
Show / Hide Table of Contents

Class ApiMediaMetadata

Audio/video container and per-stream metadata. Mirrors the useful subset of the internal `riviera.MediaMetadata` message.

Inheritance
object
ApiMediaMetadata
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Riviera
Assembly: Dropbox.Api.dll
Syntax
public class ApiMediaMetadata

Constructors

View Source

ApiMediaMetadata(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 Source

BitrateBps

Gets the bitrate bps of the api media metadata

Declaration
public ulong BitrateBps { get; protected set; }
Property Value
Type Description
ulong
View Source

CreationTime

Container-level creation time, when present.

Declaration
public string CreationTime { get; protected set; }
Property Value
Type Description
string
View Source

DurationS

Gets the duration s of the api media metadata

Declaration
public double DurationS { get; protected set; }
Property Value
Type Description
double
View Source

Streams

Gets the streams of the api media metadata

Declaration
public IList<ApiMediaStream> Streams { get; protected set; }
Property Value
Type Description
IList<ApiMediaStream>
  • View Source
In this article
Back to top Dropbox .NET SDK