1. How do I get information to appear in the following colums on Foobar2000?


    GENRE ARTIST ALBUM



    Thank you
    WIRE
  2. foobar2000.org is the place to be, they have forums, Wikipedia pages, with all kinds of examples/plugins/etc. You need to have some basic programming skills to customize it.
  3. Remy

    Thank you

    WIRE
  4. File > Preferences >r Columns UI > Playlist View > Columns.

    I have the following- pretty self-explanatory as to what they do. Although $info(tool), means to show you how it was encoded; either like LAME3.9x, iTunes 8.x or if there's no known tool in the meta tag, then it will come up as ? or Unknown, depending on how you code it.

    %genre%
    %artist%
    %album%
    %date%
    %bitrate%
    $codec()
    $info(tool)
    %comment%
    %discnumber%
    %tracknumber%
    %_time_elapsed%

    Going to Help > Title Formatting gives you a list of variables to use.



    And if you want size in MB, which is a great little tool:

    $div(%_filesize%,1048576).$num($div($mul($mod(%_filesize%,1048576),100),1048576),2) MB

    If you need some strings or codes to use, this site is brilliant for it. I learnt a lot of fb2k from there.