INTERACT FORUM

Please login or register.

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

Author Topic: Tagging Hidden Track One Audio (HTOA)  (Read 1447 times)

sgomes

  • Junior Woodchuck
  • **
  • Posts: 68
Tagging Hidden Track One Audio (HTOA)
« on: August 15, 2012, 07:18:29 am »

[Moved from MC18 forum, where it was incorrectly posted before]


Hey everyone,

This is a bit of a silly question, but here goes :)

Some albums have a hidden first track, which can only be accessed by jumping back from the first track, in a CD player. Some ripping tools allow you to rip this track. So far, so good.

Now, here comes the silly part. I'd like to tag the hidden track as track 0, but MC doesn't seem to like that :) Does anyone have any suggestion that preserves ordering, other than incrementing the number of all other tracks?
Logged

MrC

  • Citizen of the Universe
  • *****
  • Posts: 10462
  • Your life is short. Give me your money.
Re: Tagging Hidden Track One Audio (HTOA)
« Reply #1 on: August 15, 2012, 12:17:10 pm »

Create a new user field of type String.  Call it Hidden Track #.  For any given hidden track, set the value you want as a decimal, such as 0, or 1.5, so that the hidden tracks would sort numerically in the correct location.

Now, replace your Track # columns with an expression column, such as :

  if(!isempty([Hidden Track #]), [Hidden Track #], [Track #])&datatype=[number]

This will use Hidden Track # if it exists, otherwise the normal Track #, and treats the entire expression as a number for proper sorting.  Set up your view to Sort on Hidden Track # instead of Track #.
Logged
The opinions I express represent my own folly.

vagskal

  • Citizen of the Universe
  • *****
  • Posts: 1227
Re: Tagging Hidden Track One Audio (HTOA)
« Reply #2 on: August 15, 2012, 12:42:42 pm »

Or you could first check in Options => Tree & View => Sorting if you have "Sort empty strings last" checked...

MC treats zero values as empty/null.
Logged

sgomes

  • Junior Woodchuck
  • **
  • Posts: 68
Re: Tagging Hidden Track One Audio (HTOA)
« Reply #3 on: August 15, 2012, 06:24:32 pm »

Thanks, guys! I think I'll go with vagskal's approach as it's simpler, and there's likely not going to be a case where there's more than one hidden track.
Logged
Pages: [1]   Go Up