Table of Contents

Class VideoData

Namespace
HP.LFT.SDK
Assembly
HP.LFT.SDK.dll

An object that holds video binary data.

public class VideoData
Inheritance
VideoData
Inherited Members

Constructors

VideoData(byte[], VideoFormat)

Create VideoData object.

public VideoData(byte[] videoData, VideoFormat videoFormat)

Parameters

videoData byte[]

Video binary data.

videoFormat VideoFormat

Format of the video.

VideoData(string)

Create VideoData object.

public VideoData(string filePath)

Parameters

filePath string

Path to the video file. The video format will be deduced from the file extension.

VideoData(string, VideoFormat)

Create VideoData object.

public VideoData(string filePath, VideoFormat videoFormat)

Parameters

filePath string

Path to the video file.

videoFormat VideoFormat

Format of the video.

Properties

Data

Video binary data.

public byte[] Data { get; }

Property Value

byte[]

Format

Video format.

public VideoFormat Format { get; }

Property Value

VideoFormat