Add audio encoders pcm_s16le and pcm_s32le

This commit is contained in:
henryruhs
2025-02-15 00:13:58 +01:00
parent 48aaba2786
commit d03e3b3ed7
2 changed files with 2 additions and 2 deletions

View File

@@ -68,7 +68,7 @@ temp_frame_formats : List[ImageFormat] = [ 'bmp', 'jpeg', 'png', 'tiff' ]
output_encoder_set : EncoderSet =\
{
'audio': [ 'aac', 'libmp3lame', 'libopus', 'libvorbis', 'flac' ],
'audio': [ 'aac', 'libmp3lame', 'libopus', 'libvorbis', 'flac', 'pcm_s16le', 'pcm_s32le' ],
'video': [ 'libx264', 'libx265', 'libvpx-vp9', 'h264_nvenc', 'hevc_nvenc', 'h264_amf', 'hevc_amf', 'h264_qsv', 'hevc_qsv', 'h264_videotoolbox', 'hevc_videotoolbox' ]
}
output_audio_encoders : List[AudioEncoder] = output_encoder_set.get('audio')