Table of Contents

Class ImageTrack

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The ImageTrack interface of the 'WebCodecs API' represents an individual image track.

[Value("ImageTrack")]
public class ImageTrack
Inheritance
ImageTrack
Inherited Members

Remarks

Constructors

ImageTrack()

public ImageTrack()

Properties

Animated

The animated property of the ImageTrack interface returns true if the track is animated and therefore has multiple frames.

[Value("animated")]
public bool Animated { get; }

Property Value

bool

A Boolean, if true this is an animated track.

Remarks

FrameCount

The frameCount property of the ImageTrack interface returns the number of frames in the track.

[Value("frameCount")]
public ulong FrameCount { get; }

Property Value

ulong

An integer.

Remarks

RepetitionCount

The repetitionCount property of the ImageTrack interface returns the number of repetitions of this track.

[Value("repetitionCount")]
public float RepetitionCount { get; }

Property Value

float

An integer.

Remarks

Selected

The selected property of the ImageTrack interface returns true if the track is selected for decoding.

[Value("selected")]
public bool Selected { get; set; }

Property Value

bool

A Boolean, if true the track is selected for decoding.

Remarks