| | 1 | = Screenshot Recorder = |
| | 2 | |
| | 3 | The screenshot recorder is included in the UOH but '''disabled per default'''. |
| | 4 | |
| | 5 | If activated, the recorder continuously observed the user's screen. If the currently taken screenshot differs from the previously taken one, the screenshot is stored (in your home directory in the folder {{{.UserObservationHub/screenshots}}}). Additionally, a smaller thumbnail of this screenshot is stored at {{{.UserObservationHub/screenshots/thumbnails}}}). |
| | 6 | |
| | 7 | For both images the format PNG is used, which leads to image sizes of about 139 kB for the screenshots and about 13 kB for the thumbnails. |
| | 8 | |
| | 9 | To '''activate''' the screenshot recorder you have to set a non-zero screenshot_interval in the UOH property file: |
| | 10 | |
| | 11 | == Property file == |
| | 12 | |
| | 13 | The !ScreenshotRecorder expects to find a property file at this location: |
| | 14 | {{{ |
| | 15 | etc/userobservationhub.properties (relative to the UserObservationHub project folder) |
| | 16 | }}} |
| | 17 | If this file does not yet exist, please create one, e.g. via Create new -> Textfile. |
| | 18 | |
| | 19 | Add or edit the following line there (do not delete other lines): |
| | 20 | {{{ |
| | 21 | screenshot_interval=1000 |
| | 22 | }}} |
| | 23 | |
| | 24 | This value specifies the number of '''milliseconds''' the screenshot recorder waits before taking and checking a new screenshot. |
| | 25 | As Java's screenshot and image routines are not very efficient, you may have to set a higher value here. |
| | 26 | |
| | 27 | To '''disable''' the screenshot recorder again, just edit the property file, edit the line to |
| | 28 | {{{ |
| | 29 | screenshot_interval=-1 |
| | 30 | }}} |
| | 31 | and kill and restart the UOH. |