Skip to content

Commit

Permalink
autogenerated docs for CMX3600 removed
Browse files Browse the repository at this point in the history
Signed-off-by: apetrynet <[email protected]>
  • Loading branch information
apetrynet committed Dec 4, 2022
1 parent aba8207 commit 9bc9d52
Showing 1 changed file with 0 additions and 50 deletions.
50 changes: 0 additions & 50 deletions docs/tutorials/otio-plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,56 +33,6 @@ Adapter plugins convert to and from OpenTimelineIO.
[Tutorial on how to write an adapter](write-an-adapter).


### cmx_3600

```
OpenTimelineIO CMX 3600 EDL Adapter
```

*source*: `opentimelineio/adapters/cmx_3600.py`


*Supported Features (with arguments)*:

- read_from_string:
```
Reads a CMX Edit Decision List (EDL) from a string.
Since EDLs don't contain metadata specifying the rate they are meant
for, you may need to specify the rate parameter (default is 24).
By default, read_from_string will throw an exception if it discovers
invalid timecode in the EDL. For example, if a clip's record timecode
overlaps with the previous cut. Since this is a common mistake in
many EDLs, you can specify ignore_timecode_mismatch=True, which will
supress these errors and attempt to guess at the correct record
timecode based on the source timecode and adjacent cuts.
For best results, you may wish to do something like this:
Example:
>>> try:
... timeline = otio.adapters.read_from_string("mymovie.edl", rate=30)
... except EDLParseError:
... print('Log a warning here')
... try:
... timeline = otio.adapters.read_from_string(
... "mymovie.edl",
... rate=30,
... ignore_timecode_mismatch=True)
... except EDLParseError:
... print('Log an error here')
```
- input_str
- rate
- ignore_timecode_mismatch
- write_to_string:
- input_otio
- rate
- style
- reelname_len





### fcp_xml

```
Expand Down

0 comments on commit 9bc9d52

Please sign in to comment.