* add format examples for moving things into a folder structure
This commit is contained in:
parent
a8c3080d70
commit
2d672c17c7
|
@ -11,26 +11,32 @@ music.sample: {"@type":"net.sourceforge.filebot.web.AudioTrack","artist":"Leona
|
||||||
# basic 1.01
|
# basic 1.01
|
||||||
episode.example[0]: {n} - {s}.{e} - {t}
|
episode.example[0]: {n} - {s}.{e} - {t}
|
||||||
# S01E01
|
# S01E01
|
||||||
episode.example[1]: {n} - {s00e00} - {t}
|
episode.example[1]: {n} - {sxe} - {t}
|
||||||
# airdate
|
# airdate
|
||||||
episode.example[2]: {n} [{airdate}] {t}
|
episode.example[2]: {n} [{airdate}] {t}
|
||||||
# uglyfy name
|
# uglyfy name
|
||||||
episode.example[3]: {n.space('.').lower()}.{s}{e.pad(2)}
|
episode.example[3]: {n.space('.').lower()}.{s}{e.pad(2)}
|
||||||
|
# organize folder structure
|
||||||
|
episode.example[4]: {n}/{"Season $s"}/{s00e00} - {t}
|
||||||
|
|
||||||
# simple name/year
|
# simple name/year
|
||||||
movie.example[0]: {n} ({y}){" CD$pi"}
|
movie.example[0]: {n} ({y}){" CD$pi"}{".$lang"}
|
||||||
# media info name
|
# media info name
|
||||||
movie.example[1]: {n} ({y}, {director}) {vf} {af}
|
movie.example[1]: {n} ({y}, {director}) {vf} {af}
|
||||||
# name/year and ratings
|
# name/year and ratings
|
||||||
movie.example[2]: {n} {[y, certification, rating]}
|
movie.example[2]: {n} {[y, certification, rating]}
|
||||||
# normalized scene name
|
# normalized scene name
|
||||||
movie.example[3]: {n.space('.')}.{y}{'.'+source}.{vc}
|
movie.example[3]: {n.space('.')}.{y}{'.'+source}.{vc}
|
||||||
|
# organize folder structure
|
||||||
|
movie.example[4]: {n} ({y})/{n} ({y}){" CD$pi"}
|
||||||
|
|
||||||
# simple artist - title
|
# simple artist - title
|
||||||
music.example[0]: {artist} - {t}
|
music.example[0]: {artist} - {t}
|
||||||
# simple artist - album - title
|
# simple artist - album - title
|
||||||
music.example[1]: {n} - {album} - {t}
|
music.example[1]: {n} - {album} - {t}
|
||||||
# artist - title [crc32]
|
# artist - title [crc32]
|
||||||
music.example[2]: {n} - {t} {[crc32]}
|
music.example[2]: {n} - {t} {[audio.SamplingRateString]}
|
||||||
# artist - title [2ch, 128000]
|
# artist - title [2ch, 128000]
|
||||||
music.example[3]: {pi.pad(2)} {n} - {t} {[af, audio.BitRate]}
|
music.example[3]: {pi.pad(2)} {n} - {t} {[af, audio.BitRate]}
|
||||||
|
# organize folder structure
|
||||||
|
music.example[4]: {n}/{"$album/"}{"${pi.pad(2)}. "} {t}
|
||||||
|
|
Loading…
Reference in New Issue