Alter default structure to focus author
This commit is contained in:
parent
765bedeb50
commit
a9f54b8f42
|
@ -110,7 +110,7 @@ which are mapped at download file. The available fields are:
|
|||
The default structure leverages all of these options to create an archive-ready structure as follows:
|
||||
|
||||
```
|
||||
{genre}/{artist}/{album}/{title} [{year}] ({author}).{orig_file}
|
||||
{genre}/{author}/{artist}/{album}/{title} [{year}].{orig_file}
|
||||
```
|
||||
|
||||
As an example:
|
||||
|
|
4
c3dbdl
4
c3dbdl
|
@ -249,7 +249,7 @@ def database():
|
|||
@click.command(name="download", short_help='Download files from C3DB.')
|
||||
@click.option(
|
||||
'-s', '--file-structure', '_file_structure', envvar='C3DBDL_DL_FILE_STRUCTURE',
|
||||
default="{genre}/{artist}/{album}/{title} [{year}] ({author}).{orig_name}",
|
||||
default="{genre}/{author}/{artist}/{album}/{title} [{year}].{orig_name}",
|
||||
help='Specify the output file/directory stucture.'
|
||||
)
|
||||
@click.option(
|
||||
|
@ -280,7 +280,7 @@ def download(_filters, _limit, _file_structure):
|
|||
|
||||
\b
|
||||
The default output file structure is:
|
||||
"{genre}/{artist}/{album}/{title} [{year}] ({author}).{orig_file}"
|
||||
"{genre}/{author}/{artist}/{album}/{title} [{year}].{orig_file}"
|
||||
|
||||
\b
|
||||
Filters allow granular selection of the song(s) to download. Multiple filters can be
|
||||
|
|
Loading…
Reference in New Issue