I don't use AAC hardly at all, but i guess i do enough to justify adding a thingie in my play-list formatting to get the codec information. This is what i put:
CODE
$if($stricmp($info(codec),AAC),
$puts(v_codec,$info(codec):)
$puts(v_compression,
$if($stricmp($info(codec_profile),LC),low complexity)
$if($stricmp($info(codec_profile),SSR),scalable sampling rate)
$if($stricmp($info(codec_profile),HE),high efficiency)
$if($stricmp($info(codec_profile),LD),low delay)
$if($stricmp($info(codec_profile),LTP),long-term prediction)
),)
. . .
$get_global(c_dim)|$get_global(c_dim2)$get(v_codec)[' '$get(v_version)][' '$get(v_compression)]
... Which results in something like 'AAC: low complexity' appearing in the play list.
I don't know if there are other codec profiles besides those, i suppose if there are it's a simple matter of adding them in. :shrug: