mirror of
https://github.com/iluvcapra/pycmx.git
synced 2025-12-31 08:50:54 +00:00
documentation
This commit is contained in:
@@ -162,7 +162,12 @@ class Edit:
|
|||||||
@property
|
@property
|
||||||
def asc_sop(self) -> Optional[AscSopComponents[float]]:
|
def asc_sop(self) -> Optional[AscSopComponents[float]]:
|
||||||
"""
|
"""
|
||||||
Get ASC CDL Slope-Offset-Power transfer function for clip, if present
|
Get ASC CDL Slope-Offset-Power transfer function for the edit,
|
||||||
|
if present. The ASC SOP is a transfer function of the form:
|
||||||
|
|
||||||
|
$ y = (ax + b)^p $
|
||||||
|
|
||||||
|
for each color component the source.
|
||||||
"""
|
"""
|
||||||
if self._asc_sop_statement is None:
|
if self._asc_sop_statement is None:
|
||||||
return None
|
return None
|
||||||
@@ -180,9 +185,11 @@ class Edit:
|
|||||||
return self._asc_sat_statement.value
|
return self._asc_sat_statement.value
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def frmc(self) -> Optional[FramecountTriple]:
|
def framecounts(self) -> Optional[FramecountTriple]:
|
||||||
"""
|
"""
|
||||||
Get FRMC data
|
Get frame count offset data, if it exists. If an FRMC statement exists
|
||||||
|
in the EDL for the event it will give an integer frame count for the
|
||||||
|
edit's source in and out times.
|
||||||
"""
|
"""
|
||||||
if not self._frmc_statement:
|
if not self._frmc_statement:
|
||||||
return None
|
return None
|
||||||
|
|||||||
Reference in New Issue
Block a user