Show / Hide Table of Contents

Class VideoThumbnail

Container of information of a video thumbnail.

Inheritance
System.Object
VideoThumbnail
Implements
IMessage<VideoThumbnail>
System.IEquatable<VideoThumbnail>
IDeepCloneable<VideoThumbnail>
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 VideoThumbnail : IMessage<VideoThumbnail>, IEquatable<VideoThumbnail>, IDeepCloneable<VideoThumbnail>, IBufferMessage, IMessage

Constructors

VideoThumbnail()

Declaration
public VideoThumbnail()

VideoThumbnail(VideoThumbnail)

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

Properties

Thumbnail

A byte string of the video frame.

Declaration
public ByteString Thumbnail { get; set; }
Property Value
Type Description
ByteString

TimeOffset

Time offset relative to the beginning of the video, corresponding to the video frame where the thumbnail has been extracted from.

Declaration
public Duration TimeOffset { get; set; }
Property Value
Type Description
Duration
Back to top