publish_plugins
CollectUSDLayerContributionsProfileModel
Bases: BaseSettingsModel
Profiles to define instance attribute defaults for USD contribution.
Source code in server/settings/publish_plugins.py
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | |
ExtractBurninDef
Bases: BaseSettingsModel
Source code in server/settings/publish_plugins.py
981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 | |
validate_name(value)
Ensure name does not contain weird characters
Source code in server/settings/publish_plugins.py
996 997 998 999 | |
ExtractOIIOPostProcessModel
Bases: BaseSettingsModel
Process representation images with oiiotool on publish.
This could be used to convert images to different formats, convert to scanline images or flatten deep images.
Source code in server/settings/publish_plugins.py
737 738 739 740 741 742 743 744 745 746 | |
ExtractOIIOTranscodeModel
Bases: BaseSettingsModel
Color conversion transcoding using OIIO for images mostly aimed at transcoding for reviewables (it'll process and output only RGBA channels).
Source code in server/settings/publish_plugins.py
629 630 631 632 633 634 635 636 | |
ExtractReviewOutputDefModel
Bases: BaseSettingsModel
Source code in server/settings/publish_plugins.py
827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 | |
validate_name(value)
Ensure name does not contain weird characters
Source code in server/settings/publish_plugins.py
910 911 912 913 | |
ExtractThumbnailFromSourceModel
Bases: BaseSettingsModel
Thumbnail extraction from source files using ffmpeg and oiiotool.
Source code in server/settings/publish_plugins.py
509 510 511 512 513 514 515 516 517 518 | |
IntegrateProductGroupModel
Bases: BaseSettingsModel
Group published products by filtering logic.
Set all published instances as a part of specific group named according to 'Template'.
Implemented all variants of placeholders '{task}', '{product[type]}', '{host}', '{product[name]}', '{renderlayer}'.
Source code in server/settings/publish_plugins.py
1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 | |
PreIntegrateThumbnailsModel
Bases: BaseSettingsModel
Explicitly set if Thumbnail representation should be integrated.
If no matching profile set, existing state from Host implementation is kept.
Source code in server/settings/publish_plugins.py
1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 | |
ValidateIntentModel
Bases: BaseSettingsModel
Validate if Publishing intent was selected.
It is possible to disable validation for specific publishing context with profiles.
Source code in server/settings/publish_plugins.py
324 325 326 327 328 329 330 331 332 333 | |
ensure_unique_resolution_option(objects, field_name=None)
Ensure a list of objects have unique option attributes.
This function checks if the list of objects has unique 'width', 'height' and 'pixel_aspect' properties.
Source code in server/settings/publish_plugins.py
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | |