Skip to main content

Generate and edit Touch OSC .tosc files

Reason this release was yanked:

Wrong extra module

Project description

tosclib

Generate and edit Touch OSC templates with XML trees through a few custom classes and functions that help navigate the structure of the .tosc file.

Disclaimer: This project has no relation to Hexler, the developer of TouchOSC. Backup your templates before editing them with third party tools.

Test pypi License Pages

Documentation here!

Requires python >= 3.9

$ pip install tosclib

Contribute:

Feel free to make a fork and contribute to the tosclib or documentation or whatever.

Requirements dev:

tox==3.25.0
numpy==1.22.3
Pillow==9.1.1
pytest==7.1.2
setuptools==61.2.0
pytest-cov==3.0.0

Requirements docs:

sphinx==4.5.0
furo==2022.4.7
sphinx_copybutton==0.5.0

For testing run:

$ tox

Demo Projects:

New location for Demo Projects is here.

custom-property.py

You can insert your own XML elements into Touch OSC files and the Editor will respect them. This means you can access those properties in lua and they will keep their values after you save and exit the Touch OSC editor. For example:

--This is lua code inside the touch osc editor--
function onValueChanged(key, value)
  if key == "touch" and self.values.touch == true then
    print(self.parent.CustomProperty)
    self.parent.CustomProperty = self.parent.children.label2.values.text
  end
end

You can use custom-property.py to insert new properties in your .tosc file and use them as globals or config parameters. Console:

$ python custom-property.py -i "files/test2.tosc" -o "files/customProp.tosc" --Property "CustomProperty" --Value "1612" --Type "s"

copy-scripts.py

Find a source object by name in the top level of the template, copies its script and adds it to all children objects of a target object.

  1. Set up a template where you a source object and a target group in top level.
$ python copy-scripts.py -i "files/test.tosc" -o "files/out.tosc" --Source "source" --Target "target"
  1. Open .tosc file.

image-tosc.py

Convert a .jpg image to .tosc using small boxes as pixels. This will look for a Target group object to place the boxes into.

  1. Set up a template where you have a "canvas" group on top level.
  2. Console:
$ python image-tosc.py -i "files/test.tosc" -o "files/out.tosc" --Image "files/logo.jpg" --Target "canvas"
  1. Use the user interface to find new image and convert.
  2. Open .tosc file.

Change these if you want to change the image size.

converter.image_size = 64
converter.pixel_size = 8

This means the image will be scaled down to 64x64 but the "pixel" boxes in Touch OSC will be of size 8. I don't recommend going above 256x256 for image_size as performance and filesize take a hit. Plus the XML tree is stored in memory, not streamed, so it can cause issues when generating it.

Example output:

deleteme

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tosclib-0.1.7.tar.gz (6.6 kB view hashes)

Uploaded Source

Built Distribution

tosclib-0.1.7-py3-none-any.whl (6.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page