Solved Song sorting by dates (TDOR, TDRC, TDRL) not just YEAR
#16
Vorbis comments have no official standard, but DATE, ORIGINALDATE, and YEAR seem to be the generally accepted tags.

Really Vorbis is more flexible then ID3, but media players don't seem to have made use of it. There is an arguement that says the way all tag processing is hard coded into Kodi is a limit, and that a user configurable meta model would be better, but that is not where we are. Optional fields, or one field meaning configurable things causes problems.

For your interest Kodi does not use SQL to do the sorting, it fetches all the data using queries without ORDER BY statements and then sorts the results set locally. So determining values for a date field to sort by could be done locally, but it is the local parsing of the data into objects and then sorting etc. that makes Kodi slow on large music collections. A "fancy SQL query" could be used to get a value from a variety of fileds, but I learned long ago avoiding null fields can save a lot of headaches.
Reply


Messages In This Thread
RE: Song sorting order - by jjd-uk - 2016-08-23, 18:32
RE: Song sorting order - by jjd-uk - 2016-08-23, 18:36
RE: Song sorting order - by AnalogKid - 2016-08-23, 21:31
RE: Song sorting order - by scott967 - 2016-08-23, 21:59
RE: Song sorting order - by AnalogKid - 2016-08-24, 11:55
RE: Song sorting order - by jjd-uk - 2016-08-24, 13:43
RE: Song sorting order - by scott967 - 2016-08-24, 21:38
RE: Song sorting order - by DaveBlake - 2016-08-25, 09:11
RE: Song sorting order - by jjd-uk - 2016-08-25, 10:12
RE: Song sorting order - by AnalogKid - 2016-08-25, 13:27
RE: Song sorting order - by jjd-uk - 2016-08-25, 15:05
RE: Song sorting order - by DaveBlake - 2016-08-25, 15:30
RE: Song sorting order - by AnalogKid - 2016-08-25, 15:31
RE: Song sorting order - by AnalogKid - 2016-08-25, 16:38
RE: Song sorting order - by DaveBlake - 2016-08-25, 16:59
RE: Song sorting order - by AnalogKid - 2016-08-25, 17:18
RE: Song sorting order - by DaveBlake - 2016-08-25, 17:35
RE: Song sorting order - by AnalogKid - 2016-08-25, 17:52
Logout Mark Read Team Forum Stats Members Help
Song sorting by dates (TDOR, TDRC, TDRL) not just YEAR0