* simplify example format expressions
This commit is contained in:
parent
060a6f4f82
commit
20a746295a
|
@ -19,10 +19,10 @@ episode.example[2]: {n} [{airdate}] {t}
|
|||
# uglyfy name
|
||||
episode.example[3]: {n.space('.').lower()}.{s}{e.pad(2)}
|
||||
# organize folder structure
|
||||
episode.example[4]: {n}/{"Season ${s.pad(2)}"}/{s00e00} - {t}
|
||||
episode.example[4]: {n}/{'Season '+s.pad(2)}/{s00e00} - {t}
|
||||
|
||||
# simple name/year
|
||||
movie.example[0]: {n} ({y}){" CD$pi"}{".$lang"}
|
||||
movie.example[0]: {n} ({y}){' CD'+pi}{'.'+lang}
|
||||
# media info name
|
||||
movie.example[1]: {n} ({y}, {director}) {vf} {af}
|
||||
# name/year and ratings
|
||||
|
@ -30,7 +30,7 @@ movie.example[2]: {n} {[y, certification, rating]}
|
|||
# normalized scene name
|
||||
movie.example[3]: {n.space('.')}.{y}{'.'+source}.{vc}
|
||||
# organize folder structure
|
||||
movie.example[4]: {n} ({y})/{n} ({y}){" CD$pi"}
|
||||
movie.example[4]: {n} ({y})/{n} ({y}){' CD'+pi}
|
||||
|
||||
# simple artist - title
|
||||
music.example[0]: {artist} - {t}
|
||||
|
@ -41,7 +41,7 @@ music.example[2]: {n} - {t} {[audio.SamplingRateString]}
|
|||
# artist - title [2ch, 128000]
|
||||
music.example[3]: {pi.pad(2)} {n} - {t} {[af, audio.BitRate]}
|
||||
# organize folder structure
|
||||
music.example[4]: {n}/{"$album/"}{"${pi.pad(2)}. "} {t}
|
||||
music.example[4]: {n}/{album+'/'}{pi.pad(2)+'. '} {t}
|
||||
|
||||
# simple filename without extension
|
||||
file.example[0]: {n}
|
||||
|
|
Loading…
Reference in New Issue