Skip to content

publish_plugins

ExtractEditorialPckgConversionModel

Bases: BaseSettingsModel

Set output definition if resource files should be converted.

Source code in server/settings/publish_plugins.py
49
50
51
52
53
54
55
56
class ExtractEditorialPckgConversionModel(BaseSettingsModel):
    """Set output definition if resource files should be converted."""
    conversion_enabled: bool = SettingsField(True,
                                             title="Conversion enabled")
    output: ExtractEditorialPckgOutputDefModel = SettingsField(
        default_factory=ExtractEditorialPckgOutputDefModel,
        title="Output Definitions",
    )

ValidateFrameRangeModel

Bases: ValidatePluginModel

Allows to publish multiple video files in one go.
Name of matching asset is parsed from file names ('asset.mov', 'asset_v001.mov', 'my_asset_to_publish.mov')

Source code in server/settings/publish_plugins.py
14
15
16
17
class ValidateFrameRangeModel(ValidatePluginModel):
    """Allows to publish multiple video files in one go. <br />Name of matching
     asset is parsed from file names ('asset.mov', 'asset_v001.mov',
     'my_asset_to_publish.mov')"""