mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
DJV open action extensions as set (#5005)
* Allow to open with djv by extension instead of representation name * Turn extensions into `set` like on base loader class --------- Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com>
This commit is contained in:
parent
72fee37af6
commit
bad6aa2d96
1 changed files with 2 additions and 2 deletions
|
|
@ -20,12 +20,12 @@ class OpenInDJV(load.LoaderPlugin):
|
|||
djv_list = existing_djv_path()
|
||||
families = ["*"] if djv_list else []
|
||||
representations = ["*"]
|
||||
extensions = [
|
||||
extensions = {
|
||||
"cin", "dpx", "avi", "dv", "gif", "flv", "mkv", "mov", "mpg", "mpeg",
|
||||
"mp4", "m4v", "mxf", "iff", "z", "ifl", "jpeg", "jpg", "jfif", "lut",
|
||||
"1dl", "exr", "pic", "png", "ppm", "pnm", "pgm", "pbm", "rla", "rpf",
|
||||
"sgi", "rgba", "rgb", "bw", "tga", "tiff", "tif", "img", "h264",
|
||||
]
|
||||
}
|
||||
|
||||
label = "Open in DJV"
|
||||
order = -10
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue