Skip to content

schema

Defines the basic schema for the FFmpeg command line options.

This module contains base classes used throughout the typed-ffmpeg library to handle default values, automatic parameter derivation, and stream type definitions. These components form the foundation of the type annotation system that enables static type checking in the FFmpeg filter graph.

Classes:

Name Description
StreamType

Enumeration of possible stream types in FFmpeg.

Default

Represents a default value for an FFmpeg option.

Auto

Represents an automatically derived value for an FFmpeg option.

StreamType

Bases: str, Enum

Enumeration of possible stream types in FFmpeg.

This enum defines the fundamental types of media streams that can be processed by FFmpeg filters. Each stream in FFmpeg is either an audio stream or a video stream, and filters are designed to work with specific stream types.

Attributes:

Name Type Description
audio

Represents an audio stream containing sound data

video

Represents a video stream containing visual frame data

audio class-attribute instance-attribute

audio = 'audio'

Represents an audio stream containing sound data

video class-attribute instance-attribute

video = 'video'

Represents a video stream containing visual frame data

Default

Bases: str

Represents a default value for an FFmpeg option.

This class is used for annotation purposes only and indicates that a parameter should use its default value. When a parameter is marked with Default, it will not be explicitly passed to the FFmpeg command line, letting FFmpeg use its built-in default value instead.

Example
# This will use FFmpeg's default crf value
video.output("output.mp4", crf=Default("23"))

Auto

Bases: Default

Represents an automatically derived value for an FFmpeg option.

This is a special case of Default that indicates the value should be calculated automatically based on the context. For example, the number of inputs to a filter might be derived from the number of streams passed to that filter.

Auto contains an expression string that defines how the value should be computed.

Example
# The number of inputs is automatically derived from the length of streams
hstack(*streams, inputs=Auto("len(streams)"))