namespace ErsatzTV.FFmpeg.OutputOption; public class AudioBufferSizeOutputOption : OutputOption { private readonly int _decoderBufferSize; public AudioBufferSizeOutputOption(int decoderBufferSize) => _decoderBufferSize = decoderBufferSize; public override IList OutputOptions => new List { "-bufsize:a", $"{_decoderBufferSize}k" }; }