-
Notifications
You must be signed in to change notification settings - Fork 53
Description
Okay, I have built a ripper program hoping to get the best audio quality for the Plex media server I am setting up. Before I rip hundreds of CD's, I want to check if I am using the best options to obtain the best quality this library is capable of giving. So, here is what I am using:
` ID3TagData tag = new ID3TagData
{
Title = strTrackName,
Artist = strArtist,
Album = strAlbum,
Year = strYear,
Genre = strFinalGenre
};
LameConfig config = new LameConfig
{
VBR = VBRMode.ABR,
VBRQuality = 0,
ABRRateKbps = 320,
VBRMinimumRateKbps = 256,
VBREnforceMinimum = true,
OutputSampleRate = 48000,
ID3 = tag
};
`
The few tests that I have made sound okay to me. But, I wear hearing aids. They are supposed to correct things to near normal for every day use, but maybe not for my purposes here. I would like someone with more experience using the library to give me a hand setting up the options before I rip all these CD's. The audience will thank you!