mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
21 lines
515 B
C#
21 lines
515 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace CUETools.Codecs.LAME
|
|
{
|
|
public class LameWriterCBRSettings : AudioEncoderSettings
|
|
{
|
|
public static readonly int[] bps_table = new int[] { 96, 128, 192, 256, 320 };
|
|
|
|
[DefaultValue(LameQuality.High)]
|
|
public LameQuality Quality { get; set; }
|
|
|
|
public LameWriterCBRSettings()
|
|
: base("96 128 192 256 320", "256")
|
|
{
|
|
}
|
|
}
|
|
}
|