Reorder encoders

This commit is contained in:
Ingo Oppermann 2024-04-03 16:35:25 +02:00
parent 06933e47d8
commit 7007ce71ed
No known key found for this signature in database
GPG Key ID: 2AB32426E9DD229E

View File

@ -125,17 +125,17 @@ const videoRegistry = new Registry('video');
videoRegistry.Register(VideoCopy);
videoRegistry.Register(VideoNone);
videoRegistry.Register(X264);
videoRegistry.Register(X265);
videoRegistry.Register(H264VideoToolbox);
videoRegistry.Register(H264NVENC);
videoRegistry.Register(H264OMX);
videoRegistry.Register(H264V4L2M2M);
videoRegistry.Register(H264VAAPI);
videoRegistry.Register(X265);
videoRegistry.Register(HEVCVAAPI);
videoRegistry.Register(HEVCVideoToolbox);
videoRegistry.Register(VP9VAAPI);
videoRegistry.Register(VP9);
videoRegistry.Register(VideoRaw);
videoRegistry.Register(AV1Rav1e);
videoRegistry.Register(VideoRaw);
export { audioRegistry as Audio, videoRegistry as Video };