Skip to content

schema

Defines the basic schema for the ffmpeg command line options.

Classes:

Name Description
StreamType

The type of a stream. (audio or video)

Default

This is the default value for an option. It is used for annotation purposes only

Auto

This is the auto value for an option. It is used for annotation purposes only

StreamType

Bases: str, Enum

The type of a stream. (audio or video)

Attributes:

Name Type Description
audio

it is an audio stream

video

it is a video stream

audio class-attribute instance-attribute

audio = 'audio'

it is an audio stream

video class-attribute instance-attribute

video = 'video'

it is a video stream

Default

Bases: str

This is the default value for an option. It is used for annotation purposes only and will not be passed to the ffmpeg command line.

Auto

Bases: Default

This is the auto value for an option. It is used for annotation purposes only and will not be passed to the ffmpeg command line.