-
-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Parser for Folder and File Naming please; Allows a MAJOR improvement. #33
Comments
I was just thinking I forgot to mention the master tags... so besides the %EX there should also be a %MA (and those two should be in the default settings) Folder name : %RN%MA%AN This made me realize the program currently only marks M for albums, and not for their tracks. |
fixed |
Which line to add the folder name to the setting(albumfolderformat), so that it would be like this: |
If I want an album name (AlbumFolderFomat): And for file name like(TrackFileFormat): 01 - artist - album - year - title |
Album ID can be added to the album foldername, but only in front...
I'd like it in the back because I already add the album year in front to sort
by year but the album-id messes this sort up.
Now we have these options in the setting screen :
"Add Year" (Before/After/None)
Choose :
"Add artist-name before title"
"Add album-id before album-folder"
Track :
"Add track number"
"Add hyphen between"
"Add [explicit]"
These are a lot of options and one does still not have a lot of control over folder and file naming...
so I was thinking a parser would be much better as it simplifies the settings screen (less options shown) while it
makes all kinds of folder and track naming possible
So it could be better by replacing ALL of the options above by
TWO text fields where one can type a parser string
Track Folder name : [ ]
Track name : [ ]
with
%AI = Album ID (the number tidal uses to look up albums)
%AT = Album Title
%AY = Album Year
%AF = Album Format (Albums, Compilations, EP & Singles, Live Albums) *** remark see bottom
%RI = aRtist ID (the number Tidal uses to look up artists)
%RN = aRtist Name (I chose R as it sounds the same as "ar" and as the A is already taken by "album")
%TT = Track Title
%TN = Track Number
%EX = "[Explicit]"
(These possibilities should of course be showed next to the text fields. I guess there are more %xx for other properties ? )
This way the user has FULL control where and how he wants to save; some examples :
Folder name : %AF%RN[%AY]%AT [%AI]
=> "Compilations\Abba[1993]Abba Gold [1771744]"
=> "EP & Singles\Abba[2014]Knowing me, Knowing you [32782200]"
Track name : %TN - %TT%EX
=> "01 - Dancing Queen"
=> "01 - Knowing Me, Knowing You (Live)"
Folder name : %AY%RN%AT (ID:%AI)
=> "1993\Abba\Abba Gold (ID-1771744)" !! warning !! parser should also replace illegal characters by '-' !!
=> "2014\Abba\Knowing me, Knowing you (ID-32782200)"
Track name : %RN - %TN %TT
=> "Abba - 01 Dancing Queen"
=> "Abba - 01 Knowing Me, Knowing You (Live)"
Folder name : %RN%AF[%AY]%AN (ID:%AI)
=> "Abba\Compilations[1993]Abba Gold (ID-1771744)"
=> "Abba\EP & Singles[2014]Knowing me, Knowing you (ID-32782200)"
Track name : %TN %TT
=> "01 Dancing Queen"
=> "01 Knowing Me, Knowing You (Live)"
So Endless possibilities this way ! And you can make a default string so the program stays compatible with previous releases !
Folder name : %RN%AN
=> "Abba\Abba Gold"
=> "Abba\Knowing me, Knowing you"
Track name : %TT => "Dancing Queen"
=> "Dancing Queen"
=> "Knowing Me, Knowing You (Live)"
!!! REMARK For Album Type !!!
!!! It looks like some albums can be multiple types :
https://tidal.com/browse/album/138264
(Artist : Blondie; Album : "Bite Size Blondie") occurs under "EP & Singles" AND under "Compilations"
So I guess Tidal uses some kind byte? and does OR-ing ? f.i. if 0x00000010 = "EP & Singles"; 0x00000100 ="Compilations"; then 0x00000110 would be both ?
If that is the case => just pick ONE type by priority : Albums>Compilations>EP & Singles>Live Albums !
In our case the Blondie album "Bite Size Blondie" would be considered of the type "Compilations"
and not "EP & Singles" for our folder naming as "Compilations" has a higher priority
P.S. Another question !
The program now uses ONE path for All Albums; Playlists and Videos (is there anything else?)
I would like to choose 3 different paths myself
Maybe this option could be added with a checkbox :
Path : [d:\tidl]
[ ] Use different for Albums, Playlists and Videos
Album Path : [d:\Tidl\Albums] (disabled)
Playlist Path : [e:\Tidl\Playlists] (disabled)
Video Path : [x:\Tidl\Videos] (disabled)
When checkbox is not checked only Path is enabled and the other three disabled and the program can be working like it is already. When checked Path : [ ] text field gets disabled and the three others enabled and one can choose 3 different folders
The text was updated successfully, but these errors were encountered: