예제 #1
0
 public WinAmpAACSettings()
     : base(ID, AudioCodec.AAC, AudioEncoderType.WAAC, 48)
 {
     this.Profile = AacProfile.PS;
     this.StereoMode = AacStereoMode.Joint;
     this.Mpeg2AAC = false;
 }
예제 #2
0
        public void AacProfiles()
        {
            Assert.Equal(AacProfile.LC, CodecInfo.Parse("mp4a.40.2"));
            Assert.Equal(AacProfile.HE, CodecInfo.Parse("mp4a.40.5"));

            Assert.Equal(AacProfile.LC, AacProfile.Parse("lc"));
            Assert.Equal(AacProfile.HE, AacProfile.Parse("he"));
        }