Re: Music Renaming
Posted: 21 Jan 2019, 05:42
i am using {d} which shows the entire date.
Code: Select all
{d.year}-{d.month}Code: Select all
Disc 1 - 101
Disc 2 - 201Code: Select all
01Format: Select all
F:\AA/[{y}]{album+'/'}{n}\ - {album}{media.'part/position_total' == null ? null : '/CD ' + media.'part/position'}\{pi.pad(2)} - {t}
Properties: Select all
# MediaInfoLib - v22.12
[General]
Count : 343
StreamCount : 1
StreamKind : General
StreamKind/String : General
StreamKindID : 0
AudioCount : 1
Audio_Format_List : FLAC
Audio_Format_WithHint_List : FLAC
Audio_Codec_List : FLAC
CompleteName : F:\ACDC\FLAC\Are You Ready - The Very Best Of AC DC\Are You Ready - The Very Best Of AC DC [Disc 1]\08 - Baptism by Fire.flac
FolderName : F:\ACDC\FLAC\Are You Ready - The Very Best Of AC DC\Are You Ready - The Very Best Of AC DC [Disc 1]
FileNameExtension : 08 - Baptism by Fire.flac
FileName : 08 - Baptism by Fire
Title : Baptism by Fire
Album : Are You Ready? The Very Best Of
Album/Performer : AC/DC / AC/DC
Part : 1
Part/Position_Total : 2
Track : Baptism by Fire
Track/Position : 8
Track/Position_Total : 17
Performer : AC/DC
Label : Sony Japan
Genre : Hard Rock
Recorded_Date : 2016
ORIGINALDATE : 2016Code: Select all
Are You Ready - The Very Best Of AC DC (2016)Code: Select all
F:/AA/[2016]Are You Ready? The Very Best Of/AC DC AC DC/- Are You Ready? The Very Best Of/CD null/08 - Baptism by FireGroovy: Select all
media.'part/position'Properties: Select all
Part : 1
Part/Position_Total : 2Format: Select all
{ if (media.Part) "Disc $media.Part - $media.Part" }{ pi.pad(2) }Code: Select all
Disc 1 - 114Format: Select all
{
def di = any{ media.PartPosition }{ media.Part }
if (di) "Disc $di - $di"
}
{
pi.pad(2)
}Format: Select all
{ if (music.medium) "Disc $music.medium - $music.medium" }{ pi.pad(2) }Format: Select all
{ "Disc $medium - $medium" }{ pi.pad(2) }