[ / / / / / / / / / / / / / ] [ dir / random / 93 / biohzrd / hkacade / hkpnd / tct / utd / uy / yebalnia ]

/hydrus/ - Hydrus Network

Bug reports, feature requests, and other discussion for the hydrus network.
Name
Email
Subject
REC
STOP
Comment *
File
Password (Randomized for file and post deletion; you may also set your own.)
Archive
* = required field[▶Show post options & limits]
Confused? See the FAQ.
Embed
(replaces files and can be used instead)
Options

Allowed file types:jpg, jpeg, gif, png, webp,webm, mp4, mov, swf, pdf
Max filesize is16 MB.
Max image dimensions are15000 x15000.
You may upload5 per post.


This board will be deleted next Wednesday. I am moving to a General on 8chan.moe /t/. This board is archived at 8chan.moe /hydrus/!

File: 1a9285021606585⋯.mp4 (12.52 MB,1280x720,16:9,1a92850216065854fb2553edc6….mp4)

0eb199 No.10654 [Last50 Posts]

Due to some funny voting, I am considering the poll finished earlier than expected and will start work on an API prototype in the new year. (details >>10845) Thank you everyone for voting–I really appreciate the feedback.

Here is the poll if you would like to review what was overall popular and not:

https://www.poll-maker.com/poll2148452x73e94E02-60

This thread remains available for discussion of anything related to the poll.

Thanks everyone!

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.
Post last edited at

965ca6 No.10659

>>10654

I think that a waifu2x integratoin/plugin would be immediately useful for a lot of people, especially those who have active download pages. Japanese artists seem to have this weird hangup about resolution.

I see an immediate path after waifu2x integration for a semi-automatic "type" selection/tag using neural networks. Maybe start by using a neural network to determine what upscaling algorithm (waifu has 4, IIRC) to use with what file.

Anything to do with lookup speedup, whether it's search, autocomplete, whatever, will be immediately useful.

CBZ/CBR support will be immediately useful. I currently have a bunch just sitting in folders ready for import, so it's not a priority for me, but for those who use their collection more actively…

Mass auto-lookup would be extremely helpful if it is what I think it is? Is it setting up a tag download page for existing files similar to file download?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

81347a No.10660

>>10659

>I think that a waifu2x integratoin/plugin would be immediately useful for a lot of people, especially those who have active download pages. Japanese artists seem to have this weird hangup about resolution.

Personally, I think it's fine to leave it for later.

You can already use it on all the files you want outside the program, then import those and use the duplicate system to pass the tags onto the new pics.

I think it'd be better to get stuff from hydrus itself in first, like the duplicate system, audio and file support.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

f05153 No.10661

>>10654

With "Add import any file support (giving it 'unknown' mime)"

If this gets added, Instead of a sorted db folder for it, would it be possible to put it into its own spot retaining its file name if possible?

Also, would it be possible to have a setting that is known by hydrus, where you have all the files types hydrus knows and can display, and a known to me section that would store files I know what they are

Other then that my main need is at 3% so im happy its not a purely me problem.

>>10659

I would 100% argue against semi automatic, however a right click function to take you to a page for it where you can put settings in and compare before and after would be great.

>>10660

I do agree with this, however its all a matter of how hard the integration would be in my eyes.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0e360c No.10663

1. API for Waifu2x, DeepCreamPy and other image manipulation software

2. API for Web and mobile clients like Mignori/BooruNav/AnimeBoxes

3. API for multi-client multi-IP single server downloading

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5613eb No.10665

I'm happy how many based users voted for OR logic. It is so important to file searches.I can't imagine how you would actually implement it though.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

81347a No.10667

>>10665

>I can't imagine how you would actually implement it though.

It's entirely dependent on how the current search system is implemented. It could be as simple as one line, or as complex as an entire program.

The fact that it's not in yet makes me think it's closer to the latter.

>audio support in third

Soon.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5613eb No.10668

>>10667

