Skip to content
Type

TrackCountLimits

Specifies the number of tracks (for each track type and in total) that an output format supports.

ts
type TrackCountLimits = {
	[K in TrackType]: InclusiveIntegerRange;
} & {
	total: InclusiveIntegerRange;
};

See TrackType and InclusiveIntegerRange.

Used by

Properties

video

ts
video: InclusiveIntegerRange;

See InclusiveIntegerRange.

audio

ts
audio: InclusiveIntegerRange;

See InclusiveIntegerRange.

subtitle

ts
subtitle: InclusiveIntegerRange;

See InclusiveIntegerRange.

total

ts
total: InclusiveIntegerRange;

Specifies the overall allowed range of track counts for the output format.

See InclusiveIntegerRange.

Released under the Mozilla Public License 2.0.