[Alt'tiRi]

Results 159 comments of [Alt'tiRi]

Look working, one minor thing I still want is "hash" from `filename`. It's only: ```py filename_hash = filename.split("_")[1] ``` It's not important value, but I would prefer to save this...

Probably the last issue is how to prevent running "metadata" postprocessor for "background", "avatar"? Limit it only by "artworks" subcategory. https://github.com/mikf/gallery-dl/blob/master/docs/configuration.rst has no mention about `subcategory` in "Postprocessor Options" section....

```sql PRAGMA journal_mode=WAL; ``` can increase the speed of **writing**. [Significantly.](https://github.com/mikf/gallery-dl/issues/1183#issuecomment-1091521806) However you will see the difference only if you run multiple instances of gallery-dl at one time. I think...

> how to further increase read performance [Using of a separated table for each service](https://github.com/mikf/gallery-dl/issues/553#issuecomment-1091466949) will reduce the DB size, also technically it will _slightly_ increase the speed of reading,...

Wait, it's not retweets. It's media (and descriptions) of other profiles from the target profile replies to. I want to download **only content of the passed profile**, without any content...

I just passed `https://twitter.com/profile` link. https://github.com/mikf/gallery-dl/blob/master/docs/configuration.rst#extractortwitterreplies Seems it's just a bug. I want to download in this case all profile's _media_ posts. And with `-o text-tweets=true` all profile's posts (media...

Yeah, I see no sense in this `eval`. Also I get the warning when I use this lib with Rollup.js.

Confirm. It's works **6-7 times faster** than plain old [CryptoJS](https://code.google.com/archive/p/crypto-js/downloads), or [md5.js](https://github.com/crypto-browserify/md5.js) ([with over 8kk weekly downloads](https://www.npmjs.com/package/md5.js)). _~30 seconds vs ~193 seconds for 3.96 GB file (for little files it...

It's was used in a browser (Do they work fine in BE-machines?), or in Node.js?

Also a wrapper for zipping a directory with a few lines of codes would be useful for Node.js. Something like this: ```js const zip = new fflate.ZipSync(); zip.add({path: "./dir"}); zip.write("./result.zip");...