Not even thinking about back-end yet. I'm just wondering how the front-end would work, like how the user would input multiple groups of tags OR'd with each other

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3ce332 No.10669

>>10668

1girl | 1guy

1girl || 1guy

1girl or 1guy

something like that?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

81347a No.10670

>>10668

The suggestion thread has some good ideas >>7468

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

07a0ce No.10675

>>10665

I'm very happy about this too. It's not only important to file searches, but also essential for some kinds of search approaches that are a bit looser in terms of what tags you need.

The right-click solution in >>7468 looks really good. >>7470 mentioned being a keyboardfag. I admit I'm not much of a boolean logic guy, but how about something like this:

taga and tagb are an OR group: OR groups return with at least one of the group items tagged:

tag1 tag2 ~taga ~tagb

I think this is called XOR? It returns with only one of the group items tagged:

tag1 tag2 !taga !tagb

Here are an XOR group and an OR group. Both groups are satisfied independently. This returns only one of a or b, and at least one of c and d:

tag1 tag2 !taga !tagb ~tagc ~tagd

Two OR groups. This returns at least one item in each group:

tag1 tag2 {~taga ~tagb} {~tagc ~tagd}

There was also an AND subgroup that only returns if all its items are tagged, as in "(orange hair + orange shirt) OR (red hair + red shirt)":

tag1 tag2 ~{taga tagb} ~{tagc tagd}

You can again choose to return only one AND subgroup with XOR:

tag1 tag2 !{taga tagb} !{tagc tagd}

Two OR groups each with their own AND subgroups:

tag1 tag2 {~{taga tagb} ~{tagc tagd}} {~{tage tagf} ~{tagg tagh}}

The last one is probably overkill, but it shows that you can make a rather complex search that looks clean with just a few symbols.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

07a0ce No.10676

>>10675

Aaand I overlooked something big: How would you enter such a query like this into the search box? The search box does tags one at a time and allows spaces.

I suppose we'd need a separate query builder that could parse the query from a single line of text and display it in the search box the way it looked in the suggestion thread. We'd also need an escape key for sure.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f6d46 No.10677

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f6d46 No.10678

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

07a0ce No.10679

>>10678

That looks much better and seems quite straightforward. I've never used Derpibooru before so I wasn't familiar with it. Hopefully this wouldn't be too hard to implement in Hydrus.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5f6d46 No.10680

>>10679

Derpibooru uses infix, everyone else uses tags-on-tags

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

81347a No.10683

>>10677

>>10678

Hydrus allows spaces though.

Those work great, but they're made with tags separated by underscores in mind.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

92d161 No.10684

From an image archiving perspective waifu2x poses some interesting problems.

1) It will be difficult to determine which up-scales are derived from original source images vs 500px tumblr images.

2) Even if waifu2x provides deterministic up-scaling for now there will undoubtedly be different/better trained networks in the future, resulting in innumerable marginally different images.

3) It is almost inevitable someone will start x20 up-scaling their images and pass them around as original.

It will be interesting to see how things transpire.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

f05153 No.10685

>>10684

see

>>10575

This is one of the reasons I want a contender mode

A known good vs a new image makes sorting loads easier than not knowing where your known good is.

granted an auto filter would likely not catch an original image unless it was tagged as 'source' which very well could be a thing that happens from now on when downloading from certain areas, as these are the original source areas, rather then a booru source.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0eb199 No.10700

>>10659

Auto-lookup would automate file lookup scripts. Essentially a background task to look up tags for files. You would queue up a thousand files, and hydrus would spend a day asking danbooru or wherever 'hey, you got any tags for this file?' spaced out in a polite way.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0eb199 No.10701

>>10661

'unknown' mime files would get their own mime, probably something like 'application/octet-stream', so would be searchable or excludable with system:mime. I am not sure how I would do the import workflow for them, whether I could do that on the existing pipeline or better to have a separate one, but I should think it would have optional filename tagging like the current system.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0eb199 No.10702

>>10665

>>10675

>>10676

