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
AdtsOutputFormat.getSupportedTrackCounts()
IsobmffOutputFormat.getSupportedTrackCounts()
MkvOutputFormat.getSupportedTrackCounts()
MovOutputFormat.getSupportedTrackCounts()
Mp3OutputFormat.getSupportedTrackCounts()
Mp4OutputFormat.getSupportedTrackCounts()
OggOutputFormat.getSupportedTrackCounts()
OutputFormat.getSupportedTrackCounts()
WavOutputFormat.getSupportedTrackCounts()
WebMOutputFormat.getSupportedTrackCounts()
Properties
video
ts
video: InclusiveIntegerRange;
audio
ts
audio: InclusiveIntegerRange;
subtitle
ts
subtitle: InclusiveIntegerRange;
total
ts
total: InclusiveIntegerRange;
Specifies the overall allowed range of track counts for the output format.