MAZANOKE update (image optimizer via browser): Batch upload and download
from lent9004@lemmy.world to selfhosted@lemmy.world on 04 Apr 02:46
https://lemmy.world/post/27770289

Thank you for the support that I’ve received during the launch of MAZANOKE—a self-hosted local image optimizer that runs in your browser! It can run offline and is installable as a web app too.

This week, I’ve been addressing the feature that has been a bottleneck for the usability of an image optimizer, namely: batch upload and download.

Project page: https://github.com/civilblur/mazanoke

Highlights v1.0.1 (view release note)

#selfhosted

threaded - newest

anguo@lemmy.ca on 04 Apr 04:13 next collapse

I’m confused, isn’t this running locally? Why are you using the words “upload” and “download”?

lent9004@lemmy.world on 04 Apr 04:29 collapse

That’s a valid question! The app is intended for less tech-savvy people, as such, the terminologies used are to accommodate those users. “Upload” would rather be “Import”, while “Download” would be “Export”.

I’ve shared the use case in a previous Lemmy post:

This app is designed to compress smaller batches of images, aimed at casual users who need to compress and convert a few images at a time.

I created it primarily for friends and family who are less tech-savvy, to help them compress and convert images in a simple, safe, and private way.

anguo@lemmy.ca on 04 Apr 06:04 collapse

While I appreciate the sentiment, I do think that despite being well-intentioned this could just contribute to today’s digital illiteracy. It also downplays the app’s privacy, I almost dismissed it as a cloud service the moment I saw that.

Perhaps you could use “open” and “save”, which is widely understood and probably more appropriate.

That said, the app is a great initiative, and I’ll certainly give it a look once I get in front of a computer, and probably recommend it to students.

rutrum@programming.dev on 04 Apr 06:14 collapse

Just because its run locally, doesnt mean it still isnt a web server. The software could run anywhere and be accessed over the network. The image optimization happens at the server, so download and upload are more accurate.

anguo@lemmy.ca on 04 Apr 06:34 next collapse

Fair enough!

anguo@lemmy.ca on 04 Apr 06:43 collapse

Wait, the optimization does not leave the browser. There isn’t any need for a web server.

If this can be used as an offline PWA, it doesn’t even need to be ‘self-hosted’, except for keeping it up to date.

Edited: removed reference to “device”, to avoid confusion.

[deleted] on 04 Apr 07:30 next collapse

.

rutrum@programming.dev on 04 Apr 14:27 collapse

Yeah, you’re totally right.

All image processing happens locally.

And then it mentions that you can just open the index.html directly, which means it uses clientside javascript or wasm and runs on the browser. You are correct!

On the topic of word choice, you might be right. Save or open might be better.

node815@lemmy.world on 04 Apr 13:47 next collapse

Thanks for sharing this! I used it today to resize my Very large phone selfie I had to do for a profile image update at work and it did very nicely! Much faster for me to do that then load it in Gimp and scale it down since I was running late for work. : )

lent9004@lemmy.world on 04 Apr 14:49 collapse

Haha, very interesting scenario, glad it worked out well!

markstos@lemmy.world on 04 Apr 15:03 next collapse

Nice. I use Squoosh for this, which is also free and runs in the browser.

squoosh.frostoven.com

lent9004@lemmy.world on 04 Apr 16:19 collapse

Even though this squoosh instance seems to be selfhosted, it has Google Analytics tracking (since Google made this app). MAZANOKE does not include any tracking nor require any internet connection at all if you install it as a PWA.

Edit: Looked at the source code of the fork, and it is applying the same tracking ID (to the big G). As squoosh is apache2 licensed, from my understanding, they should be able to simply remove that off the fork?

markstos@lemmy.world on 04 Apr 19:21 collapse

Sounds like an oversight. Consider filing a bug with them.

github.com/frostoven/Squoosh-with-CLI

markstos@lemmy.world on 04 Apr 19:46 next collapse

I’m glad to have some competition for the Frost Oven Squoosh, which is being lightly maintained. I opened some issues in the Mazanoke issue tracker for some features to consider.

One feature I started on for that project but got stuck on was implementing a STDIN / STDOUT CLI workflow.

github.com/frostoven/Squoosh-with-CLI/issues/10

As I said there, the goal was a workflow where I take a screenshot, annotate it, optimize it, copy it and paste it into my blog… without creating any intermediate temp files.

At least on Linux, all the the steps of the pipeline are solved, except for a CLI image compressor that could accept an image STDIN and produce a compressed image on STDOUT.

lent9004@lemmy.world on 04 Apr 20:19 collapse

Oh wow, thank you for taking the time creating the feature requests/issues. I just finishing replying to them.

I’ll give the workflow another think and see if it fits within the project as a whole.

IronKrill@lemmy.ca on 04 Apr 21:59 collapse

I installed this after seeing your v1 post and already got use out of it resizing some images on mobile. The only thing I noticed as lacking was a multiple file selector, so this is a great first update!