publish_plugins
CollectUSDLayerContributionsProfileModel
Bases: BaseSettingsModel
Profiles to define instance attribute defaults for USD contribution.
Source code in server/settings/publish_plugins.py
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 167 168 169 170 171 172 173 174 175 176 177 | |
ExtractBurninDef
Bases: BaseSettingsModel
Source code in server/settings/publish_plugins.py
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 | |
validate_name(value)
Ensure name does not contain weird characters
Source code in server/settings/publish_plugins.py
1022 1023 1024 1025 | |
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
763 764 765 766 767 768 769 770 771 772 | |
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
655 656 657 658 659 660 661 662 | |
ExtractReviewOutputDefModel
Bases: BaseSettingsModel
Source code in server/settings/publish_plugins.py
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 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 | |
validate_name(value)
Ensure name does not contain weird characters
Source code in server/settings/publish_plugins.py
936 937 938 939 | |
ExtractThumbnailFromSourceModel
Bases: BaseSettingsModel
Thumbnail extraction from source files using ffmpeg and oiiotool.
Source code in server/settings/publish_plugins.py
528 529 530 531 532 533 534 535 536 537 | |
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
1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 | |
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
1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 | |
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
341 342 343 344 345 346 347 348 349 350 | |
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
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | |