James4Ever0 commited on
Commit
7962cea
1 Parent(s): 891de0d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md CHANGED
@@ -1,3 +1,48 @@
1
  ---
2
  license: wtfpl
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: wtfpl
3
  ---
4
+
5
+ After extracting the RAR file, you will find a bunch of folders named by timestamps, in which you can find these files:
6
+
7
+ ```
8
+ hid_record.jsonl video_record.mp4 video_timestamps.json
9
+ hid_timestamps.json video_record_script.sh
10
+ ```
11
+
12
+ `video_record.mp4` is a video file at 30fps with 1280x768 resolution, in which each frame is a screenshot taken not at the video play speed.
13
+
14
+ In hid_record.jsonl you shall find:
15
+
16
+ ```
17
+ {"HIDEvents": []}
18
+ {"HIDEvents": []}
19
+ {"HIDEvents": []}
20
+ {"HIDEvents": [["key_press", "Key.ctrl"], ["key_press", "Key.shift"], ["key_press", "Key.page_up"], ["key_release", "Key.page_up"], ["key_release", "Key.shift"], ["key_release", "Key.ctrl"]]}
21
+ {"HIDEvents": []}
22
+ {"HIDEvents": []}
23
+ {"HIDEvents": []}
24
+ {"HIDEvents": []}
25
+ {"HIDEvents": [["mouse_move", [782, 682]]]}
26
+ {"HIDEvents": []}
27
+ {"HIDEvents": []}
28
+ {"HIDEvents": [["key_press", "Key.alt"], ["key_press", "'l'"], ["key_release", "'l'"], ["key_release", "Key.alt"]]}
29
+ ```
30
+
31
+ `video_timestamps.json` contains the corresponding UNIX timestamps for every frame recorded:
32
+
33
+ ```
34
+ [
35
+ 1685664003.6361628,
36
+ 1685664003.6745877,
37
+ 1685664003.6882446,
38
+ 1685664003.715868,
39
+ 1685664003.7464304,
40
+ 1685664003.7711987,
41
+ 1685664003.7833188,
42
+ 1685664003.8149195,
43
+ ...
44
+ ]
45
+ ```
46
+
47
+ `hid_timestamps.json` is similar to `video_timestamps.json` and contains every timestamp for every HID action, event, including those empty ones, found in `hid_record.jsonl`.
48
+