File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,20 @@ It is strongly recommended that everyone use the OpenTimelineIO library to read
11
11
OpenTimelineIO files should have a ` .otio ` path extension. Please do not use ` .json ` to name OTIO files.
12
12
13
13
## Contents
14
- OpenTimelineIO files are serialized as JSON (http://www.json.org )
14
+ OpenTimelineIO files are serialized as JSON (http://www.json.org ).
15
+
16
+ ### Number Types
17
+
18
+ Supported numeric types:
19
+
20
+ - integers: ` int64_t ` (signed 64 bit integer)
21
+ - floating point numbers: ` double ` (IEEE754 64 bit signed floating point number)
22
+
23
+ In addition to the basic JSON spec, OTIO allows the following values for doubles:
24
+
25
+ - ` NaN ` (not a number)
26
+ - ` Inf ` , ` Infinity ` (positive infinity)
27
+ - `-Inf, -Infinity (negative infinity)
15
28
16
29
## Structure
17
30
An OTIO file is a tree structure of nested OTIO objects. Each OTIO object is stored as a JSON dictionary with member fields,
You can’t perform that action at this time.
0 commit comments