Rework of MPV Commander into a new project

This commit is contained in:
2025-09-28 10:34:16 -04:00
commit f5e52da613
5 changed files with 356 additions and 0 deletions

77
config.json Normal file
View File

@@ -0,0 +1,77 @@
{
"instance_name": "Test",
"db_name": "videocommander.db",
"video_tool": "ffplay",
"buttons": [
{
"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"
],
"default": false
},
{
"name": "Gimme The Yeet Boys",
"video_url": "videos/yeet.mp4",
"video_tool_arguments": [
"-fs",
"-loop",
"0"
],
"default": false
},
{
"name": "Hey Bender",
"video_url": "videos/bender.mp4",
"video_tool_arguments": [
"-fs",
"-loop",
"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
}
]
}