-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput_time_intervals.py
More file actions
29 lines (26 loc) · 2.2 KB
/
output_time_intervals.py
File metadata and controls
29 lines (26 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
__author__ = 'Hao'
# Output time intervals
OUTPUT_TIME_INTERVALS_1ST = [
{"file-name": "sample-data-1st-02m53s", "start": 173, "stop": 174.3},
{"file-name": "sample-data-1st-04m26s", "start": 266, "stop": 268.3},
{"file-name": "sample-data-1st-07m04s", "start": 424.2, "stop": 427.2},
{"file-name": "sample-data-1st-12m21s", "start": 741.4, "stop": 742},
{"file-name": "sample-data-1st-12m44s", "start": 763.9, "stop": 766},
{"file-name": "sample-data-1st-15m28s", "start": 927.9, "stop": 929.5},
{"file-name": "sample-data-1st-20m40s", "start": 1240, "stop": 1244},
{"file-name": "sample-data-1st-21m11s", "start": 1271.9, "stop": 1274.3},
{"file-name": "sample-data-1st-22m07s", "start": 1327.2, "stop": 1329.5},
{"file-name": "sample-data-1st-23m04s", "start": 1383.9, "stop": 1389.8}
]
OUTPUT_TIME_INTERVALS_2ND = [
{"file-name": "sample-data-2nd-00m52s", "start": 52, "stop": 55.8, "note": "A, offside position, no ball touch, no consequence"},
{"file-name": "sample-data-2nd-10m30s", "start": 629.8, "stop": 631.8, "note": "B, maybe not offside position, maybe ball touch, no consequence"},
{"file-name": "sample-data-2nd-10m45s", "start": 645.2, "stop": 646.4, "note": "A, offside position, ball touch, no consequence"},
{"file-name": "sample-data-2nd-12m16s", "start": 735.5, "stop": 738.5, "note": "B, maybe offside position, header, shot on goal"},
{"file-name": "sample-data-2nd-17m38s", "start": 1058.7, "stop": 1061, "note": "A, maybe in offside position, ball touch, shot on goal"},
{"file-name": "sample-data-2nd-20m25s", "start": 1224.8, "stop": 1228.7, "note": "B, maybe not in offside position, ball touch, no consequence"},
{"file-name": "sample-data-2nd-21m43s", "start": 1303.5, "stop": 1307, "note": "B, maybe offside position, shot on goal"},
{"file-name": "sample-data-2nd-24m46s", "start": 1486, "stop": 1491.5, "note": "B, offside position, ball touch, no consequence"},
{"file-name": "sample-data-2nd-28m11s", "start": 1691, "stop": 1693.6, "note": "A, maybe offside position, ball touch, no consequence"},
{"file-name": "sample-data-2nd-28m24s", "start": 1704, "stop": 1709.5, "note": "A, maybe not offside position, ball touch, goal"}
]