-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.json
60 lines (60 loc) · 1.56 KB
/
metadata.json
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "Scenes-with-text Detection",
"description": "Detects scenes with text, like slates, chyrons and credits.",
"app_version": "v2.1",
"mmif_version": "1.0.0",
"app_license": "Apache 2.0",
"identifier": "http://apps.clams.ai/swt-detection/v2.1",
"url": "https://github.com/clamsproject/app-swt-detection",
"input": [
{
"@type": "http://mmif.clams.ai/vocabulary/VideoDocument/v1",
"required": true
}
],
"output": [
{
"@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v1",
"properties": {
"timeUnit": "milliseconds"
}
}
],
"parameters": [
{
"name": "sampleRate",
"description": "Milliseconds between sampled frames",
"type": "integer",
"default": 1000,
"multivalued": false
},
{
"name": "minFrameScore",
"description": "Minimum score for a still frame to be included in a TimeFrame",
"type": "number",
"default": 0.01,
"multivalued": false
},
{
"name": "minTimeframeScore",
"description": "Minimum score for a TimeFrame",
"type": "number",
"default": 0.25,
"multivalued": false
},
{
"name": "minFrameCount",
"description": "Minimum number of sampled frames required for a TimeFrame",
"type": "integer",
"default": 2,
"multivalued": false
},
{
"name": "pretty",
"description": "The JSON body of the HTTP response will be re-formatted with 2-space indentation",
"type": "boolean",
"default": 0,
"multivalued": false
}
]
}