Encoders

Yukine provides a few encoders to use with the Source object. It is used in conjuction with Source.encoder_settings The default encoder is Encoder.svt_av1 So if you don’t specify an encoder, it will use SVT-AV1.

Encoder

Encoder is an enum that defines the encoder to use.

Setting Encoder example
vid1 = Source(
    encoder_settings="--preset 10 --crf 30",
    video_encoder=Encoder.svt_av1,
)

Available Encoder values

Encoder values

Encoder.svt_av1

Encoder.aomenc

Encoder.rav1e

Encoder.x264

Encoder.x265