Codec profile

Main discussion forum
Post Reply
atagal
Newbie
Newbie
Posts: 34
Joined: Tue Oct 26, 2010 12:08 am

Codec profile

Post 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!

Post Reply