Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: getting rid of the album in the playlist (Read 2085 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

getting rid of the album in the playlist

just wanting to know if you can get foobar to just display the artist and the track name, thanks!

getting rid of the album in the playlist

Reply #1
Just have a look at Display, Title formatting in fb2k's Preferences dialog.

There is a subsection called Playlist which describes the format of the playlist entries. To remove the album part, enter something like
Code: [Select]
$num(%_playlist_number%,$len(%_playlist_total%)). 
$if2(%artist%,unknown artist)
$tab(3)
$if2(%title%,%_filename_ext%)
$tab(4)
$if(%_isplaying%,'|> ')
[['['$if2(%__codec%,$upper($ext(%_path%)))']' ]$pad_right(%_length%,5,0)]
in the dialog.  For more possibilities have a look at the format strings thread and fb2k's help file.

Regards,
~ Florian

getting rid of the album in the playlist

Reply #2
Thanks.