Ejemplo n.º 1
0
 public EncoderInformation(AudioCodec Codec, int Bitrate, int SampleRate, int Channels, bool VBR)
 {
     this.Codec        = Codec;
     this.Bitrate      = Bitrate;
     this.SampleRate   = SampleRate;
     this.Channels     = Channels;
     this.VBR          = VBR;
     this.QualityScale = 0;
     this.SampleSize   = sizeof(short);
 }
Ejemplo n.º 2
0
 public AudioEncoderStream(string Filename, AudioCodec Codec, int Bitrate, int SampleRate, int Channels, bool VBR)
     : this(Filename, new EncoderInformation(Codec, Bitrate, SampleRate, Channels, VBR))
 {
 }
Ejemplo n.º 3
0
 public AudioEncoderStream(string Filename, AudioCodec Codec, int Bitrate, int SampleRate, int Channels, bool VBR)
     : this(Filename, new EncoderInformation(Codec, Bitrate, SampleRate, Channels, VBR)) { }
Ejemplo n.º 4
0
 public EncoderInformation(AudioCodec Codec, int Bitrate, int SampleRate, int Channels, bool VBR)
 {
     this.Codec = Codec;
     this.Bitrate = Bitrate;
     this.SampleRate = SampleRate;
     this.Channels = Channels;
     this.VBR = VBR;
     this.QualityScale = 0;
     this.SampleSize = sizeof(short);
 }