Alter default structure to focus author

This commit is contained in:
Joshua Boniface 2023-04-03 04:39:04 -04:00
parent 765bedeb50
commit a9f54b8f42
2 changed files with 3 additions and 3 deletions

View File

@ -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: 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: As an example:

4
c3dbdl
View File

@ -249,7 +249,7 @@ def database():
@click.command(name="download", short_help='Download files from C3DB.') @click.command(name="download", short_help='Download files from C3DB.')
@click.option( @click.option(
'-s', '--file-structure', '_file_structure', envvar='C3DBDL_DL_FILE_STRUCTURE', '-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.' help='Specify the output file/directory stucture.'
) )
@click.option( @click.option(
@ -280,7 +280,7 @@ def download(_filters, _limit, _file_structure):
\b \b
The default output file structure is: The default output file structure is:
"{genre}/{artist}/{album}/{title} [{year}] ({author}).{orig_file}" "{genre}/{author}/{artist}/{album}/{title} [{year}].{orig_file}"
\b \b
Filters allow granular selection of the song(s) to download. Multiple filters can be Filters allow granular selection of the song(s) to download. Multiple filters can be