My plan is to do something like shift+enter to open a new OR chain. So you type:

system:inbox ENTER skirt ENTER blue eyes SHIFT ENTER green eyes ENTER

And get

system:inbox

skirt

blue eyes OR green eyes

It would support n tags in the OR group/chain. Let's start with something simple like that and then iterate on it.

The db level searching will be some new nested objects in the big search object and just munching through all the code and adding UNION instead of INTERSECT when an OR turns up. Not ultra complicated, but a decent amount of work.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0eb199 No.10704

>>10702

Just to clarify, each line in the hydrus search predicate list would still AND with every other line, so you could have:

blue eyes OR green eyes OR red eyes

blonde OR redhead

To get ( blue | green | red ) & ( blonde | redhead )

i.e. blondes or redheads with blue, green or red eyes, but not a brunette with blue eyes.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0eb199 No.10705

>>10685

>>10684

My general feeling on this issue is that the train is already leaving the station. Cloudflare and other hosting providers are 'optimising' and resizing content and locking down original files all over the place, so our future can expect more duplicate-matching tech and less hash-reliant tech no matter what.

Since we'll have to move in this direction, adding waifu2x–and whatever other processing systems are added in the next ten years–won't be such a giant problem.

I see 8bit -> 10bit+ colour channels as a big missing puzzle piece here as well, when we finally move from jpg/png to whatever HDR format takes over. I'd love to have an exe that will fill in natural green colours in all my old jpegs, but again there is no guarantee that that will be deterministic. The future is shapes and colours and 100% GPU, not hash-matching. :/

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

06f6b5 No.10709

>>10702

>>10704

Shift-enter looks like the simplest way to go about it since it's based on a current way of doing things. Much easier than having to type out a big query all at once.

This will be very fun to play with in the future.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

908cfd No.10710

Absolutely amazing how everybody wants something different. Welp, you have your work cut out for you, devbro.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0eb199 No.10717

>>10710

It is a nice problem to have! I get a lot out of working on hydrus, and I can't imagine my to-do running out any time soon.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

81347a No.10727

>>10702

>>10704

You can't put ANDs inside ORs that way but it sounds good.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

758c7e No.10733

>neural net auto-tagging

I'll be honest, when I first heard and used Hydrus, I thought the program was essentially capable of this. I was a bit disappointed that it couldn't recognize and tag even some simple memes simply because the picture isn't an exact match from some database.

So clearly this is what I want most (helps that I think Hydrus is already great as is beside the poor autotagging)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

dac97f No.10744

>>10733

See >>10663 with API, adding illustration 2 vector would be easy.

https://github.com/rezoo/illustration2vec

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

f05153 No.10748

damnit, the deleted one is so low on the list now. I cant do culling till something no matter how jerry rigged it is is implemented.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

06d2b0 No.10749

>>10733

>>10744

With all the sensitivity and specificity issues these things have, it'd be a good idea to put their tags into their own managed databases that can be regenerated when the model or neural network software get an update, or even just allow them to generate and supply additional tags transiently and async that are then merely some quick suggestion for actual manual tagging.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

06d2b0 No.10751

>>10704

Why not just make it look explicitly like:

> ( blue | green | red ) &

> ( blonde | redhead )

An user can still enter only "blue | green | red <ENTER> blonde | redhead", but at the point where he hits enter he'll get the explicit grouping round brackets and the "&" added. Maybe with some coloring applied to kinda indicate it isn't an editable thing and added automatically.

Then simply allow it all on one line, too:

> ( blue | green | red ) & ( blonde | redhead )

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

06d2b0 No.10752

>>10751

Actually, I guess the grouping brackets would be there anyhow and you only get the & on a new line.

Either way, if this is explicit, it will not get very confusing if the long expressions now line wrap or anything else like that, plus quite a lot of people understand better what's going on this way anyhow.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

1aa830 No.10753

For those who want video/audio support:

Just add MPV to it (GPLv2)

For those who want Office functions:

Just add OnlyOffice to it (AGPL)

The only thing we need is MIME support

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

1ac7ae No.10760

I believe that before adding a new functions hydrus needs to improve everything it have now, so:

Just catch up on small work for a couple of months

Reduce crashes and ui jitter and hanging by improving ui-db async code

Improve duplicate db storage and filter workflow (need this first before alternate files support)

Cleanup code and improve practises

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c4a83c No.10761

>>10760

Agreed. Hydrus dev also needs to allow pull requests & commit during development instead of before release.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3ce332 No.10763

>>10761

>Hydrus dev also needs to allow pull requests

We've gone over this a couple times, hdev is not inherently against this but feels that currently doing so would not help him. He is going to work on his style and such the coming weeks until 12th of december, after which he will convert to py3 for a couple of weeks. Then he will start on the newly polled feature. Come to the discord and ask for the @dev_alert role to talk to dev about it when he comes online.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0eb199 No.10766

>>10748

I don't know what to say m8. If you can bear it without sperging out, I think your best return on investment is to prioritise a 90% solution instead of waiting for a 100%.

I'm happy with how delete works and still drowning in my inbox, and I know many other users are as well, so your concern about missing certain files due to specific reasons may be a false fear compared to a larger problem of 'how do I get through these 20,000 files in time when I know there will be 5,000 more next week'.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0eb199 No.10768

>>10751

>>10752

I think part of OR will be talking to people about how they actually use it once a prototype is out. If it is common to join, say, six or more tags together, multi-line wrapping makes sense. Otherwise I think I can fudge through with just adding tooltips or something.

If people don't like OR as the text joiner, I can always customise it. A benefit I have here that is different to how the boorus do all this is that I store the search predicate as a complicated objects. I won't be storing it as a string 'a | b | c', but a new OR predicate with list [ a, b, c ]. This makes different presentation and other kinds of handling like initial entry and even editing much easier.

As for the &, maybe I confused things with my rough explanation. I mean for OR-supported search in hydrus to work the same way as current search, where every line in the search:

system:inbox

blue eyes

blonde hair

Is implicitly &. That search is ( inbox & blue eyes & blonde hair ). I see OR search in hydrus as just allowing one or more of those exclusive predicates to be an OR, like:

inbox

blue eyes OR yellow eyes

blonde hair

To mean ( inbox & ( blue eyes | yellow eyes ) & blonde hair ), or "in inbox and blonde hair and either blue or yellow eyes". Is there a more formal way I should write that? I am just using 'pseudo-code' logic.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

107c68 No.10775

>>10763

Also vote for cleaner code and better practices so we can establish code contribution rules like:

- only fork from releases so he does not have to handle non-release forks

- make sure everything works before forking or else it will not be accepted

- format the documentation so that he can understand what you have done

Currently his style looks like a one-man version of https://rfc.zeromq.org/spec:22/C4/

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0eb199 No.10779

>>10775

Sorry, I am not interested in working directly with others on hydrus. Anyone is free to fork the code and do whatever they want, but I do not work well in teams.

I would like to clean the code however and improve how my week works and build goes together, which is what this item means.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0824c0 No.10785

>>10779

But people will try one way or another. Code dominance is a thing, and people want make a mark in history by getting involved, whether Dev takes it or not. The reasoning for those 3 lines is to act as a deterrent and to not be used at all.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a5ecd9 No.10821

>>10768

>I think part of OR will be talking to people about how they actually use it once a prototype is out.

I often use OR to bundle together groups of tags that I'm interested in to make a mini-gallery, kind if like a "smart playlist" in music terms. It could be for example, artists who draw in a similar style, or characters who belong to a similar group or category such as an im@s idol group or a class of KanColle ships that can't really be tagged objectively based on the content of the image alone. These kinds of uses can result in a range of as few as 3 to as many as 10 or more tags joined with OR.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

d848e1 No.10842

File: c999509bebcce3c⋯.gif (97.36 KB,200x145,40:29,1381460519606.gif)

