Go to file
Óscar M. Lage 80b872d6e9 Add FetchImageFromGoogle function for the images download
From now on we can use both: fanart and google for the images download. By
default it will be using fanart but if we want to use google because images
in fanart are not appropriate (or it didn't find anything because the
content is Spanish or reasons), we can add the following to the .md:

```yml
query: google
```

And it should use google for image searching instead of fanart.
2024-12-17 14:29:54 +01:00
internal Add FetchImageFromGoogle function for the images download 2024-12-17 14:29:54 +01:00
obsidian Minor changes 2024-10-11 13:05:57 +02:00
templates Added different image sizes 2024-10-28 12:57:45 +01:00
utils Add FetchImageFromGoogle function for the images download 2024-12-17 14:29:54 +01:00
.gitignore Add trakt_token.json to gitignore 2024-10-09 21:06:38 +02:00
env.sample Added music 2024-10-11 13:05:46 +02:00
go.mod Go mod updates 2024-10-28 12:58:04 +01:00
go.sum Go mod updates 2024-10-28 12:58:04 +01:00
main.go Added --help parameter + README 2024-10-25 09:36:05 +02:00
README.md Added --help parameter + README 2024-10-25 09:36:05 +02:00

Medialog

Usage: go run main.go [--media ediatype] [--update]

Description:
    This command allows you to manage multimedia files and update their data in the system.

Options:
    --media <mediatype>    Specifies the type of media to process.
                           Possible values are:
                             - movies:    Processes movie files.
                             - series:    Processes series files.
                             - books:     Processes book files.
                             - games:     Processes game files.
                             - music:     Processes music files.
                           If not specified, all media types will be processed.

    --update               Runs in update mode to refresh existing media entries.
                           This option is optional and requires no value.

    -h, --help             Displays this help message and exits.

Usage examples:
    go run main.go --media movies           Processes only movie files.
    go run main.go --update                 Updates all multimedia files.
    go run main.go --media series --update  Processes and updates series files.