Mike Fährmann

Results 576 comments of Mike Fährmann

@cglmrfreeman use `%20` or plain spaces instead of `+` signs ``` $ gallery-dl https://twitter.com/search?q=from:casulcasulcasul%20max_id:1081020936185274371%20filter:links /tmp/twitter/casulcasulcasul/1081020936185274371_1.jpg /tmp/twitter/casulcasulcasul/1071670086094643201_1.jpg ... $ gallery-dl "https://twitter.com/search?q=from:casulcasulcasul max_id:1081020936185274371 filter:links" /tmp/twitter/casulcasulcasul/1081020936185274371_1.jpg /tmp/twitter/casulcasulcasul/1071670086094643201_1.jpg ... ```

No, `+` signs as space replacements do not work in gallery-dl. The function that parses query parameters does not "support" them, meaning it just returns `+` as is and does...

Oh, so the "NotFoundError"s are a bug introduced with https://github.com/mikf/gallery-dl/commit/77bdd8fe0f1702955d0746a81ea7a24c9d1bb065. This commit splits search queries by whitespace only, and throws an error because there is no user named `casulcasulcasul+max_id:1081020936185274371+filter:links`

This is the first time I've heard of an error like this. Searching for "Fatal Python error: initfsencoding: unable to load the file system codec" suggests that Python specific environment...

Not possible with `--ugoira-conv-lossless` or any related command-line option. You'll have to use a post processor inside a config file and enable the `keep-files` option. ``` "postprocessors": [ { "name"...

Single entries use a different API endpoint with slightly different, more complete metadata. I've added a `metadata` option for wallhaven (https://github.com/mikf/gallery-dl/commit/a69f198ac9fe48505cd1ad5296cefedc9ce7056c), that, when enabled, uses the single entry API endpoint...

To answer the original question: Not possible. gallery-dl used to use youtube-dl to download videos from IG, but that was removed quite some time ago in c18fadc2. It would also...

> however skip:true must not be checked after the (pre)postprocessor and before the download starts Whether to skip a download or not gets checked after `event: prepare` post processors run:...

You can enable the `conversations` option to download from all tweets or replies in a thread. If it is disabled (default), it only grabs the single tweet specified in the...

`user[…]` is supposed to refer to the user from your twitter URL, regardless of who actually published the tweet. Try `author[…]` instead. ``` json "directory": { "" : ["{author[name]} [{author[id]}]"],...