>audio support 7th

It's never gonna happen

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0eb199 No.10844

>>10842

My big push now is to have quick turnaround on these jobs. Unlike the way overdue downloader overhaul, I want to quickly iterate on this stuff and keep the job time to 2-3 months. If it ends up being seventh in line, that would ideally be a couple of years. I'll keep pushing.

In the meantime, there may be a library update that makes this easier, btw. If someone gets some good python ffmpeg bindings going, or I end up moving to qt next year and there is a good embeddable solution, I may be able to fit this in easier instead of in some borked way.

I may also take a week sometimes to add a simple 'has audio' metadata to the client. I'm pretty sure I can grab that from my existing ffmpeg connection, and it'd be nice to display in the media viewer ui a speaker icon or something and have search capability for this, which should improve existing 'should I double-click to open externally?' workflows.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0eb199 No.10845

File: 7508b6847143f95⋯.png (35.28 KB,693x222,231:74,wew.png)

File: 5a09a1f25cfc499⋯.webm (1.86 MB,666x420,111:70,5a09a1f25cfc499f75d5650d5….webm)

It looks like a whole bunch of votes came in all at once to OR in a non-organic way, see pic related.

I don't want to get into the business of trying to figure out and subtract what looks like dodgy votes, so I am going to consider the vote finished now, early. As far as I can tell, the overall story of this vote was that API and OR are the most desired, with API a persistent very slight lead. I will work on an API prototype next, starting in the new year.

I am pleased that we got good data up until now, and I am thankful for everyone who voted. Some things were higher priority than I expected, and some lower.

I will edit my OP here and repeat it in the release post for 333. Since OR was such a close contender, I am open to working immediately on that afterwards since it will most likely win the next vote anyway, but I am open to other suggestions.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

4f8ce4 No.10864

>>10844

>>10845

Please have cleaner code (2rd), please have API (1st), please have better workflow (3rd). And if possible, Async (5th), local booru (4th), metadata (8th) and Dedup (7th) support.

Audio/Video support can simply be done with inclusion of MPV, so that is trivial (in fact by including that we can supportmany more video formats).

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

4f8ce4 No.10865

>>10864

Please read this https://github.com/jaseg/python-mpv to see how easy that is

Might as well plug this in if people want it https://github.com/rg3/youtube-dl for downloading from YouTube, Soundcloud and all the alt-tube sites

Also regarding the API, according to most mobile devs, they would prefer Danbooru/Moebooru API over everything else, so I drafted an API spec for Hydrus https://ghostbin.com/paste/hghv2 (Gelbooru could come later)

And Nori dev (tjg1) says the downloader script GUI is overengineered, whatever.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

02b522 No.10868

Sorry lads, but how can I bulk-download booru-imageboard image files in bulk?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

02b522 No.10869

File: 2ec22a631ee863c⋯.png (10.21 KB,427x185,427:185,temp.png)

>>10868

I get the error of pic related.

I already followed instructions to reinstall the .dll for this, so I am at a loss what to do now.

Pls halp ;_;

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

02b522 No.10870

>>10869

>>10868

Sorry for not putting this all into one post - but I tried to install "bionus" "Imgbrd grabber" by the way. Is something like this possible with hydrus!? I never tried…

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

6ffb7a No.10882

>>10870

Imgbrd is a separate project that does similar things, this board is not responsible for it, best ask in https://github.com/Bionus/imgbrd-grabber/issues

Bionus & pals has promised to make things easier for us to import data to Hydrus, but it is not yet well integrated.

https://github.com/Bionus/imgbrd-grabber/issues/1001 and https://github.com/Bionus/imgbrd-grabber/issues/588 has some notes

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



[Return][Go to top][Catalog][Nerve Center][Random][Post a Reply]
Delete Post [ ]
[]
[ / / / / / / / / / / / / / ] [ dir / random / 93 / biohzrd / hkacade / hkpnd / tct / utd / uy / yebalnia ]