![]() |
|
Display question with title.displayFormat - Printable Version +- MinimServer Forum (https://forum.minimserver.com) +-- Forum: MinimServer (/forumdisplay.php?fid=1) +--- Forum: General (/forumdisplay.php?fid=2) +--- Thread: Display question with title.displayFormat (/showthread.php?tid=6857) Pages: 1 2 |
Display question with title.displayFormat - dvdr - 06-03-2023 12:38 Hi I am trying to use the displayFormat option to display track titles as follows: D1 T1 track title I got as far as "D1 1 track title" by using title.displayFormat={$discnumber$tracknumber$title^D^^ } but am not succeeding to insert T for Tracknumber. Before that, I worked with title.displayFormat={$discnumber$tracknumber$title^^^ - } This one works in displaying "disc number - track number - track title" with one strange problem: whenever discnumber and tracknumber are the same, tracknumber is left out. So I get 1 - track title for disc1 track1 1 - 2 - track title for disc1 track 2 2 - 1 - track title for disc2 track 1 2 - track title for disc2 track 2 I had added the tags "discnumber" and "tracknumber" to the list of indexed tags to make this work. Btw.: another observation: adding "Title" to "alphagroup" does not alphagroup track titles. I have to introduce all=100 to actually alpha group track titles. Is "Title" the wrong tag to be used/indexed? RE: Display question with title.displayFormat - simoncn - 06-03-2023 13:17 The format string title.displayFormat={$discnumber$tracknumber$title^^^ - } automatically eliminates duplicate values across the combination of discnumber, tracknumber and title. To prevent this happening, you can use title.displayFormat={$discnumber^^ - ^$tracknumber^^ - ^$title} To change this to use the format D1 T1 track title, you can use title.displayFormat={$discnumber^D^ ^$tracknumber^T^ ^$title} Which index are you using to alpha-group track titles? If this is the "n items" index, you should set alphaGroup to items=100 (see this section). RE: Display question with title.displayFormat - dvdr - 06-03-2023 13:32 (06-03-2023 13:17)simoncn Wrote: Which index are you using to alpha-group track titles? If this is the "n items" index, you should set alphaGroup to items=100 (see this section).Thanks for helping out with the Displayformat explanation! I am still in awe how cleverly programmed Minimserver is!!! This is, how my alphagroup entry looks like: Code: Artist, Classical Composer, Composer, Albumartist, Conductorsort, Conductor, Soloist, All Artists, Title, Orchestra, ComposersortThat’s when I experimented with „all=100“ as some sort of workaround, wondering, why „Title“ was not recognized. RE: Display question with title.displayFormat - simoncn - 06-03-2023 15:35 Do you have a Title index (in addition to 'n items')? RE: Display question with title.displayFormat - dvdr - 06-03-2023 18:00 (06-03-2023 15:35)simoncn Wrote: Do you have a Title index (in addition to 'n items')?I hope, I did understand the indexing setup correctly: the tag „Title“ is in the „indexTags“ list: Code: *RecentAdded, AlbumArtist:Album Artist, Artist, Classical Composer, Conductorsort, HiRes=1, Genre, Soloist, SoloInstrument, All Artists, Title, Orchestra, Source, Audio Quality, Collection, Collection Album, Collection Artist, Opus, Movement, Instrument, Style, Soloists, Type, Year, Period, Composersort, Composer, Composer Lastname, Date, Conductor, Multichannel=1,*RecentPlayed, #AudioData, #AudioFormat, Discnumber, TracknumberRE: Display question with title.displayFormat - simoncn - 07-03-2023 08:48 I have tried this myself and adding Title to alphaGroup is working as expected. Please post your complete MinimServer configuration. The simplest way to do this is to select Profiles > View from the MinimServer configuration web page and copy and paste the contents of your profile. RE: Display question with title.displayFormat - dvdr - 07-03-2023 09:00 (07-03-2023 08:48)simoncn Wrote: Please post your complete MinimServer configuration.Thanks for investigating. I am tagging with mp3tag - could it be, that I need to index something like „tracktitle“ instead of just „Title“? Just wondering, whether mp3tag does something differently… Code: alphaGroup = Artist, Classical Composer, Composer, Albumartist, Conductorsort, Conductor, Soloist, All Artists, Title, Orchestra, Composersort RE: Display question with title.displayFormat - simoncn - 07-03-2023 10:44 Thanks for this. I tried using your profile and the Title index is correctly alpha-grouped for me. Are you seeing a Title index with your track titles shown under this? If so, this means your tracks are tagged with Title tags. RE: Display question with title.displayFormat - dvdr - 07-03-2023 11:06 (07-03-2023 10:44)simoncn Wrote: Are you seeing a Title index with your track titles shown under this? If so, this means your tracks are tagged with Title tags.Yes, I do see „Titles“ - thousands of them, my entire collection on one long list. That’s why I wanted to alphagroup them. I guess we won‘t find out. I‘ll use the all=100 setting workaround, which alphagroups those thousands of titles. Thank you very much for your great support! RE: Display question with title.displayFormat - simoncn - 07-03-2023 11:56 What happens if you remove all=100 and set Title=100? I am wondering if there is something about this very long list that makes it behave differently than other lists. Also, have you tried adding items or items=100 to alphaGroup and checking whether the 'n items' list is alpha grouped? The 'n items' list should also be a very long list. |