Mike Fährmann

Results 577 comments of Mike Fährmann

@rsn-yk You could use `--print-to-file file:deviationid FILENAME` or a custom `metadata` post processor in general to write the UUID of each downloaded file to FILENAME. An [archive](https://gdl-org.github.io/docs/configuration.html#extractor-archive) with `{deviationid}` as...

> I'm not sure if `--print` implies something like `--simulate`, but if not it's not a problem to use them together. `--print` does **not** imply any other options. It is...

@biggestsonicfan > Tried about everything at this point and I am unsure if it's a race condition or something is just not getting passed correctly, but please see attached verbose...

@Wiiplay123 There is `-A / --abort`: ``` -A, --abort N Stop current extractor run after N consecutive file downloads were skipped ``` Depending on the site and if it provides...

@biggestsonicfan [`forward-cookies`](https://gdl-org.github.io/docs/configuration.html#downloader-ytdl-forward-cookies) is a `ytdl` downloader option. You can enable it there. ``` json { "downloader": { "ytdl": { "forward-cookies": true } } } ``` Actually, `forward-cookies` is enabled by...

@Wiiplay123 If I understand your problem correctly, it is possible to achieve something like this with a bunch of `python` post processors. The following will stop after processing 3 (`THREAD_MAX`)...

> and makes the date modified ‎December ‎31, ‎1969, ‏‎7:00:00 PM That's an error in VK's `Last-Modified` headers, nothing to do with gallery-dl. > Also can't download liked images or...

``` json "imgur": { "image": { "filename": { "'_reddit' in locals()": "{_reddit[title]} {_reddit[date]:%Y-%m-%d} {_reddit[id]}{num:?-//}.{extension}", "" : "{title:?/ - /}{filename}.{extension}" }, "directory": ["imgur"] }, "album": { "filename": { "'_reddit' in locals()":...

Ideally, this would be doable with `--print` / `--print-to-file`, but these options are implemented as post-processor and there is currently no `event` to trigger on "artist" results, so that's not...

> [instagram] [error] HttpError: '401 Unauthorized' for 'https://www.instagram.com/graphql/query/' I think you are using a somewhat old version since it is still using `/graphql` API requests by default. You should update...