Please ensure Javascript is enabled for purposes of website accessibility Jump to content

choepie

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by choepie

  1. Hi @DunedinDragon, Thanks for this, well I am a programming guy... so this works for me... ;-) For the nerds, it is a base64, compressed file. This is what I wrote in Python to read it. Once you get this, I assume you can modify whatever values you want. The setlist.hls is an export of the setlist, it's not the backupfile. import base64 import zlib import json f = open("setlist.hls", "r") helix_json = json.load(f) helix_ascii = helix_json["encoded_data"].encode("ascii") helix_decoded = base64.b64decode(helix_ascii) helix_decompressed = zlib.decompress(helix_decoded) helix_readable = helix_decompressed.decode("ascii)") print(helix_readable)
  2. Hello good people, Does anybody know if it is possible to 'bulk' edit parameters in a setlist ? Use case : I play in a band and have a setlist containing 50 presets, each preset is a song, every part in the song is a snapshot. I prepared this whole setup at home ready to go. My sound is pretty consistent in the setlist : same distortion, same amp+cab, same delay and same reverb. Depending on the song I add effects or bypass others, and of course I play with the parameters. Now our sound man asked me if I could, lower my overall delay a bit... ;-) and hence my question is : can I do this in one go, or should I go in each song/preset and change it there? Kind Regards
×
×
  • Create New...