• JackGreenEarth@lemm.ee
        link
        fedilink
        English
        arrow-up
        12
        arrow-down
        5
        ·
        29 days ago

        Can you search the screenshots with OCR though? That’s Recall’s main selling point

        • Aux@lemmy.world
          link
          fedilink
          arrow-up
          58
          ·
          29 days ago

          You can start by running sudo apt install tesseract-ocr and then reading its docs.

          • MacN'Cheezus@lemmy.today
            link
            fedilink
            English
            arrow-up
            4
            ·
            edit-2
            27 days ago

            It appears to be as simple as tesseract <infile> <outfile>. Possibly could even pipe (or tee) the screenshot straight into that and save both an image and a text file in a single command line.

            So something like this should do the trick:

            gnome-screenshot -f - | tee /Microsoft/yourPrivacy/$(date +%s).png | tesseract - /Microsoft/yourPrivacy/$(date +%s).txt
            

            Skip the database, just use grep to search that directory if you need to find anything. Voilà, homemade Recall.

    • macniel@feddit.de
      link
      fedilink
      arrow-up
      25
      ·
      edit-2
      29 days ago

      its a cronjob that runs each minute (*/1) in any hour, any day, any month, on any weekday, gnome-screenshot obviously takes a screenshot and outputs it to the given file path and filename, where the filename is written as the current date as string and .png as format