Spaces:
Sleeping
Sleeping
Commit
·
2d3ddad
1
Parent(s):
b313b13
fix broken markdown
Browse files
src/clap/clap-specification-draft.md
CHANGED
@@ -34,13 +34,13 @@ There can be 5 different types of objects:
|
|
34 |
This can be represented in javascript like this:
|
35 |
|
36 |
```javascript
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
```
|
45 |
|
46 |
## Header
|
@@ -100,6 +100,7 @@ Either by recognizing the shape of each object (fields), or by using a specific
|
|
100 |
// the screenplay (script) of the video
|
101 |
screenplay: string
|
102 |
}
|
|
|
103 |
|
104 |
## Models
|
105 |
|
|
|
34 |
This can be represented in javascript like this:
|
35 |
|
36 |
```javascript
|
37 |
+
[
|
38 |
+
clapHeader, // one metadata object
|
39 |
+
clapMeta, // one metadata object
|
40 |
+
...clapModels, // optional array of models
|
41 |
+
...clapScenes, // optional array of scenes
|
42 |
+
...clapSegments // optional array of segments
|
43 |
+
]
|
44 |
```
|
45 |
|
46 |
## Header
|
|
|
100 |
// the screenplay (script) of the video
|
101 |
screenplay: string
|
102 |
}
|
103 |
+
```
|
104 |
|
105 |
## Models
|
106 |
|