namespace ErsatzTV.FFmpeg.Option; public class AudioChannelsOutputOption : OutputOption { private readonly int _channels; public AudioChannelsOutputOption(int channels) => _channels = channels; public override IList OutputOptions => new List { "-ac", _channels.ToString() }; }