Nearly done rework of the whole application to add groups

This commit is contained in:
2026-07-11 22:06:18 -04:00
parent 8db9f3bd9f
commit d8a071a965
6 changed files with 251 additions and 136 deletions

View File

@@ -4,28 +4,95 @@
"display_config": ":1",
"disabled_name": "Disable Video",
"video_tool": "ffplay",
"buttons": [
"data": [
{
"name": "Goofy",
"video_url": "videos/goofy.mp4",
"video_tool_arguments": [
"-fs",
"-loop",
"0"
],
"default": true
},
{
"name": "Neutron Stars",
"video_url": "videos/neutronstars.mp4",
"video_tool_arguments": [
"-fs",
"-loop",
"0"
],
"type": "Button",
"name": "Disable Video",
"video_url": "",
"video_tool_arguments": [],
"default": false
},
{
"type": "Group",
"name": "Animals",
"data": [
{
"type": "Group",
"name": "Dogs",
"data": [
{
"type": "Button",
"name": "Goofy",
"video_url": "videos/goofy.mp4",
"video_tool_arguments": [
"-fs",
"-loop",
"0"
],
"default": true
},
{
"type": "Button",
"name": "Dog of Wisdom",
"video_url": "videos/dog.mp4",
"video_tool_arguments": [
"-fs",
"-loop",
"0"
],
"default": false
}
]
},
{
"type": "Group",
"name": "Cats",
"data": [
{
"type": "Button",
"name": "Nyan Cat",
"video_url": "videos/nyan.mp4",
"video_tool_arguments": [
"-fs",
"-loop",
"0"
],
"default": false
},
{
"type": "Button",
"name":"Smooth Jazz Nyan Cat",
"video_url": "videos/smoothjazznyan.mp4",
"video_tool_arguments": [
"-fs",
"-loop",
"0"
],
"default": false
}
]
}
]
},
{
"type": "Group",
"name": "Space",
"data": [
{
"type": "Button",
"name": "Neutron Stars",
"video_url": "videos/neutronstars.mp4",
"video_tool_arguments": [
"-fs",
"-loop",
"0"
],
"default": false
}
]
},
{
"type": "Button",
"name": "Gimme The Yeet Boys",
"video_url": "videos/yeet.mp4",
"video_tool_arguments": [
@@ -36,6 +103,7 @@
"default": false
},
{
"type": "Button",
"name": "Hey Bender",
"video_url": "videos/bender.mp4",
"video_tool_arguments": [
@@ -44,36 +112,6 @@
"0"
],
"default": false
},
{
"name": "Dog of Wisdom",
"video_url": "videos/dog.mp4",
"video_tool_arguments": [
"-fs",
"-loop",
"0"
],
"default": false
},
{
"name": "Nyan Cat",
"video_url": "videos/nyan.mp4",
"video_tool_arguments": [
"-fs",
"-loop",
"0"
],
"default": false
},
{
"name": "Smooth Jazz Nyan Cat",
"video_url": "videos/smoothjazznyan.mp4",
"video_tool_arguments": [
"-fs",
"-loop",
"0"
],
"default": false
}
]
}
}