TourBox Presets Translator
github.com/Tensionix/tourbox-presets-translator ↗Der größte Nachteil des Geräts: Man kann es nicht schnell nach eigenen Wünschen einrichten — entweder man klickt sich durch das Herstellerprogramm oder man nimmt fremde Presets. Dieses Paket und ein beliebiges LLM lösen das Problem; nötig ist nur Vorstellungskraft: Beschreiben Sie, was welcher Regler tun soll, und Sie erhalten eine fertige Datei zum Import. Möglich ist das, weil dem Projekt eine vollständige Beschreibung des Formats beiliegt: Container, Steuertabelle, Kodierung der Aktionen, alle 47 Slots, jeder Eintrag als bestätigt oder abgeleitet markiert. Prüfen lässt sich das ohne Vertrauensvorschuss: Die erzeugte Datei liest sich Byte für Byte zurück, und ein erfundener Name führt zu einem Fehler statt zu einer stillen Ersetzung.
2 Downloads über GitHubAudion TourBox Presets Translator
Presets for the TourBox controller — as text, not as clicks in the vendor application.
Why It Exists
Configuring the controller for your work means assigning fifty-odd actions to buttons, wheels, and their combinations. In the vendor application that is done with a mouse, one action at a time, and the result can neither be reviewed as a whole, nor sent to a colleague as text, nor put under version control.
Here a preset is described in words, and the program builds a working file from that description.
What Else Is Inside
A complete description of the preset file format — with evidence for every point. Not "this field probably means such-and-such", but a format taken apart by example: what changes in the file when you change a particular setting in the vendor application.
Next
- User Guide — how to describe presets.
Das Programm ist portabel: der entpackte Ordner ist das installierte Programm. In die Registry wird nichts geschrieben; zum Entfernen den Ordner löschen.
$name = "Audion_TourBox_Presets_Translator_v1.0.1_Full.zip"
Invoke-WebRequest "https://audion.dev/get/tourbox-presets-translator/1.0.1/Audion_TourBox_Presets_Translator_v1.0.1_Full.zip" -OutFile $name
Invoke-WebRequest "https://audion.dev/get/tourbox-presets-translator/1.0.1/Audion_TourBox_Presets_Translator_v1.0.1_Full.zip.sha256" -OutFile "$name.sha256"
$want = (Get-Content "$name.sha256").Split(" ")[0]
$have = (Get-FileHash $name -Algorithm SHA256).Hash.ToLower()
if ($want -ne $have) { throw "Prüfsumme stimmt nicht: der Download ist beschädigt" }
Expand-Archive $name -DestinationPath ".\tourbox-presets-translator"