INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: Tag Management - help please [Library Fields]  (Read 3629 times)

MusicBringer

  • Galactic Citizen
  • ****
  • Posts: 428
  • MC32.0.87 x64bit
Tag Management - help please [Library Fields]
« on: October 15, 2016, 10:46:18 am »

I'd like some help with Tag Management please.
I have a few tags for music stuff I want to exclude for the time being such as Novelty, Christmas, Speech and so on.
I want to group them together under one Tag umbrella, so that when I need to exclude them ALL from a theme I only have to specify the Tag umbrella name.
Any ideas please?
thanks,

[btw these Tags are in fact Library Fields]
Logged
Caesar adsum jam forte. Brutus aderat. Caesar sic in omnibus. Brutus sic inat.

DJLegba

  • Citizen of the Universe
  • *****
  • Posts: 993
Re: Tag Management - help please
« Reply #1 on: October 15, 2016, 10:51:26 am »

You can assign more than one genre to an album. So you set an album's genre as something like

Novelty; Hidden
or
Christmas; Hidden

Then define your view to display if genre is not "Hidden"

There are of course other ways to do it if you aren't keen on creating a genre named Hidden.
Logged

MusicBringer

  • Galactic Citizen
  • ****
  • Posts: 428
  • MC32.0.87 x64bit
Re: Tag Management - help please
« Reply #2 on: October 15, 2016, 11:07:57 am »

Great idea DJLegba. Yes I use Genre a lot to separate much of my music such as live stuff, or bootlegs and so on.
I would rather not use Genre in this case. I have far too many Genres already.

btw these Tags are in fact Library Fields.
Logged
Caesar adsum jam forte. Brutus aderat. Caesar sic in omnibus. Brutus sic inat.

DJLegba

  • Citizen of the Universe
  • *****
  • Posts: 993
Re: Tag Management - help please
« Reply #3 on: October 15, 2016, 11:18:57 am »

Great idea DJLegba. Yes I use Genre a lot to separate much of my music such as live stuff, or bootlegs and so on.
I would rather not use Genre in this case. I have far too many Genres already.

btw these Tags are in fact Library Fields.

Then use another library field. For example, set "Popularity" to "Not very"
Logged

MusicBringer

  • Galactic Citizen
  • ****
  • Posts: 428
  • MC32.0.87 x64bit
Re: Tag Management - help please [Library Fields]
« Reply #4 on: October 15, 2016, 11:39:09 am »

Nice ideas DJLegba, but not quite what I am looking for.
Umm, I have no wish to set up more fields that need to be populated. I have done all that work. I require a way to collate the existing fields into one.
Logged
Caesar adsum jam forte. Brutus aderat. Caesar sic in omnibus. Brutus sic inat.

imeric

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 1468
Re: Tag Management - help please [Library Fields]
« Reply #5 on: October 15, 2016, 12:18:44 pm »

I use grouping for live stuff that I usually want to exclude
Logged

blgentry

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 8009
Re: Tag Management - help please [Library Fields]
« Reply #6 on: October 15, 2016, 12:36:57 pm »

You can define a field that will use an expression to determine if you should exclude the file or not.  Here's an example of an expression that outputs "Yes" if the Genre is Classical or Jazz.  It outputs "No" for all other conditions. 

Code: [Select]
if(isequal([Genre],Classical),Yes,if(isequal([Genre],Jazz),Yes,No))
You could put this into a new field in your library and call it something like "Exclude Me".  Then, base your tests on [Exclude Me].  If [Exclude Me] is Yes, then don't show it in your view.

Brian.
Logged

MusicBringer

  • Galactic Citizen
  • ****
  • Posts: 428
  • MC32.0.87 x64bit
Re: Tag Management - help please [Library Fields]
« Reply #7 on: October 15, 2016, 03:41:51 pm »

Thanks Brian,
Your example works when edited to use my fields. It fails when I try to add more.
Quote
if(isequal([AuType],SACD),Yes,No,if(isequal([AuType],180/200g)Yes,No,if(isequal([AuType],singles)Yes,No,if(isequal([AuType],DUPL),Yes,No,if(isequal([AuType],MFSL),Yes,No))

Instead of Genre I am using my Field called AuType.
The choices are: SACD, MFSL, 180/200g, singles, and DUPL.

What should the expression be, please.
Logged
Caesar adsum jam forte. Brutus aderat. Caesar sic in omnibus. Brutus sic inat.

blgentry

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 8009
Re: Tag Management - help please [Library Fields]
« Reply #8 on: October 15, 2016, 05:01:32 pm »

I *think* this will work, but I'm unable to test it because of your custom field:

Code: [Select]
if(isequal([AuType],SACD),Yes,if(isequal([AuType],180//200g)Yes,if(isequal([AuType],singles)Yes,if(isequal([AuType],DUPL),Yes,if(isequal([AuType],MFSL),Yes,No)))))
Brian.
Logged

MusicBringer

  • Galactic Citizen
  • ****
  • Posts: 428
  • MC32.0.87 x64bit
Re: Tag Management - help please [Library Fields]
« Reply #9 on: October 15, 2016, 05:29:07 pm »

You very nearly got it!

In Set rules for file display...
The options I am offered are:
0Yes
1Yes
Yes

OYes gives me DUPL, MFSL, singles, but not 180 nor SACD
1Yes displays 180/200g only
Yes displays SACD only

Selecting all three shows nothing.
Logged
Caesar adsum jam forte. Brutus aderat. Caesar sic in omnibus. Brutus sic inat.

blgentry

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 8009
Re: Tag Management - help please [Library Fields]
« Reply #10 on: October 15, 2016, 05:43:10 pm »

Looks like it was missing some commas.  Try this:

Code: [Select]
if(isequal([AuType],SACD),
Yes,
if(isequal([AuType],180//200g),
Yes,
if(isequal([AuType],singles),
Yes,
if(isequal([AuType],DUPL),
Yes,
if(isequal([AuType],MFSL),
Yes,
No)))))

Brian.
Logged

MusicBringer

  • Galactic Citizen
  • ****
  • Posts: 428
  • MC32.0.87 x64bit
Re: Tag Management - help please [Library Fields]
« Reply #11 on: October 15, 2016, 05:54:58 pm »

Brian, you coder/programmers amaze me. At my age, it is not a world I comprehend.
Ha, I was about to suggest one or two more commas were required.
Thank you so much.
 :)
Logged
Caesar adsum jam forte. Brutus aderat. Caesar sic in omnibus. Brutus sic inat.

blgentry

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 8009
Re: Tag Management - help please [Library Fields]
« Reply #12 on: October 15, 2016, 07:06:53 pm »

So it works?  Yay!  :)

Happy to have been able to help.

Brian.
Logged
Pages: [1]   Go Up