taskhawk
taskhawk
> Thanks a lot! Just curious -- is there a list of available key=value pairs for `-o` that I'm too dumb to find? You can find them here: https://gdl-org.github.io/docs/configuration.html
There doesn't seem to be support for them. I thought of using a filter but when checking the available keys using `gallery-dl -K "url"` the tags are not being extracted...
The syntax is wrong, it should be like this to work: ```json { "extractor": { "directory": ["{media[id][0:2]}", "{media[id][2:4]}"], "filename": "{media[id]}.{extension}" } } ``` Give it a try.
When you check the keywords with `gallery-dl -K "URL"`, does `media['id']` appears in the section "_Keywords for directory names:_"? If so, it should work. Care to share an example to...
Then I think the only way would be to use a post-processor to create the folders and move the just-downloaded file there, tbh. ```json { "extractor": { "directory": ["temp-dir"], "filename":...
You can use this in your configuration file to download the files with the original file names: ```json { "extractor": { "coomerparty": { "filename": "{filename}.{extension}" } } } ``` Or...
Does it start working as before if you downgrade to the previous version?
There's a typo in [`extractor.reddit.client-id & .user-agent`](https://github.com/mikf/gallery-dl/blob/master/docs/configuration.rst): > "I'm not a **rebot**"
Is there support to remove metadata like this? `gallery-dl -K https://www.reddit.com/r/carporn/comments/axo236/mean_ctsv/` ``` ... preview['images'][N]['resolutions'][N]['height'] 144 preview['images'][N]['resolutions'][N]['url'] https://preview.redd.it/mcerovafack21.jpg?width=108&crop=smart&auto=webp&s=f8516c60ad7fa17c84143d549c070738b8bcc989 preview['images'][N]['resolutions'][N]['width'] 108 ... ``` Post-processor: ```json "filter-metadata": { "name": "metadata", "mode": "delete", "event":...
You can load additional configuration files from the console with: ``` -c, --config FILE Additional configuration files ``` You just need to specify the path to the file and any...