Open carueda opened 2 months ago
@danellecline @ryjombari
As part of our discussion earlier today:
In regards to the current --prefix PREFIX option for pbp-meta-gen, maybe, alternatively, consider something like
--prefix PREFIX
pbp-meta-gen
--pattern PATTERN
to indicate how pbp-meta-gen can extract the timestamp from the input filenames?
PATTERN would be any string with fragments that collectively indicate the timestamp like:
PATTERN
{YYYYMMDD}
{YYYY}
{YY}
{MM}
Where the possible symbols inside a {} fragment include Y, M, D, H, m, s ..
{}
Y
M
D
H
m
s
The NRS11 case would be something like --pattern NRS11_{YYYYMMDD}_{HHmmss}.flac
--pattern NRS11_{YYYYMMDD}_{HHmmss}.flac
Just an idea.
Good idea @carueda. This may be a beneficial approach.
Thanks for capturing this suggestion @carueda
@danellecline @ryjombari
As part of our discussion earlier today:
In regards to the current
--prefix PREFIX
option forpbp-meta-gen
, maybe, alternatively, consider something liketo indicate how
pbp-meta-gen
can extract the timestamp from the input filenames?PATTERN
would be any string with fragments that collectively indicate the timestamp like:{YYYYMMDD}
: 4-digit year, 2-dig month, 2-digit day{YYYY}
: 4-digit year{YY}
: 2-digit year{MM}
: 2-digit monthWhere the possible symbols inside a
{}
fragment includeY
,M
,D
,H
,m
,s
..The NRS11 case would be something like
--pattern NRS11_{YYYYMMDD}_{HHmmss}.flac
Just an idea.