Code: Select all
property CodecProfile: string;

it is very handy to see LAME VBR quality and presets (VBR V2 / VBR V0 etc)
http://wiki.hydrogenaudio.org/index.php ... _Reference
i did workaround on TGF but is not really correct:
Code: Select all
if (sys_RegexFind(gTag.EncoderUsed, 'LAME' ) and gTag.VBR) then begin
if (StrToInt (gTag.Bitrate) >= 220) then CodecProfile := 'V0'
else CodecProfile := 'V2';
end;