Initiale Veröffentlichung von Grabber-Config

- Tkinter-GUI zur Konfiguration analoger DirectShow-Video-Grabber
- Unterstützung für PAL/NTSC/SECAM-Umschaltung
- Unterstützung für Composite- und S-Video-Eingänge über IAMCrossbar
- Automatische Speicherung und Anwendung der Konfiguration
- Headless-Startmodus mit automatischer Konfigurationsanwendung
- Speicherung der Konfiguration unter ProgramData
- Nuitka-kompatible Projektstruktur
- Inno-Setup-Installer mit optionalem Autostart
- README, MIT-Lizenz und requirements.txt hinzugefügt
- Projekt-Icon erstellt
This commit is contained in:
2026-05-18 15:54:43 +02:00
parent 6927b5c457
commit 5bf1fafddf
6 changed files with 314 additions and 0 deletions

17
.vscode/tasks.json vendored
View File

@@ -11,6 +11,7 @@
"--enable-plugin=multiprocessing",
"--enable-plugin=anti-bloat",
"--enable-plugin=tk-inter",
"--windows-console-mode=disable",
"--lto=no",
"--msvc=latest",
"--output-dir=build",
@@ -25,6 +26,22 @@
],
"group": "build",
"problemMatcher": []
},
{
"label": "Build Grabber Config Setup (Inno Setup)",
"type": "process",
"command": "c:\\Program Files (x86)\\Inno Setup 6\\ISCC.exe",
"args": [
"setup.iss"
],
"presentation": {
"reveal": "always",
"echo": false
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}