Skip to content

How to get best audio quality #56

@joman-git

Description

@joman-git

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!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions