yuka-friends / Windrecorder

Windrecorder is a memory search app by records everything on your screen in small size, to let you rewind what you have seen, query through OCR text or image description, and get activity statistics.
GNU General Public License v2.0
2.7k stars 110 forks source link

I still have a lot of lockscreen footage in my memory #179

Closed enzon19 closed 3 weeks ago

Antonoko commented 3 weeks ago

Thanks for the feedback! We have tried to fix the problem, feel free to update the app and try again.

Here is how to manually check whether the lock screen detection works:

  1. Create a new test.py file with the following content in the root directory of windrecorder
    
    import time
    from windrecorder import utils

while(True): if utils.is_screen_locked(): print("Locked") else: print("Not locked") time.sleep(1)


2. Execute `poetry shell` in the directory, and then execute `python test.py`
3. The script will check whether the screen is locked every second. You can lock the screen and then return to check the detection results during the process