https://github.com/zkamvar/toscr
Read and manipulate touchOSC layout files
https://github.com/zkamvar/toscr
touchosc
Last synced: about 1 year ago
JSON representation
Read and manipulate touchOSC layout files
- Host: GitHub
- URL: https://github.com/zkamvar/toscr
- Owner: zkamvar
- License: other
- Created: 2020-09-14T01:15:23.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2020-09-14T02:21:22.000Z (almost 6 years ago)
- Last Synced: 2025-04-01T21:06:58.373Z (over 1 year ago)
- Topics: touchosc
- Language: R
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# toscr
[](https://github.com/zkamvar/toscr/actions)
The goal of {toscr} is to read, manipulate, and write `touchosc` files.
## Installation
The development version from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("zkamvar/toscr")
```
## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
library(toscr)
basic <- system.file("extdata", "basic.touchosc", package = "toscr")
x <- tosc_read(basic)
xml2::xml_find_all(x, ".//control")
```