mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Use GIF files for effects (#477)
* Add new Effects * add schema file for gif based effects * add background color to snake effect * add background color to snake effect * Update schema file for snake effect * Add function getImage * add function getImage * optimize lights.gif * Add format to GIF schema
This commit is contained in:
committed by
brindosch
parent
838008568a
commit
9cc6c75633
31
effects/schema/gif.schema.json
Normal file
31
effects/schema/gif.schema.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"type":"object",
|
||||
"script" : "gif.py",
|
||||
"title":"edt_eff_gif_header",
|
||||
"required":true,
|
||||
"properties":{
|
||||
"image": {
|
||||
"type": "string",
|
||||
"title":"edt_eff_image",
|
||||
"format" : "file",
|
||||
"default": "",
|
||||
"propertyOrder" : 1
|
||||
},
|
||||
"fps": {
|
||||
"type": "integer",
|
||||
"title":"edt_eff_fps",
|
||||
"default": 25,
|
||||
"minimum" : 1,
|
||||
"maximum" : 100,
|
||||
"step" : 1,
|
||||
"propertyOrder" : 2
|
||||
},
|
||||
"reverse": {
|
||||
"type": "boolean",
|
||||
"title":"edt_eff_reversedirection",
|
||||
"default": false,
|
||||
"propertyOrder" : 3
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
Reference in New Issue
Block a user