From 9bc9d525d400671ee7abbf93a492ddc7a7a179dc Mon Sep 17 00:00:00 2001 From: apetrynet Date: Sun, 4 Dec 2022 13:31:34 +0100 Subject: [PATCH] autogenerated docs for CMX3600 removed Signed-off-by: apetrynet --- docs/tutorials/otio-plugins.md | 50 ---------------------------------- 1 file changed, 50 deletions(-) diff --git a/docs/tutorials/otio-plugins.md b/docs/tutorials/otio-plugins.md index 924de10d8..66b232734 100644 --- a/docs/tutorials/otio-plugins.md +++ b/docs/tutorials/otio-plugins.md @@ -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 ```