Live data from Hacker News

Show HN: Open Rewind – POC for audio and screen and video streaming to S3

github.com

11–20 of 36 posts

Re: Show HN: Open Rewind – POC for audio and screen and video streaming to S3

#11
post #10

Based on the repository description: > Attempt to create an Open Source Privacy Focused Rewind.ai Alternative for data capture I'd assume this was something local or at least for your local network. But this exclusively sends the data over to S3. And based on the lack of encryption keys or even passwords, I'm assuming this is even unecrypted?

It is indeed, but we can use our privately hosted S3 compatible server: https://github.com/minio/minio

I'm happy to think about e2e encryption.

Re: Show HN: Open Rewind – POC for audio and screen and video streaming to S3

#12
capturing and uploading a whole new PNG for each screencap is not what I would call 'efficient', and to meet the use case of Rewind.ai in the first place it should have some OCR mechanism to pull up the relevant screencaps.

The thing that enabled rewind.ai and MS Recall is storing the series of screenshots more like a HEIF, allowing for massive compression ratio and on-device storage + OCR provided by the OS (Live Text since Monterey 2021 [0], Microsoft introduced it last year for Snapdragon based AI-PCs [1])

I guess this is a good starting point if the goal is to fill S3 buckets with screencaps of multiple users, but then we're just back to corporate spyware, not tools for helping individuals use their machine more effectively.

That said, if I was using my own minio backend, it would be neat to archive my screen captures but I would change it so it captures after, say, every keystroke, and every time my mouse stops moving, and after every click. That way I have high density capture of taking actions, and low density otherwise. In any case collecting the data is not the issue, making an interface where that data becomes useful to help me remember something is.

[0] https://support.apple.com/guide/preview/interact-with-text-i...

[1] https://learn.microsoft.com/en-us/windows/ai/apis/text-recog...

Re: Show HN: Open Rewind – POC for audio and screen and video streaming to S3

#13
post #3

A FOSS alternative to Rewind that works on both MacOS and Linux would be a dream come true tbh. Thanks for working on this, I'll be trying it out sometime next week

I took a crack at this, but had trouble building a community. It's all open source.

Native MacOS in swift (the popular one with OCR / text selection from history), and cross platform (rust) without text selection from history and very much POC.

https://github.com/jasonjmcghee/rem

https://github.com/jasonjmcghee/xrem

Re: Show HN: Open Rewind – POC for audio and screen and video streaming to S3

#14

capturing and uploading a whole new PNG for each screencap is not what I would call 'efficient', and to meet the use case of Rewind.ai in the first place it should have some OCR mechanism to pull up the relevant screencaps. The thing that enabled rewind.ai and MS Recall is storing the series of screenshots more like a HEIF, allowing for massive compression ratio and on-device storage + OCR provided by the OS (Live Te…

> we're just back to corporate spyware

Most feel that Recall is also this.

Re: Show HN: Open Rewind – POC for audio and screen and video streaming to S3

#15

capturing and uploading a whole new PNG for each screencap is not what I would call 'efficient', and to meet the use case of Rewind.ai in the first place it should have some OCR mechanism to pull up the relevant screencaps. The thing that enabled rewind.ai and MS Recall is storing the series of screenshots more like a HEIF, allowing for massive compression ratio and on-device storage + OCR provided by the OS (Live Te…

ffmpeg works well, especially on apple silicon using video toolbox. That's how I approached it.

Also, automatically doesn't cost storage for identical screenshots (no activity) and very cheap for just moving your mouse around or typing a few characters.

Re: Show HN: Open Rewind – POC for audio and screen and video streaming to S3

#16
post #6

I would really like the data to be stored... not in the cloud. Must one set up a S3 compatible stack on a home server somewhere?

I havent tried yet, but I think we can use https://github.com/minio/minio for this.

Minio works pretty solidly as an s3 compatible endpoint. It took me a while of juggling configuration with Docker to get running correctly though

Re: Show HN: Open Rewind – POC for audio and screen and video streaming to S3

#17
Your readme states "MIT License - See LICENSE file for details" but there is no such license file. I've been seeing this a lot lately, did you use an LLM to generate this part of the readme? If so, was MIT a concious choice of yours?

Re: Show HN: Open Rewind – POC for audio and screen and video streaming to S3

#18

capturing and uploading a whole new PNG for each screencap is not what I would call 'efficient', and to meet the use case of Rewind.ai in the first place it should have some OCR mechanism to pull up the relevant screencaps. The thing that enabled rewind.ai and MS Recall is storing the series of screenshots more like a HEIF, allowing for massive compression ratio and on-device storage + OCR provided by the OS (Live Te…

ffmpeg works well, especially on apple silicon using video toolbox. That's how I approached it. Also, automatically doesn't cost storage for identical screenshots (no activity) and very cheap for just moving your mouse around or typing a few characters.

rem looks very intriguing, I'll give it a try, cross platform would be even better ofc. You're doing it without funding?

I wish the LLMs were tuned into the open source landscape more, so when someone has an idea for a POC and asks the bot to write it for them, it would go clippy mode and say "it looks like you're trying to build an open source rewrite of Rewind, would you like to clone the rem repo and contribute to that instead?" lol

Re: Show HN: Open Rewind – POC for audio and screen and video streaming to S3

#19

Your readme states "MIT License - See LICENSE file for details" but there is no such license file. I've been seeing this a lot lately, did you use an LLM to generate this part of the readme? If so, was MIT a concious choice of yours?

Haha, yes, the README was generated and no, it was not a conscious choice. However I'm happy with the result.

Re: Show HN: Open Rewind – POC for audio and screen and video streaming to S3

#20

capturing and uploading a whole new PNG for each screencap is not what I would call 'efficient', and to meet the use case of Rewind.ai in the first place it should have some OCR mechanism to pull up the relevant screencaps. The thing that enabled rewind.ai and MS Recall is storing the series of screenshots more like a HEIF, allowing for massive compression ratio and on-device storage + OCR provided by the OS (Live Te…

Interesting ideas! Seems worth exploring for sure.
Post reply on HN