Files
cuetools.net/CUETools.Codecs.LAME/LAMEEncoderCBRSettings.cs

22 lines
562 B
C#
Raw Normal View History

2011-10-24 08:42:30 +00:00
using System.ComponentModel;
using CUETools.Codecs.LAME.Interop;
namespace CUETools.Codecs.LAME
{
public class LAMEEncoderCBRSettings : AudioEncoderSettings
2011-10-24 08:42:30 +00:00
{
public static readonly uint[] bps_table = new uint[] { 96, 128, 192, 256, 320 };
2011-10-24 08:42:30 +00:00
[DefaultValue(0)]
public int CustomBitrate { get; set; }
[DefaultValue(MpegMode.STEREO)]
public MpegMode StereoMode { get; set; }
public LAMEEncoderCBRSettings()
: base("96 128 192 256 320", "256")
2011-10-24 08:42:30 +00:00
{
}
}
}