Changes between Initial Version and Version 1 of ScreenshotRecorder


Ignore:
Timestamp:
09/17/08 15:38:06 (16 years ago)
Author:
schwarz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ScreenshotRecorder

    v1 v1  
     1= Screenshot Recorder = 
     2 
     3The screenshot recorder is included in the UOH but '''disabled per default'''. 
     4 
     5If 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 
     7For 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 
     9To '''activate''' the screenshot recorder you have to set a non-zero screenshot_interval in the UOH property file: 
     10 
     11== Property file == 
     12 
     13The !ScreenshotRecorder expects to find a property file at this location: 
     14{{{ 
     15    etc/userobservationhub.properties    (relative to the UserObservationHub project folder) 
     16}}} 
     17If this file does not yet exist, please create one, e.g. via Create new -> Textfile. 
     18 
     19Add or edit the following line there (do not delete other lines): 
     20{{{ 
     21screenshot_interval=1000 
     22}}} 
     23 
     24This value specifies the number of '''milliseconds''' the screenshot recorder waits before taking and checking a new screenshot. 
     25As Java's screenshot and image routines are not very efficient, you may have to set a higher value here. 
     26 
     27To '''disable''' the screenshot recorder again, just edit the property file, edit the line to 
     28{{{ 
     29screenshot_interval=-1 
     30}}} 
     31and kill and restart the UOH.