Show / Hide Table of Contents

Class VideoPayload

Container of information of a video.

Inheritance
System.Object
VideoPayload
Implements
IMessage<VideoPayload>
System.IEquatable<VideoPayload>
IDeepCloneable<VideoPayload>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DataLabeling.V1Beta1
Assembly: Google.Cloud.DataLabeling.V1Beta1.dll
Syntax
public sealed class VideoPayload : IMessage<VideoPayload>, IEquatable<VideoPayload>, IDeepCloneable<VideoPayload>, IBufferMessage, IMessage

Constructors

VideoPayload()

Declaration
public VideoPayload()

VideoPayload(VideoPayload)

Declaration
public VideoPayload(VideoPayload other)
Parameters
Type Name Description
VideoPayload other

Properties

FrameRate

FPS of the video.

Declaration
public float FrameRate { get; set; }
Property Value
Type Description
System.Single

MimeType

Video format.

Declaration
public string MimeType { get; set; }
Property Value
Type Description
System.String

SignedUri

Signed uri of the video file in the service bucket.

Declaration
public string SignedUri { get; set; }
Property Value
Type Description
System.String

VideoThumbnails

The list of video thumbnails.

Declaration
public RepeatedField<VideoThumbnail> VideoThumbnails { get; }
Property Value
Type Description
RepeatedField<VideoThumbnail>

VideoUri

Video uri from the user bucket.

Declaration
public string VideoUri { get; set; }
Property Value
Type Description
System.String
Back to top