FuzzyIdeas / Clop

Clipboard optimizer for macOS
https://lowtechguys.com/clop
GNU General Public License v3.0
520 stars 23 forks source link

Disable Floating Results For Image Auto-Optimizer #26

Open DmacMcgreg opened 1 month ago

DmacMcgreg commented 1 month ago

First of all, want to say this is one of my favourite apps! Simple idea, and near flawless execution!

Right now I'm using this to optimize a constant flow of image screenshots of my screen. This results in Clop popping up every few seconds with new results.. Can we add an option per-folder to not show the results and just have it work silently in the background?

alin23 commented 1 month ago

Thank you!

Interesting use case. Is this like a home made Rewind.ai ?

I'll look into it, could be easy enough to add.

Hint: you can use ffmpeg to compress all the images a lot more into an efficient HEVC video stream:

# let's say you're inside a folder with images named "image_000001.png"

ffmpeg -f image2 -framerate 30 -i image_%06d.png -vcodec hevc_ videotoolbox -tag:v hvc1 -q:v 40 image_stream.mp4

You can play with the quality value -q:v to get better quality or better compression. Larger numbers mean better quality but more file size.

DmacMcgreg commented 1 month ago

Exactly, theres a few OpenSource ones floating around on the internet these days.

Also that could be a great idea, I'll send it to the maintainers.