Page 1 of 1

Codec profile

Posted: Wed Oct 27, 2010 5:11 pm
by atagal
Maybe is possible to add codec profile to gTag class in future?

Code: Select all

property CodecProfile: string;
Image

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;
thanks!