INTERACT FORUM
More => Old Versions => JRiver Media Center 18 for Windows => Topic started by: erringtont on August 19, 2013, 08:02:59 pm
-
Hello,
I'm a newby, and this should be simple, but I've been searching with no success.
When viewing Artists or Genres all the albums in a given category (like Pop/Rock, etc.) or a particular artist appear "fanned" as a series of stacked thumbnails. In the Albums view, any albums that are comprised of multiple discs are shown as separate albums (Disc 1, Disc 2, etc.).
Is there a way to have multiple disc albums appear as one fanned thumbnail in the Albums view?
I realize I can remove the disc numbers from the album name and the entire multi-disc album will appear as one album, but that is not ideal (especially for operas that may have as many as 4 cd's).
For example, the Wagner opera Gotterdamerung consists of 4 CD's. I would prefer to have one fanned thumbnail of all 4 discs in the Albums view. Is this possible and how is it done?
Thanks in advance for any advice.
-
Do all your multi-disc albums end with the same trailing text format, like " (Disc 2)"?
If not, can you show some examples?
As you can see, this can be accomplished (see attached).
-
Do all your multi-disc albums end with the same trailing text format, like " (Disc 2)"?
If not, can you show some examples?
As you can see, this can be accomplished (see attached).
Yes, they all share the same filename, but with Disc1, Disc2, etc. appended.
Thanks,
-
Customize the view, and select Album under Show Categories in This Order. Click Edit.
Now, change the type to Expression and add the expression:
if(regex([album], /#^(.*)(?:: Disc \d.*)$#/),[R1],[album])
This removes the " Disc #" text from your album name output, so that they can group as a category.
-
Customize the view, and select Album under Show Categories in This Order. Click Edit.
Now, change the type to Expression and add the expression:
if(regex([album], /#^(.*)(?:: Disc \d.*)$#/),[R1],[album])
This removes the " Disc #" text from your album name output, so that they can group as a category.
First, thank you for your quick responses.
Unfortunately, this didn't work. All it seems to do is add three dots (...) to end of each album name in the Albums view.
As an example, the Album names are formatted as:
Biograph, Disc 1
Biograph, Disc 2
Biograph, Disc 3
After adding the expression:
Biograph, Disc 1...
etc.
Each of the discs in the album still appear separately. Perhaps I am missing a step as your text notes "so that they can group as a category". Do I need to apply further action after creating the custom view using the expression?
The example you sent showing 'The Great Speeches.....' is exactly what I'm looking for.
Again, thanks for your help with this.
-
Oops, sorry. I left a single ":" in the regular expression from my test.
Use:
if(regex([album], /#^(.*)(?: Disc \d+.*)$#/),[R1],[album])
The ... is occurring because you have an extra newline at the end of your expression. Be sure the closing parenthesis above is the last character.
-
Yes sir, that did the trick. Thanks for the help. The code works and I got rid of the trailing dots per your suggestion.
-
Thanks again MrC.. I like this a lot. Of course it it revealed, as MC often does, around a dozen inadequacies in my so called perfect tagging such as Disk instead of Disc and Dsic instead of Disc....
::)
Ken
-
We can relax the regex rules so that your OCD doesn't get the best of you. :-)
if(regex([album], /#^(.*)(?: D[is]{2}[ck] \d+.*)$#/),[R1],[album])
-
Oh no !!! Need to fix these... No right.. Not right!!
But thanks for the effort... ;)
-
Hi Kensn.
I am just curious as to why you would add the Disc # to the album name instead of using the Disc # field?
Thanks.
Carl.
-
It goes back to an earlier naming convention of mine before my days using J River.
I could change all the names and populate the Disc # field and get the same results in how I view my albums.. but it is how it is...
I like the default thumbnail text showing the disc # also.. Again it can be done either way..
Ken
-
hehe. I think I change my naming convention everytime I switch programs. Which was why I was on HMM for about a decade lol.
But the speed difference in MC is so huge along with a number of other benefits that I had to make the change. But I had not been using the disc # in the album name for quite some time as HMM also had a proper Disc # field which I have always used in my "Rename / Move" expression(s)
Carl.