├── manual.pdf ├── device ├── README.md ├── ravetable.amxd ├── ravetable.gendsp ├── ravetable.js ├── device.routing.list.maxpat └── device.routing.maxpat ├── figures └── ravetable_small.png ├── README.md ├── .gitignore └── LICENSE /manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acids-ircam/ravetable/HEAD/manual.pdf -------------------------------------------------------------------------------- /device/README.md: -------------------------------------------------------------------------------- 1 | ## Max4Live device 2 | 3 | Here is the device source code :) 4 | -------------------------------------------------------------------------------- /device/ravetable.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acids-ircam/ravetable/HEAD/device/ravetable.amxd -------------------------------------------------------------------------------- /figures/ravetable_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acids-ircam/ravetable/HEAD/figures/ravetable_small.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ravetable synthesis - Latent signal processing 2 | 3 | This repository introduces "Ravetable synthesis", the first synthesis paradigm based on "Latent Signal Processing" (LSP). This concept has been proposed by Philippe Esling and David Genova and is currently implemented as a Max4Live device. 4 | 5 | The development of a hardware version is currently undergoing at IRCAM through the PhD thesis of David Genova. 6 | 7 | If you are interested in using this concept for a music performance or installation or want to share / discuss / ask things about other research from ACIDS, you can do so in our [discord server](https://discord.gg/r9umPrGEWv) ! 8 | 9 | ## Demo video 10 | 11 | Here is a quick demo video displaying the major functionalities of the ravetable synthesis system 12 | 13 | [![Watch the video]](https://drive.google.com/file/d/1dAj08pqfmBTn3vYwCS1oMKQySMOd6taD/view?usp=sharing) 14 | -------------------------------------------------------------------------------- /device/ravetable.gendsp: -------------------------------------------------------------------------------- 1 | { 2 | "patcher" : { 3 | "fileversion" : 1, 4 | "appversion" : { 5 | "major" : 9, 6 | "minor" : 0, 7 | "revision" : 2, 8 | "architecture" : "x64", 9 | "modernui" : 1 10 | } 11 | , 12 | "classnamespace" : "dsp.gen", 13 | "rect" : [ 663.0, 633.0, 600.0, 450.0 ], 14 | "gridsize" : [ 15.0, 15.0 ], 15 | "boxes" : [ { 16 | "box" : { 17 | "id" : "obj-6", 18 | "maxclass" : "newobj", 19 | "numinlets" : 4, 20 | "numoutlets" : 0, 21 | "patching_rect" : [ 133.0, 186.0, 88.0, 22.0 ], 22 | "text" : "poke recording" 23 | } 24 | 25 | } 26 | , { 27 | "box" : { 28 | "id" : "obj-5", 29 | "maxclass" : "newobj", 30 | "numinlets" : 0, 31 | "numoutlets" : 2, 32 | "outlettype" : [ "", "" ], 33 | "patching_rect" : [ 50.0, 54.0, 181.0, 22.0 ], 34 | "text" : "buffer recording wave_record 16" 35 | } 36 | 37 | } 38 | , { 39 | "box" : { 40 | "id" : "obj-1", 41 | "maxclass" : "newobj", 42 | "numinlets" : 0, 43 | "numoutlets" : 1, 44 | "outlettype" : [ "" ], 45 | "patching_rect" : [ 93.0, 102.0, 28.0, 22.0 ], 46 | "text" : "in 1" 47 | } 48 | 49 | } 50 | , { 51 | "box" : { 52 | "id" : "obj-4", 53 | "maxclass" : "newobj", 54 | "numinlets" : 1, 55 | "numoutlets" : 0, 56 | "patching_rect" : [ 93.0, 238.0, 35.0, 22.0 ], 57 | "text" : "out 1" 58 | } 59 | 60 | } 61 | ], 62 | "lines" : [ { 63 | "patchline" : { 64 | "destination" : [ "obj-4", 0 ], 65 | "order" : 1, 66 | "source" : [ "obj-1", 0 ] 67 | } 68 | 69 | } 70 | , { 71 | "patchline" : { 72 | "destination" : [ "obj-6", 0 ], 73 | "order" : 0, 74 | "source" : [ "obj-1", 0 ] 75 | } 76 | 77 | } 78 | ], 79 | "originid" : "pat-217" 80 | } 81 | 82 | } 83 | -------------------------------------------------------------------------------- /device/ravetable.js: -------------------------------------------------------------------------------- 1 | // inlets & outlets 2 | inlets = 2 3 | outlets = 2 4 | // Global current model 5 | var cur_prior = 0; 6 | var cur_encoder = 0; 7 | var cur_decoder = 0; 8 | var cur_z = 0; 9 | // Object creation variable 10 | var p = this.patcher 11 | 12 | // Create a given model 13 | function create(model_name, prior) 14 | { 15 | if (model_name == "off") 16 | { 17 | _delete_current() 18 | return 19 | } 20 | // Replace current model 21 | if (cur_encoder != 0) 22 | _delete_current() 23 | // Create encoder 24 | var max_encoder = p.newdefault(100, 100, "mcs.nn~", model_name, "encode"); 25 | max_encoder.rect = [100, 100, 400, 25] 26 | // Create decoder 27 | var max_decoder = p.newdefault(100, 350, "mcs.nn~", model_name, "decode"); 28 | max_decoder.rect = [100, 350, 850, 25] 29 | // Number of latents 30 | var n_latents = max_encoder.getboxattr('numoutlets') 31 | // Final models 32 | cur_encoder = max_encoder 33 | cur_decoder = max_decoder 34 | // Make major in / out connections 35 | p.connect(p.getnamed("model_props"), 0, max_encoder, 0) 36 | p.connect(p.getnamed("model_props"), 0, max_decoder, 0) 37 | p.connect(p.getnamed("plug_in"), 0, max_encoder, 0) 38 | p.connect(max_encoder, 0, p.getnamed("gen_interpolate"), 0) 39 | p.connect(p.getnamed("mc_decode"), 0, max_decoder, 0) 40 | p.connect(max_decoder, 0, p.getnamed("rave_out"), 0) 41 | // Create prior 42 | cur_prior = 0 43 | if (prior) 44 | { 45 | var max_prior = p.newdefault(100, 100, "mcs.nn~", model_name, "prior"); 46 | max_prior.rect = [450, 100, 850, 25] 47 | cur_prior = max_prior 48 | p.connect(p.getnamed("temperature"), 0, max_prior, 0) 49 | p.connect(p.getnamed("model_props"), 0, max_prior, 0) 50 | p.connect(max_prior, 0, p.getnamed("gen_interpolate"), 1) 51 | } 52 | // Message success 53 | outlet(1, "create") 54 | } 55 | 56 | // Create a given model 57 | function encoder(model_name, prior) 58 | { 59 | if (cur_decoder == 0) 60 | return 61 | if (cur_prior) 62 | p.remove(cur_prior) 63 | p.remove(cur_encoder) 64 | // Create encoder 65 | var max_encoder = p.newdefault(100, 100, "mcs.nn~", model_name, "encode"); 66 | max_encoder.rect = [100, 100, 400, 25] 67 | // Number of latents 68 | var n_latents = max_encoder.getboxattr('numoutlets') 69 | // Decoder number of latents 70 | var d_latents = cur_decoder.getboxattr('numinlets') 71 | // Gather all 72 | cur_encoder = max_encoder 73 | // Make major in / out connections 74 | p.connect(p.getnamed("model_props"), 0, max_encoder, 0) 75 | p.connect(p.getnamed("plug_in"), 0, max_encoder, 0) 76 | p.connect(max_encoder, 0, p.getnamed("gen_interpolate"), 0) 77 | // Create prior 78 | cur_prior = 0 79 | if (prior) 80 | { 81 | var max_prior = p.newdefault(100, 100, "mcs.nn~", model_name, "prior"); 82 | max_prior.rect = [450, 100, 850, 25] 83 | cur_prior = max_prior 84 | p.connect(p.getnamed("model_props"), 0, max_prior, 0) 85 | p.connect(p.getnamed("temperature"), 0, max_prior, 0) 86 | p.connect(max_prior, 0, p.getnamed("gen_interpolate"), 1) 87 | } 88 | // Message success 89 | outlet(1, "encoder") 90 | } 91 | 92 | 93 | // Create a given model 94 | function decoder(model_name) 95 | { 96 | // Replace current model 97 | if (cur_encoder == 0) 98 | return 99 | p.remove(cur_decoder) 100 | // Create decoder 101 | var max_decoder = p.newdefault(100, 350, "mcs.nn~", model_name, "decode"); 102 | max_decoder.rect = [100, 350, 850, 25] 103 | // Decoder number of latents 104 | var d_latents = max_decoder.getboxattr('numinlets') 105 | // Number of latents 106 | var e_latents = cur_encoder.getboxattr('numoutlets') 107 | // Gather all 108 | cur_decoder = max_decoder 109 | // Make major in / out connections 110 | p.connect(p.getnamed("model_props"), 0, max_decoder, 0) 111 | p.connect(p.getnamed("mc_decode"), 0, max_decoder, 0) 112 | p.connect(max_decoder, 0, p.getnamed("rave_out"), 0) 113 | // Message success 114 | outlet(1, "decoder") 115 | } 116 | 117 | function delete() 118 | { 119 | if (cur_prior != 0) 120 | _delete_current() 121 | } 122 | 123 | // delete current model 124 | function _delete_current() 125 | { 126 | p.remove(cur_prior) 127 | p.remove(cur_encoder) 128 | p.remove(cur_decoder) 129 | cur_prior = 0 130 | cur_encoder = 0 131 | cur_decoder = 0 132 | } 133 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | share/python-wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .nox/ 43 | .coverage 44 | .coverage.* 45 | .cache 46 | nosetests.xml 47 | coverage.xml 48 | *.cover 49 | *.py,cover 50 | .hypothesis/ 51 | .pytest_cache/ 52 | cover/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | .pybuilder/ 76 | target/ 77 | 78 | # Jupyter Notebook 79 | .ipynb_checkpoints 80 | 81 | # IPython 82 | profile_default/ 83 | ipython_config.py 84 | 85 | # pyenv 86 | # For a library or package, you might want to ignore these files since the code is 87 | # intended to run in multiple environments; otherwise, check them in: 88 | # .python-version 89 | 90 | # pipenv 91 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 92 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 93 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 94 | # install all needed dependencies. 95 | #Pipfile.lock 96 | 97 | # UV 98 | # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. 99 | # This is especially recommended for binary packages to ensure reproducibility, and is more 100 | # commonly ignored for libraries. 101 | #uv.lock 102 | 103 | # poetry 104 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 105 | # This is especially recommended for binary packages to ensure reproducibility, and is more 106 | # commonly ignored for libraries. 107 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 108 | #poetry.lock 109 | 110 | # pdm 111 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 112 | #pdm.lock 113 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 114 | # in version control. 115 | # https://pdm.fming.dev/latest/usage/project/#working-with-version-control 116 | .pdm.toml 117 | .pdm-python 118 | .pdm-build/ 119 | 120 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 121 | __pypackages__/ 122 | 123 | # Celery stuff 124 | celerybeat-schedule 125 | celerybeat.pid 126 | 127 | # SageMath parsed files 128 | *.sage.py 129 | 130 | # Environments 131 | .env 132 | .venv 133 | env/ 134 | venv/ 135 | ENV/ 136 | env.bak/ 137 | venv.bak/ 138 | 139 | # Spyder project settings 140 | .spyderproject 141 | .spyproject 142 | 143 | # Rope project settings 144 | .ropeproject 145 | 146 | # mkdocs documentation 147 | /site 148 | 149 | # mypy 150 | .mypy_cache/ 151 | .dmypy.json 152 | dmypy.json 153 | 154 | # Pyre type checker 155 | .pyre/ 156 | 157 | # pytype static type analyzer 158 | .pytype/ 159 | 160 | # Cython debug symbols 161 | cython_debug/ 162 | 163 | # PyCharm 164 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 165 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 166 | # and can be added to the global gitignore or merged into this file. For a more nuclear 167 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 168 | #.idea/ 169 | 170 | # Ruff stuff: 171 | .ruff_cache/ 172 | 173 | # PyPI configuration file 174 | .pypirc 175 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Attribution-NonCommercial 4.0 International 2 | 3 | Creative Commons Corporation ("Creative Commons") is not a law firm and 4 | does not provide legal services or legal advice. Distribution of 5 | Creative Commons public licenses does not create a lawyer-client or 6 | other relationship. Creative Commons makes its licenses and related 7 | information available on an "as-is" basis. Creative Commons gives no 8 | warranties regarding its licenses, any material licensed under their 9 | terms and conditions, or any related information. Creative Commons 10 | disclaims all liability for damages resulting from their use to the 11 | fullest extent possible. 12 | 13 | Using Creative Commons Public Licenses 14 | 15 | Creative Commons public licenses provide a standard set of terms and 16 | conditions that creators and other rights holders may use to share 17 | original works of authorship and other material subject to copyright and 18 | certain other rights specified in the public license below. The 19 | following considerations are for informational purposes only, are not 20 | exhaustive, and do not form part of our licenses. 21 | 22 | - Considerations for licensors: Our public licenses are intended for 23 | use by those authorized to give the public permission to use 24 | material in ways otherwise restricted by copyright and certain other 25 | rights. Our licenses are irrevocable. Licensors should read and 26 | understand the terms and conditions of the license they choose 27 | before applying it. Licensors should also secure all rights 28 | necessary before applying our licenses so that the public can reuse 29 | the material as expected. Licensors should clearly mark any material 30 | not subject to the license. This includes other CC-licensed 31 | material, or material used under an exception or limitation to 32 | copyright. More considerations for licensors : 33 | wiki.creativecommons.org/Considerations_for_licensors 34 | 35 | - Considerations for the public: By using one of our public licenses, 36 | a licensor grants the public permission to use the licensed material 37 | under specified terms and conditions. If the licensor's permission 38 | is not necessary for any reason–for example, because of any 39 | applicable exception or limitation to copyright–then that use is not 40 | regulated by the license. Our licenses grant only permissions under 41 | copyright and certain other rights that a licensor has authority to 42 | grant. Use of the licensed material may still be restricted for 43 | other reasons, including because others have copyright or other 44 | rights in the material. A licensor may make special requests, such 45 | as asking that all changes be marked or described. Although not 46 | required by our licenses, you are encouraged to respect those 47 | requests where reasonable. More considerations for the public : 48 | wiki.creativecommons.org/Considerations_for_licensees 49 | 50 | Creative Commons Attribution-NonCommercial 4.0 International Public 51 | License 52 | 53 | By exercising the Licensed Rights (defined below), You accept and agree 54 | to be bound by the terms and conditions of this Creative Commons 55 | Attribution-NonCommercial 4.0 International Public License ("Public 56 | License"). To the extent this Public License may be interpreted as a 57 | contract, You are granted the Licensed Rights in consideration of Your 58 | acceptance of these terms and conditions, and the Licensor grants You 59 | such rights in consideration of benefits the Licensor receives from 60 | making the Licensed Material available under these terms and conditions. 61 | 62 | - Section 1 – Definitions. 63 | 64 | - a. Adapted Material means material subject to Copyright and 65 | Similar Rights that is derived from or based upon the Licensed 66 | Material and in which the Licensed Material is translated, 67 | altered, arranged, transformed, or otherwise modified in a 68 | manner requiring permission under the Copyright and Similar 69 | Rights held by the Licensor. For purposes of this Public 70 | License, where the Licensed Material is a musical work, 71 | performance, or sound recording, Adapted Material is always 72 | produced where the Licensed Material is synched in timed 73 | relation with a moving image. 74 | - b. Adapter's License means the license You apply to Your 75 | Copyright and Similar Rights in Your contributions to Adapted 76 | Material in accordance with the terms and conditions of this 77 | Public License. 78 | - c. Copyright and Similar Rights means copyright and/or similar 79 | rights closely related to copyright including, without 80 | limitation, performance, broadcast, sound recording, and Sui 81 | Generis Database Rights, without regard to how the rights are 82 | labeled or categorized. For purposes of this Public License, the 83 | rights specified in Section 2(b)(1)-(2) are not Copyright and 84 | Similar Rights. 85 | - d. Effective Technological Measures means those measures that, 86 | in the absence of proper authority, may not be circumvented 87 | under laws fulfilling obligations under Article 11 of the WIPO 88 | Copyright Treaty adopted on December 20, 1996, and/or similar 89 | international agreements. 90 | - e. Exceptions and Limitations means fair use, fair dealing, 91 | and/or any other exception or limitation to Copyright and 92 | Similar Rights that applies to Your use of the Licensed 93 | Material. 94 | - f. Licensed Material means the artistic or literary work, 95 | database, or other material to which the Licensor applied this 96 | Public License. 97 | - g. Licensed Rights means the rights granted to You subject to 98 | the terms and conditions of this Public License, which are 99 | limited to all Copyright and Similar Rights that apply to Your 100 | use of the Licensed Material and that the Licensor has authority 101 | to license. 102 | - h. Licensor means the individual(s) or entity(ies) granting 103 | rights under this Public License. 104 | - i. NonCommercial means not primarily intended for or directed 105 | towards commercial advantage or monetary compensation. For 106 | purposes of this Public License, the exchange of the Licensed 107 | Material for other material subject to Copyright and Similar 108 | Rights by digital file-sharing or similar means is NonCommercial 109 | provided there is no payment of monetary compensation in 110 | connection with the exchange. 111 | - j. Share means to provide material to the public by any means or 112 | process that requires permission under the Licensed Rights, such 113 | as reproduction, public display, public performance, 114 | distribution, dissemination, communication, or importation, and 115 | to make material available to the public including in ways that 116 | members of the public may access the material from a place and 117 | at a time individually chosen by them. 118 | - k. Sui Generis Database Rights means rights other than copyright 119 | resulting from Directive 96/9/EC of the European Parliament and 120 | of the Council of 11 March 1996 on the legal protection of 121 | databases, as amended and/or succeeded, as well as other 122 | essentially equivalent rights anywhere in the world. 123 | - l. You means the individual or entity exercising the Licensed 124 | Rights under this Public License. Your has a corresponding 125 | meaning. 126 | 127 | - Section 2 – Scope. 128 | 129 | - a. License grant. 130 | - 1. Subject to the terms and conditions of this Public 131 | License, the Licensor hereby grants You a worldwide, 132 | royalty-free, non-sublicensable, non-exclusive, irrevocable 133 | license to exercise the Licensed Rights in the Licensed 134 | Material to: 135 | - A. reproduce and Share the Licensed Material, in whole 136 | or in part, for NonCommercial purposes only; and 137 | - B. produce, reproduce, and Share Adapted Material for 138 | NonCommercial purposes only. 139 | - 2. Exceptions and Limitations. For the avoidance of doubt, 140 | where Exceptions and Limitations apply to Your use, this 141 | Public License does not apply, and You do not need to comply 142 | with its terms and conditions. 143 | - 3. Term. The term of this Public License is specified in 144 | Section 6(a). 145 | - 4. Media and formats; technical modifications allowed. The 146 | Licensor authorizes You to exercise the Licensed Rights in 147 | all media and formats whether now known or hereafter 148 | created, and to make technical modifications necessary to do 149 | so. The Licensor waives and/or agrees not to assert any 150 | right or authority to forbid You from making technical 151 | modifications necessary to exercise the Licensed Rights, 152 | including technical modifications necessary to circumvent 153 | Effective Technological Measures. For purposes of this 154 | Public License, simply making modifications authorized by 155 | this Section 2(a)(4) never produces Adapted Material. 156 | - 5. Downstream recipients. 157 | - A. Offer from the Licensor – Licensed Material. Every 158 | recipient of the Licensed Material automatically 159 | receives an offer from the Licensor to exercise the 160 | Licensed Rights under the terms and conditions of this 161 | Public License. 162 | - B. No downstream restrictions. You may not offer or 163 | impose any additional or different terms or conditions 164 | on, or apply any Effective Technological Measures to, 165 | the Licensed Material if doing so restricts exercise of 166 | the Licensed Rights by any recipient of the Licensed 167 | Material. 168 | - 6. No endorsement. Nothing in this Public License 169 | constitutes or may be construed as permission to assert or 170 | imply that You are, or that Your use of the Licensed 171 | Material is, connected with, or sponsored, endorsed, or 172 | granted official status by, the Licensor or others 173 | designated to receive attribution as provided in Section 174 | 3(a)(1)(A)(i). 175 | - b. Other rights. 176 | - 1. Moral rights, such as the right of integrity, are not 177 | licensed under this Public License, nor are publicity, 178 | privacy, and/or other similar personality rights; however, 179 | to the extent possible, the Licensor waives and/or agrees 180 | not to assert any such rights held by the Licensor to the 181 | limited extent necessary to allow You to exercise the 182 | Licensed Rights, but not otherwise. 183 | - 2. Patent and trademark rights are not licensed under this 184 | Public License. 185 | - 3. To the extent possible, the Licensor waives any right to 186 | collect royalties from You for the exercise of the Licensed 187 | Rights, whether directly or through a collecting society 188 | under any voluntary or waivable statutory or compulsory 189 | licensing scheme. In all other cases the Licensor expressly 190 | reserves any right to collect such royalties, including when 191 | the Licensed Material is used other than for NonCommercial 192 | purposes. 193 | 194 | - Section 3 – License Conditions. 195 | 196 | Your exercise of the Licensed Rights is expressly made subject to 197 | the following conditions. 198 | 199 | - a. Attribution. 200 | - 1. If You Share the Licensed Material (including in modified 201 | form), You must: 202 | - A. retain the following if it is supplied by the 203 | Licensor with the Licensed Material: 204 | - i. identification of the creator(s) of the Licensed 205 | Material and any others designated to receive 206 | attribution, in any reasonable manner requested by 207 | the Licensor (including by pseudonym if designated); 208 | - ii. a copyright notice; 209 | - iii. a notice that refers to this Public License; 210 | - iv. a notice that refers to the disclaimer of 211 | warranties; 212 | - v. a URI or hyperlink to the Licensed Material to 213 | the extent reasonably practicable; 214 | - B. indicate if You modified the Licensed Material and 215 | retain an indication of any previous modifications; and 216 | - C. indicate the Licensed Material is licensed under this 217 | Public License, and include the text of, or the URI or 218 | hyperlink to, this Public License. 219 | - 2. You may satisfy the conditions in Section 3(a)(1) in any 220 | reasonable manner based on the medium, means, and context in 221 | which You Share the Licensed Material. For example, it may 222 | be reasonable to satisfy the conditions by providing a URI 223 | or hyperlink to a resource that includes the required 224 | information. 225 | - 3. If requested by the Licensor, You must remove any of the 226 | information required by Section 3(a)(1)(A) to the extent 227 | reasonably practicable. 228 | - 4. If You Share Adapted Material You produce, the Adapter's 229 | License You apply must not prevent recipients of the Adapted 230 | Material from complying with this Public License. 231 | 232 | - Section 4 – Sui Generis Database Rights. 233 | 234 | Where the Licensed Rights include Sui Generis Database Rights that 235 | apply to Your use of the Licensed Material: 236 | 237 | - a. for the avoidance of doubt, Section 2(a)(1) grants You the 238 | right to extract, reuse, reproduce, and Share all or a 239 | substantial portion of the contents of the database for 240 | NonCommercial purposes only; 241 | - b. if You include all or a substantial portion of the database 242 | contents in a database in which You have Sui Generis Database 243 | Rights, then the database in which You have Sui Generis Database 244 | Rights (but not its individual contents) is Adapted Material; 245 | and 246 | - c. You must comply with the conditions in Section 3(a) if You 247 | Share all or a substantial portion of the contents of the 248 | database. 249 | 250 | For the avoidance of doubt, this Section 4 supplements and does not 251 | replace Your obligations under this Public License where the 252 | Licensed Rights include other Copyright and Similar Rights. 253 | 254 | - Section 5 – Disclaimer of Warranties and Limitation of Liability. 255 | 256 | - a. Unless otherwise separately undertaken by the Licensor, to 257 | the extent possible, the Licensor offers the Licensed Material 258 | as-is and as-available, and makes no representations or 259 | warranties of any kind concerning the Licensed Material, whether 260 | express, implied, statutory, or other. This includes, without 261 | limitation, warranties of title, merchantability, fitness for a 262 | particular purpose, non-infringement, absence of latent or other 263 | defects, accuracy, or the presence or absence of errors, whether 264 | or not known or discoverable. Where disclaimers of warranties 265 | are not allowed in full or in part, this disclaimer may not 266 | apply to You. 267 | - b. To the extent possible, in no event will the Licensor be 268 | liable to You on any legal theory (including, without 269 | limitation, negligence) or otherwise for any direct, special, 270 | indirect, incidental, consequential, punitive, exemplary, or 271 | other losses, costs, expenses, or damages arising out of this 272 | Public License or use of the Licensed Material, even if the 273 | Licensor has been advised of the possibility of such losses, 274 | costs, expenses, or damages. Where a limitation of liability is 275 | not allowed in full or in part, this limitation may not apply to 276 | You. 277 | - c. The disclaimer of warranties and limitation of liability 278 | provided above shall be interpreted in a manner that, to the 279 | extent possible, most closely approximates an absolute 280 | disclaimer and waiver of all liability. 281 | 282 | - Section 6 – Term and Termination. 283 | 284 | - a. This Public License applies for the term of the Copyright and 285 | Similar Rights licensed here. However, if You fail to comply 286 | with this Public License, then Your rights under this Public 287 | License terminate automatically. 288 | - b. Where Your right to use the Licensed Material has terminated 289 | under Section 6(a), it reinstates: 290 | 291 | - 1. automatically as of the date the violation is cured, 292 | provided it is cured within 30 days of Your discovery of the 293 | violation; or 294 | - 2. upon express reinstatement by the Licensor. 295 | 296 | For the avoidance of doubt, this Section 6(b) does not affect 297 | any right the Licensor may have to seek remedies for Your 298 | violations of this Public License. 299 | 300 | - c. For the avoidance of doubt, the Licensor may also offer the 301 | Licensed Material under separate terms or conditions or stop 302 | distributing the Licensed Material at any time; however, doing 303 | so will not terminate this Public License. 304 | - d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 305 | License. 306 | 307 | - Section 7 – Other Terms and Conditions. 308 | 309 | - a. The Licensor shall not be bound by any additional or 310 | different terms or conditions communicated by You unless 311 | expressly agreed. 312 | - b. Any arrangements, understandings, or agreements regarding the 313 | Licensed Material not stated herein are separate from and 314 | independent of the terms and conditions of this Public License. 315 | 316 | - Section 8 – Interpretation. 317 | 318 | - a. For the avoidance of doubt, this Public License does not, and 319 | shall not be interpreted to, reduce, limit, restrict, or impose 320 | conditions on any use of the Licensed Material that could 321 | lawfully be made without permission under this Public License. 322 | - b. To the extent possible, if any provision of this Public 323 | License is deemed unenforceable, it shall be automatically 324 | reformed to the minimum extent necessary to make it enforceable. 325 | If the provision cannot be reformed, it shall be severed from 326 | this Public License without affecting the enforceability of the 327 | remaining terms and conditions. 328 | - c. No term or condition of this Public License will be waived 329 | and no failure to comply consented to unless expressly agreed to 330 | by the Licensor. 331 | - d. Nothing in this Public License constitutes or may be 332 | interpreted as a limitation upon, or waiver of, any privileges 333 | and immunities that apply to the Licensor or You, including from 334 | the legal processes of any jurisdiction or authority. 335 | 336 | Creative Commons is not a party to its public licenses. Notwithstanding, 337 | Creative Commons may elect to apply one of its public licenses to 338 | material it publishes and in those instances will be considered the 339 | "Licensor." The text of the Creative Commons public licenses is 340 | dedicated to the public domain under the CC0 Public Domain Dedication. 341 | Except for the limited purpose of indicating that material is shared 342 | under a Creative Commons public license or as otherwise permitted by the 343 | Creative Commons policies published at creativecommons.org/policies, 344 | Creative Commons does not authorize the use of the trademark "Creative 345 | Commons" or any other trademark or logo of Creative Commons without its 346 | prior written consent including, without limitation, in connection with 347 | any unauthorized modifications to any of its public licenses or any 348 | other arrangements, understandings, or agreements concerning use of 349 | licensed material. For the avoidance of doubt, this paragraph does not 350 | form part of the public licenses. 351 | 352 | Creative Commons may be contacted at creativecommons.org. 353 | -------------------------------------------------------------------------------- /device/device.routing.list.maxpat: -------------------------------------------------------------------------------- 1 | { 2 | "patcher" : { 3 | "fileversion" : 1, 4 | "appversion" : { 5 | "major" : 9, 6 | "minor" : 0, 7 | "revision" : 2, 8 | "architecture" : "x64", 9 | "modernui" : 1 10 | } 11 | , 12 | "classnamespace" : "box", 13 | "rect" : [ 521.0, 271.0, 868.0, 714.0 ], 14 | "gridonopen" : 2, 15 | "gridsize" : [ 10.0, 10.0 ], 16 | "gridsnaponopen" : 2, 17 | "objectsnaponopen" : 0, 18 | "style" : "Max For Live", 19 | "subpatcher_template" : "Max For Live", 20 | "boxes" : [ { 21 | "box" : { 22 | "fontface" : 1, 23 | "fontname" : "Arial", 24 | "fontsize" : 12.0, 25 | "id" : "obj-43", 26 | "maxclass" : "comment", 27 | "numinlets" : 1, 28 | "numoutlets" : 0, 29 | "patching_rect" : [ 200.0, 26.0, 284.0, 20.0 ], 30 | "prototypename" : "M4L.patcher-summary", 31 | "text" : "A utility used by the BrowseRouting abstraction" 32 | } 33 | 34 | } 35 | , { 36 | "box" : { 37 | "fontface" : 1, 38 | "fontname" : "Arial", 39 | "fontsize" : 18.0, 40 | "id" : "obj-5", 41 | "maxclass" : "comment", 42 | "numinlets" : 1, 43 | "numoutlets" : 0, 44 | "patching_rect" : [ 50.0, 20.0, 144.0, 27.0 ], 45 | "prototypename" : "M4L.subpatcher-title", 46 | "text" : "RoutingObjects" 47 | } 48 | 49 | } 50 | , { 51 | "box" : { 52 | "id" : "obj-17", 53 | "linecount" : 3, 54 | "maxclass" : "comment", 55 | "numinlets" : 1, 56 | "numoutlets" : 0, 57 | "patching_rect" : [ 50.0, 50.0, 560.0, 47.0 ], 58 | "text" : "The BrowseRouting abstraction is a utility that lists available tracks in the current Live set to send audio to or receive audio from, to be used inside a multichannel Max For Live device. The RoutingObjects abstraction is the mechanism used to list and map available audio inputs and outputs." 59 | } 60 | 61 | } 62 | , { 63 | "box" : { 64 | "id" : "obj-28", 65 | "linecount" : 2, 66 | "maxclass" : "message", 67 | "numinlets" : 2, 68 | "numoutlets" : 1, 69 | "outlettype" : [ "" ], 70 | "patching_rect" : [ 490.0, 540.0, 80.0, 35.0 ], 71 | "text" : "clearchecks, checkitem $1" 72 | } 73 | 74 | } 75 | , { 76 | "box" : { 77 | "id" : "obj-27", 78 | "linecount" : 3, 79 | "maxclass" : "message", 80 | "numinlets" : 2, 81 | "numoutlets" : 1, 82 | "outlettype" : [ "" ], 83 | "patching_rect" : [ 230.0, 540.0, 80.0, 49.0 ], 84 | "text" : "set $1, clearchecks, checkitem $1" 85 | } 86 | 87 | } 88 | , { 89 | "box" : { 90 | "id" : "obj-20", 91 | "maxclass" : "comment", 92 | "numinlets" : 1, 93 | "numoutlets" : 0, 94 | "patching_rect" : [ 330.0, 640.0, 49.0, 20.0 ], 95 | "text" : "Umenu" 96 | } 97 | 98 | } 99 | , { 100 | "box" : { 101 | "id" : "obj-11", 102 | "maxclass" : "comment", 103 | "numinlets" : 1, 104 | "numoutlets" : 0, 105 | "patching_rect" : [ 745.0, 115.0, 22.0, 20.0 ], 106 | "text" : "id" 107 | } 108 | 109 | } 110 | , { 111 | "box" : { 112 | "id" : "obj-6", 113 | "maxclass" : "comment", 114 | "numinlets" : 1, 115 | "numoutlets" : 0, 116 | "patching_rect" : [ 575.0, 335.0, 88.0, 20.0 ], 117 | "text" : "Index (umenu)" 118 | } 119 | 120 | } 121 | , { 122 | "box" : { 123 | "id" : "obj-4", 124 | "maxclass" : "newobj", 125 | "numinlets" : 1, 126 | "numoutlets" : 3, 127 | "outlettype" : [ "bang", "", "bang" ], 128 | "patching_rect" : [ 230.0, 170.0, 79.0, 22.0 ], 129 | "text" : "t b l b" 130 | } 131 | 132 | } 133 | , { 134 | "box" : { 135 | "id" : "obj-21", 136 | "maxclass" : "message", 137 | "numinlets" : 2, 138 | "numoutlets" : 1, 139 | "outlettype" : [ "" ], 140 | "patching_rect" : [ 40.0, 330.0, 65.0, 22.0 ], 141 | "text" : "symbol $1" 142 | } 143 | 144 | } 145 | , { 146 | "box" : { 147 | "fontname" : "Arial", 148 | "fontsize" : 12.0, 149 | "id" : "obj-12", 150 | "maxclass" : "newobj", 151 | "numinlets" : 2, 152 | "numoutlets" : 1, 153 | "outlettype" : [ "int" ], 154 | "patching_rect" : [ 230.0, 510.0, 29.5, 22.0 ], 155 | "text" : "i" 156 | } 157 | 158 | } 159 | , { 160 | "box" : { 161 | "id" : "obj-8", 162 | "items" : "", 163 | "maxclass" : "umenu", 164 | "numinlets" : 1, 165 | "numoutlets" : 3, 166 | "outlettype" : [ "int", "", "" ], 167 | "parameter_enable" : 0, 168 | "patching_rect" : [ 40.0, 440.0, 100.0, 22.0 ] 169 | } 170 | 171 | } 172 | , { 173 | "box" : { 174 | "fontname" : "Arial", 175 | "fontsize" : 12.0, 176 | "id" : "obj-14", 177 | "maxclass" : "newobj", 178 | "numinlets" : 2, 179 | "numoutlets" : 2, 180 | "outlettype" : [ "", "" ], 181 | "patching_rect" : [ 330.0, 270.0, 119.0, 22.0 ], 182 | "text" : "routepass dictionary" 183 | } 184 | 185 | } 186 | , { 187 | "box" : { 188 | "fontname" : "Arial", 189 | "fontsize" : 12.0, 190 | "id" : "obj-10", 191 | "maxclass" : "newobj", 192 | "numinlets" : 1, 193 | "numoutlets" : 2, 194 | "outlettype" : [ "", "" ], 195 | "patching_rect" : [ 40.0, 300.0, 123.0, 22.0 ], 196 | "saved_object_attributes" : { 197 | "legacy" : 1 198 | } 199 | , 200 | "text" : "dict.unpack identifier:" 201 | } 202 | 203 | } 204 | , { 205 | "box" : { 206 | "comment" : "Index (umenu)", 207 | "id" : "obj-3", 208 | "index" : 1, 209 | "maxclass" : "inlet", 210 | "numinlets" : 0, 211 | "numoutlets" : 1, 212 | "outlettype" : [ "int" ], 213 | "patching_rect" : [ 600.0, 360.0, 30.0, 30.0 ] 214 | } 215 | 216 | } 217 | , { 218 | "box" : { 219 | "comment" : "Umenu", 220 | "id" : "obj-2", 221 | "index" : 1, 222 | "maxclass" : "outlet", 223 | "numinlets" : 1, 224 | "numoutlets" : 0, 225 | "patching_rect" : [ 290.0, 630.0, 30.0, 30.0 ] 226 | } 227 | 228 | } 229 | , { 230 | "box" : { 231 | "comment" : "id", 232 | "id" : "obj-1", 233 | "index" : 2, 234 | "maxclass" : "inlet", 235 | "numinlets" : 0, 236 | "numoutlets" : 1, 237 | "outlettype" : [ "" ], 238 | "patching_rect" : [ 740.0, 140.0, 30.0, 30.0 ] 239 | } 240 | 241 | } 242 | , { 243 | "box" : { 244 | "fontname" : "Arial", 245 | "fontsize" : 12.0, 246 | "id" : "obj-36", 247 | "maxclass" : "newobj", 248 | "numinlets" : 1, 249 | "numoutlets" : 2, 250 | "outlettype" : [ "", "" ], 251 | "patching_rect" : [ 40.0, 270.0, 161.0, 22.0 ], 252 | "saved_object_attributes" : { 253 | "legacy" : 1 254 | } 255 | , 256 | "text" : "dict.unpack #2:" 257 | } 258 | 259 | } 260 | , { 261 | "box" : { 262 | "color" : [ 0.941176, 0.690196, 0.196078, 1.0 ], 263 | "fontname" : "Arial", 264 | "fontsize" : 12.0, 265 | "id" : "obj-35", 266 | "maxclass" : "newobj", 267 | "numinlets" : 2, 268 | "numoutlets" : 2, 269 | "outlettype" : [ "", "" ], 270 | "patching_rect" : [ 40.0, 240.0, 148.0, 22.0 ], 271 | "saved_object_attributes" : { 272 | "_persistence" : 0 273 | } 274 | , 275 | "text" : "live.observer #2" 276 | } 277 | 278 | } 279 | , { 280 | "box" : { 281 | "fontname" : "Arial", 282 | "fontsize" : 12.0, 283 | "id" : "obj-34", 284 | "maxclass" : "newobj", 285 | "numinlets" : 1, 286 | "numoutlets" : 1, 287 | "outlettype" : [ "" ], 288 | "patching_rect" : [ 640.0, 610.0, 161.0, 22.0 ], 289 | "text" : "prepend set #2" 290 | } 291 | 292 | } 293 | , { 294 | "box" : { 295 | "color" : [ 0.941176, 0.690196, 0.196078, 1.0 ], 296 | "fontname" : "Arial", 297 | "fontsize" : 12.0, 298 | "id" : "obj-33", 299 | "maxclass" : "newobj", 300 | "numinlets" : 2, 301 | "numoutlets" : 1, 302 | "outlettype" : [ "" ], 303 | "patching_rect" : [ 640.0, 640.0, 119.0, 22.0 ], 304 | "saved_object_attributes" : { 305 | "_persistence" : 0 306 | } 307 | , 308 | "text" : "live.object" 309 | } 310 | 311 | } 312 | , { 313 | "box" : { 314 | "fontname" : "Arial", 315 | "fontsize" : 12.0, 316 | "id" : "obj-32", 317 | "maxclass" : "newobj", 318 | "numinlets" : 1, 319 | "numoutlets" : 2, 320 | "outlettype" : [ "bang", "" ], 321 | "patching_rect" : [ 640.0, 540.0, 30.0, 22.0 ], 322 | "text" : "t b l" 323 | } 324 | 325 | } 326 | , { 327 | "box" : { 328 | "fontname" : "Arial", 329 | "fontsize" : 12.0, 330 | "id" : "obj-30", 331 | "maxclass" : "newobj", 332 | "numinlets" : 2, 333 | "numoutlets" : 5, 334 | "outlettype" : [ "dictionary", "", "", "", "" ], 335 | "patching_rect" : [ 640.0, 580.0, 50.5, 22.0 ], 336 | "saved_object_attributes" : { 337 | "embed" : 0, 338 | "legacy" : 1, 339 | "parameter_enable" : 0, 340 | "parameter_mappable" : 0 341 | } 342 | , 343 | "text" : "dict" 344 | } 345 | 346 | } 347 | , { 348 | "box" : { 349 | "fontname" : "Arial", 350 | "fontsize" : 12.0, 351 | "id" : "obj-29", 352 | "maxclass" : "message", 353 | "numinlets" : 2, 354 | "numoutlets" : 1, 355 | "outlettype" : [ "" ], 356 | "patching_rect" : [ 640.0, 510.0, 92.0, 22.0 ], 357 | "text" : "set identifier $1" 358 | } 359 | 360 | } 361 | , { 362 | "box" : { 363 | "fontname" : "Arial", 364 | "fontsize" : 12.0, 365 | "id" : "obj-25", 366 | "maxclass" : "newobj", 367 | "numinlets" : 1, 368 | "numoutlets" : 1, 369 | "outlettype" : [ "" ], 370 | "patching_rect" : [ 640.0, 480.0, 73.0, 22.0 ], 371 | "text" : "fromsymbol" 372 | } 373 | 374 | } 375 | , { 376 | "box" : { 377 | "fontname" : "Arial", 378 | "fontsize" : 12.0, 379 | "id" : "obj-24", 380 | "maxclass" : "newobj", 381 | "numinlets" : 1, 382 | "numoutlets" : 1, 383 | "outlettype" : [ "" ], 384 | "patching_rect" : [ 430.0, 370.0, 98.0, 22.0 ], 385 | "text" : "prepend append" 386 | } 387 | 388 | } 389 | , { 390 | "box" : { 391 | "fontname" : "Arial", 392 | "fontsize" : 12.0, 393 | "id" : "obj-23", 394 | "maxclass" : "newobj", 395 | "numinlets" : 1, 396 | "numoutlets" : 1, 397 | "outlettype" : [ "" ], 398 | "patching_rect" : [ 330.0, 540.0, 98.0, 22.0 ], 399 | "text" : "prepend append" 400 | } 401 | 402 | } 403 | , { 404 | "box" : { 405 | "fontname" : "Arial", 406 | "fontsize" : 12.0, 407 | "id" : "obj-19", 408 | "maxclass" : "newobj", 409 | "numinlets" : 1, 410 | "numoutlets" : 2, 411 | "outlettype" : [ "", "" ], 412 | "patching_rect" : [ 430.0, 340.0, 123.0, 22.0 ], 413 | "saved_object_attributes" : { 414 | "legacy" : 1 415 | } 416 | , 417 | "text" : "dict.unpack identifier:" 418 | } 419 | 420 | } 421 | , { 422 | "box" : { 423 | "fontname" : "Arial", 424 | "fontsize" : 12.0, 425 | "id" : "obj-18", 426 | "maxclass" : "newobj", 427 | "numinlets" : 1, 428 | "numoutlets" : 1, 429 | "outlettype" : [ "" ], 430 | "patching_rect" : [ 430.0, 300.0, 27.0, 22.0 ], 431 | "text" : "iter" 432 | } 433 | 434 | } 435 | , { 436 | "box" : { 437 | "fontname" : "Arial", 438 | "fontsize" : 12.0, 439 | "id" : "obj-16", 440 | "maxclass" : "newobj", 441 | "numinlets" : 1, 442 | "numoutlets" : 2, 443 | "outlettype" : [ "", "" ], 444 | "patching_rect" : [ 330.0, 240.0, 221.0, 22.0 ], 445 | "saved_object_attributes" : { 446 | "legacy" : 1 447 | } 448 | , 449 | "text" : "dict.unpack #1:" 450 | } 451 | 452 | } 453 | , { 454 | "box" : { 455 | "fontname" : "Arial", 456 | "fontsize" : 12.0, 457 | "id" : "obj-15", 458 | "maxclass" : "newobj", 459 | "numinlets" : 1, 460 | "numoutlets" : 2, 461 | "outlettype" : [ "", "" ], 462 | "patching_rect" : [ 330.0, 510.0, 152.0, 22.0 ], 463 | "saved_object_attributes" : { 464 | "legacy" : 1 465 | } 466 | , 467 | "text" : "dict.unpack display_name:" 468 | } 469 | 470 | } 471 | , { 472 | "box" : { 473 | "id" : "obj-13", 474 | "items" : "", 475 | "maxclass" : "umenu", 476 | "numinlets" : 1, 477 | "numoutlets" : 3, 478 | "outlettype" : [ "int", "", "" ], 479 | "parameter_enable" : 0, 480 | "patching_rect" : [ 600.0, 440.0, 99.0, 22.0 ] 481 | } 482 | 483 | } 484 | , { 485 | "box" : { 486 | "color" : [ 0.941176, 0.690196, 0.196078, 1.0 ], 487 | "fontname" : "Arial", 488 | "fontsize" : 12.0, 489 | "id" : "obj-9", 490 | "maxclass" : "newobj", 491 | "numinlets" : 2, 492 | "numoutlets" : 2, 493 | "outlettype" : [ "", "" ], 494 | "patching_rect" : [ 230.0, 140.0, 208.0, 22.0 ], 495 | "saved_object_attributes" : { 496 | "_persistence" : 0 497 | } 498 | , 499 | "text" : "live.observer #1" 500 | } 501 | 502 | } 503 | , { 504 | "box" : { 505 | "fontname" : "Arial", 506 | "fontsize" : 12.0, 507 | "id" : "obj-7", 508 | "maxclass" : "message", 509 | "numinlets" : 2, 510 | "numoutlets" : 1, 511 | "outlettype" : [ "" ], 512 | "patching_rect" : [ 290.0, 440.0, 37.0, 22.0 ], 513 | "text" : "clear" 514 | } 515 | 516 | } 517 | ], 518 | "lines" : [ { 519 | "patchline" : { 520 | "destination" : [ "obj-33", 1 ], 521 | "order" : 0, 522 | "source" : [ "obj-1", 0 ] 523 | } 524 | 525 | } 526 | , { 527 | "patchline" : { 528 | "destination" : [ "obj-35", 1 ], 529 | "order" : 2, 530 | "source" : [ "obj-1", 0 ] 531 | } 532 | 533 | } 534 | , { 535 | "patchline" : { 536 | "destination" : [ "obj-9", 1 ], 537 | "order" : 1, 538 | "source" : [ "obj-1", 0 ] 539 | } 540 | 541 | } 542 | , { 543 | "patchline" : { 544 | "destination" : [ "obj-21", 0 ], 545 | "source" : [ "obj-10", 0 ] 546 | } 547 | 548 | } 549 | , { 550 | "patchline" : { 551 | "destination" : [ "obj-27", 0 ], 552 | "source" : [ "obj-12", 0 ] 553 | } 554 | 555 | } 556 | , { 557 | "patchline" : { 558 | "destination" : [ "obj-25", 0 ], 559 | "source" : [ "obj-13", 1 ] 560 | } 561 | 562 | } 563 | , { 564 | "patchline" : { 565 | "destination" : [ "obj-15", 0 ], 566 | "source" : [ "obj-14", 0 ] 567 | } 568 | 569 | } 570 | , { 571 | "patchline" : { 572 | "destination" : [ "obj-18", 0 ], 573 | "source" : [ "obj-14", 1 ] 574 | } 575 | 576 | } 577 | , { 578 | "patchline" : { 579 | "destination" : [ "obj-23", 0 ], 580 | "source" : [ "obj-15", 0 ] 581 | } 582 | 583 | } 584 | , { 585 | "patchline" : { 586 | "destination" : [ "obj-14", 0 ], 587 | "source" : [ "obj-16", 0 ] 588 | } 589 | 590 | } 591 | , { 592 | "patchline" : { 593 | "destination" : [ "obj-15", 0 ], 594 | "order" : 1, 595 | "source" : [ "obj-18", 0 ] 596 | } 597 | 598 | } 599 | , { 600 | "patchline" : { 601 | "destination" : [ "obj-19", 0 ], 602 | "order" : 0, 603 | "source" : [ "obj-18", 0 ] 604 | } 605 | 606 | } 607 | , { 608 | "patchline" : { 609 | "destination" : [ "obj-24", 0 ], 610 | "source" : [ "obj-19", 0 ] 611 | } 612 | 613 | } 614 | , { 615 | "patchline" : { 616 | "destination" : [ "obj-8", 0 ], 617 | "source" : [ "obj-21", 0 ] 618 | } 619 | 620 | } 621 | , { 622 | "patchline" : { 623 | "destination" : [ "obj-2", 0 ], 624 | "source" : [ "obj-23", 0 ] 625 | } 626 | 627 | } 628 | , { 629 | "patchline" : { 630 | "destination" : [ "obj-13", 0 ], 631 | "order" : 0, 632 | "source" : [ "obj-24", 0 ] 633 | } 634 | 635 | } 636 | , { 637 | "patchline" : { 638 | "destination" : [ "obj-8", 0 ], 639 | "order" : 1, 640 | "source" : [ "obj-24", 0 ] 641 | } 642 | 643 | } 644 | , { 645 | "patchline" : { 646 | "destination" : [ "obj-29", 0 ], 647 | "source" : [ "obj-25", 0 ] 648 | } 649 | 650 | } 651 | , { 652 | "patchline" : { 653 | "destination" : [ "obj-2", 0 ], 654 | "source" : [ "obj-27", 0 ] 655 | } 656 | 657 | } 658 | , { 659 | "patchline" : { 660 | "destination" : [ "obj-2", 0 ], 661 | "source" : [ "obj-28", 0 ] 662 | } 663 | 664 | } 665 | , { 666 | "patchline" : { 667 | "destination" : [ "obj-32", 0 ], 668 | "source" : [ "obj-29", 0 ] 669 | } 670 | 671 | } 672 | , { 673 | "patchline" : { 674 | "destination" : [ "obj-13", 0 ], 675 | "order" : 0, 676 | "source" : [ "obj-3", 0 ] 677 | } 678 | 679 | } 680 | , { 681 | "patchline" : { 682 | "destination" : [ "obj-28", 0 ], 683 | "order" : 1, 684 | "source" : [ "obj-3", 0 ] 685 | } 686 | 687 | } 688 | , { 689 | "patchline" : { 690 | "destination" : [ "obj-34", 0 ], 691 | "source" : [ "obj-30", 0 ] 692 | } 693 | 694 | } 695 | , { 696 | "patchline" : { 697 | "destination" : [ "obj-30", 0 ], 698 | "source" : [ "obj-32", 1 ] 699 | } 700 | 701 | } 702 | , { 703 | "patchline" : { 704 | "destination" : [ "obj-30", 0 ], 705 | "source" : [ "obj-32", 0 ] 706 | } 707 | 708 | } 709 | , { 710 | "patchline" : { 711 | "destination" : [ "obj-33", 0 ], 712 | "source" : [ "obj-34", 0 ] 713 | } 714 | 715 | } 716 | , { 717 | "patchline" : { 718 | "destination" : [ "obj-36", 0 ], 719 | "source" : [ "obj-35", 0 ] 720 | } 721 | 722 | } 723 | , { 724 | "patchline" : { 725 | "destination" : [ "obj-10", 0 ], 726 | "source" : [ "obj-36", 0 ] 727 | } 728 | 729 | } 730 | , { 731 | "patchline" : { 732 | "destination" : [ "obj-12", 0 ], 733 | "source" : [ "obj-4", 0 ] 734 | } 735 | 736 | } 737 | , { 738 | "patchline" : { 739 | "destination" : [ "obj-16", 0 ], 740 | "source" : [ "obj-4", 1 ] 741 | } 742 | 743 | } 744 | , { 745 | "patchline" : { 746 | "destination" : [ "obj-7", 0 ], 747 | "source" : [ "obj-4", 2 ] 748 | } 749 | 750 | } 751 | , { 752 | "patchline" : { 753 | "destination" : [ "obj-13", 0 ], 754 | "order" : 0, 755 | "source" : [ "obj-7", 0 ] 756 | } 757 | 758 | } 759 | , { 760 | "patchline" : { 761 | "destination" : [ "obj-2", 0 ], 762 | "order" : 1, 763 | "source" : [ "obj-7", 0 ] 764 | } 765 | 766 | } 767 | , { 768 | "patchline" : { 769 | "destination" : [ "obj-8", 0 ], 770 | "order" : 2, 771 | "source" : [ "obj-7", 0 ] 772 | } 773 | 774 | } 775 | , { 776 | "patchline" : { 777 | "destination" : [ "obj-12", 0 ], 778 | "source" : [ "obj-8", 0 ] 779 | } 780 | 781 | } 782 | , { 783 | "patchline" : { 784 | "destination" : [ "obj-4", 0 ], 785 | "source" : [ "obj-9", 0 ] 786 | } 787 | 788 | } 789 | ], 790 | "originid" : "pat-82", 791 | "styles" : [ { 792 | "name" : "Audiomix", 793 | "default" : { 794 | "bgfillcolor" : { 795 | "angle" : 270.0, 796 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 797 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 798 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 799 | "proportion" : 0.39, 800 | "type" : "gradient" 801 | } 802 | 803 | } 804 | , 805 | "parentstyle" : "", 806 | "multi" : 0 807 | } 808 | , { 809 | "name" : "Max 12 Regular", 810 | "parentstyle" : "", 811 | "multi" : 0 812 | } 813 | , { 814 | "name" : "Max For Live", 815 | "default" : { 816 | "patchlinecolor" : [ 0.239216, 0.254902, 0.278431, 0.631373 ] 817 | } 818 | , 819 | "parentstyle" : "", 820 | "multi" : 0 821 | } 822 | , { 823 | "name" : "stb001", 824 | "default" : { 825 | "fontface" : [ 1 ], 826 | "fontname" : [ "Arial Bold" ], 827 | "fontsize" : [ 10.0 ] 828 | } 829 | , 830 | "parentstyle" : "", 831 | "multi" : 0 832 | } 833 | ] 834 | } 835 | 836 | } 837 | -------------------------------------------------------------------------------- /device/device.routing.maxpat: -------------------------------------------------------------------------------- 1 | { 2 | "patcher" : { 3 | "fileversion" : 1, 4 | "appversion" : { 5 | "major" : 9, 6 | "minor" : 0, 7 | "revision" : 2, 8 | "architecture" : "x64", 9 | "modernui" : 1 10 | } 11 | , 12 | "classnamespace" : "box", 13 | "rect" : [ 60.0, 100.0, 679.0, 488.0 ], 14 | "openinpresentation" : 1, 15 | "gridonopen" : 2, 16 | "gridsize" : [ 10.0, 10.0 ], 17 | "gridsnaponopen" : 2, 18 | "objectsnaponopen" : 0, 19 | "style" : "Max For Live", 20 | "subpatcher_template" : "Max For Live", 21 | "boxes" : [ { 22 | "box" : { 23 | "id" : "obj-19", 24 | "maxclass" : "newobj", 25 | "numinlets" : 2, 26 | "numoutlets" : 2, 27 | "outlettype" : [ "", "" ], 28 | "patching_rect" : [ 310.0, 210.0, 52.0, 22.0 ], 29 | "text" : "route int" 30 | } 31 | 32 | } 33 | , { 34 | "box" : { 35 | "id" : "obj-24", 36 | "maxclass" : "newobj", 37 | "numinlets" : 0, 38 | "numoutlets" : 1, 39 | "outlettype" : [ "" ], 40 | "patcher" : { 41 | "fileversion" : 1, 42 | "appversion" : { 43 | "major" : 9, 44 | "minor" : 0, 45 | "revision" : 2, 46 | "architecture" : "x64", 47 | "modernui" : 1 48 | } 49 | , 50 | "classnamespace" : "box", 51 | "rect" : [ 59.0, 104.0, 173.0, 259.0 ], 52 | "gridonopen" : 2, 53 | "gridsize" : [ 10.0, 10.0 ], 54 | "gridsnaponopen" : 2, 55 | "objectsnaponopen" : 0, 56 | "style" : "Max For Live", 57 | "subpatcher_template" : "Max For Live", 58 | "boxes" : [ { 59 | "box" : { 60 | "id" : "obj-1", 61 | "maxclass" : "newobj", 62 | "numinlets" : 1, 63 | "numoutlets" : 3, 64 | "outlettype" : [ "bang", "int", "int" ], 65 | "patching_rect" : [ 30.0, 30.0, 83.0, 22.0 ], 66 | "text" : "live.thisdevice" 67 | } 68 | 69 | } 70 | , { 71 | "box" : { 72 | "id" : "obj-41", 73 | "linecount" : 3, 74 | "maxclass" : "newobj", 75 | "numinlets" : 2, 76 | "numoutlets" : 2, 77 | "outlettype" : [ "", "" ], 78 | "patching_rect" : [ 30.0, 130.0, 70.0, 49.0 ], 79 | "text" : "substitute control_fg textcolor" 80 | } 81 | 82 | } 83 | , { 84 | "box" : { 85 | "id" : "obj-38", 86 | "maxclass" : "message", 87 | "numinlets" : 2, 88 | "numoutlets" : 1, 89 | "outlettype" : [ "" ], 90 | "patching_rect" : [ 30.0, 70.0, 63.0, 22.0 ], 91 | "text" : "control_fg" 92 | } 93 | 94 | } 95 | , { 96 | "box" : { 97 | "id" : "obj-30", 98 | "maxclass" : "newobj", 99 | "numinlets" : 1, 100 | "numoutlets" : 2, 101 | "outlettype" : [ "", "bang" ], 102 | "patching_rect" : [ 30.0, 100.0, 64.0, 22.0 ], 103 | "text" : "live.colors" 104 | } 105 | 106 | } 107 | , { 108 | "box" : { 109 | "id" : "obj-2", 110 | "maxclass" : "comment", 111 | "numinlets" : 1, 112 | "numoutlets" : 0, 113 | "patching_rect" : [ 70.0, 210.0, 49.0, 20.0 ], 114 | "text" : "Umenu" 115 | } 116 | 117 | } 118 | , { 119 | "box" : { 120 | "comment" : "", 121 | "id" : "obj-39", 122 | "index" : 1, 123 | "maxclass" : "outlet", 124 | "numinlets" : 1, 125 | "numoutlets" : 0, 126 | "patching_rect" : [ 30.0, 200.0, 30.0, 30.0 ] 127 | } 128 | 129 | } 130 | ], 131 | "lines" : [ { 132 | "patchline" : { 133 | "destination" : [ "obj-38", 0 ], 134 | "source" : [ "obj-1", 0 ] 135 | } 136 | 137 | } 138 | , { 139 | "patchline" : { 140 | "destination" : [ "obj-38", 0 ], 141 | "source" : [ "obj-30", 1 ] 142 | } 143 | 144 | } 145 | , { 146 | "patchline" : { 147 | "destination" : [ "obj-41", 0 ], 148 | "source" : [ "obj-30", 0 ] 149 | } 150 | 151 | } 152 | , { 153 | "patchline" : { 154 | "destination" : [ "obj-30", 0 ], 155 | "source" : [ "obj-38", 0 ] 156 | } 157 | 158 | } 159 | , { 160 | "patchline" : { 161 | "destination" : [ "obj-39", 0 ], 162 | "source" : [ "obj-41", 0 ] 163 | } 164 | 165 | } 166 | ], 167 | "originid" : "pat-674", 168 | "styles" : [ { 169 | "name" : "AudioStatus_Menu", 170 | "default" : { 171 | "bgfillcolor" : { 172 | "angle" : 270.0, 173 | "autogradient" : 0, 174 | "color" : [ 0.294118, 0.313726, 0.337255, 1 ], 175 | "color1" : [ 0.454902, 0.462745, 0.482353, 0.0 ], 176 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 177 | "proportion" : 0.39, 178 | "type" : "color" 179 | } 180 | 181 | } 182 | , 183 | "parentstyle" : "", 184 | "multi" : 0 185 | } 186 | , { 187 | "name" : "Audiomix", 188 | "default" : { 189 | "bgfillcolor" : { 190 | "angle" : 270.0, 191 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 192 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 193 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 194 | "proportion" : 0.39, 195 | "type" : "gradient" 196 | } 197 | 198 | } 199 | , 200 | "parentstyle" : "", 201 | "multi" : 0 202 | } 203 | , { 204 | "name" : "Default M4L", 205 | "default" : { 206 | "fontname" : [ "Arial Bold" ], 207 | "fontsize" : [ 11.0 ], 208 | "patchlinecolor" : [ 0.290196, 0.309804, 0.301961, 0.85 ] 209 | } 210 | , 211 | "parentstyle" : "", 212 | "multi" : 0 213 | } 214 | , { 215 | "name" : "Default M4L Poletti", 216 | "default" : { 217 | "fontname" : [ "Arial Bold" ], 218 | "fontsize" : [ 10.0 ], 219 | "patchlinecolor" : [ 0.290196, 0.309804, 0.301961, 0.85 ] 220 | } 221 | , 222 | "parentstyle" : "", 223 | "multi" : 0 224 | } 225 | , { 226 | "name" : "Default M4L-1", 227 | "default" : { 228 | "bgfillcolor" : { 229 | "angle" : 270.0, 230 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 231 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 232 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 233 | "proportion" : 0.39, 234 | "type" : "gradient" 235 | } 236 | , 237 | "fontface" : [ 1 ], 238 | "fontname" : [ "Arial" ], 239 | "fontsize" : [ 11.0 ] 240 | } 241 | , 242 | "parentstyle" : "", 243 | "multi" : 0 244 | } 245 | , { 246 | "name" : "Default Max7 Poletti", 247 | "default" : { 248 | "bgfillcolor" : { 249 | "angle" : 270.0, 250 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 251 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 252 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 253 | "proportion" : 0.39, 254 | "type" : "gradient" 255 | } 256 | 257 | } 258 | , 259 | "parentstyle" : "", 260 | "multi" : 0 261 | } 262 | , { 263 | "name" : "M4L 10 Bold", 264 | "default" : { 265 | "fontface" : [ 1 ], 266 | "fontsize" : [ 10.0 ], 267 | "patchlinecolor" : [ 0.0, 0.0, 0.0, 0.25 ] 268 | } 269 | , 270 | "parentstyle" : "", 271 | "multi" : 0 272 | } 273 | , { 274 | "name" : "Max 12 Regular", 275 | "parentstyle" : "", 276 | "multi" : 0 277 | } 278 | , { 279 | "name" : "Max 12 Regular-1", 280 | "default" : { 281 | "bgfillcolor" : { 282 | "angle" : 270.0, 283 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 284 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 285 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 286 | "proportion" : 0.39, 287 | "type" : "gradient" 288 | } 289 | 290 | } 291 | , 292 | "parentstyle" : "", 293 | "multi" : 0 294 | } 295 | , { 296 | "name" : "Max 12 Regular-1-1", 297 | "parentstyle" : "", 298 | "multi" : 0 299 | } 300 | , { 301 | "name" : "Max 12 Regular-1-1-1", 302 | "default" : { 303 | "bgfillcolor" : { 304 | "angle" : 270.0, 305 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 306 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 307 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 308 | "proportion" : 0.39, 309 | "type" : "gradient" 310 | } 311 | 312 | } 313 | , 314 | "parentstyle" : "", 315 | "multi" : 0 316 | } 317 | , { 318 | "name" : "Max 12 Regular-1-1-1-1", 319 | "parentstyle" : "", 320 | "multi" : 0 321 | } 322 | , { 323 | "name" : "Max 12 Regular-1-1-1-1-1", 324 | "default" : { 325 | "bgfillcolor" : { 326 | "angle" : 270.0, 327 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 328 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 329 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 330 | "proportion" : 0.39, 331 | "type" : "gradient" 332 | } 333 | 334 | } 335 | , 336 | "parentstyle" : "", 337 | "multi" : 0 338 | } 339 | , { 340 | "name" : "Max 12 Regular-1-1-1-2", 341 | "default" : { 342 | "bgfillcolor" : { 343 | "angle" : 270.0, 344 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 345 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 346 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 347 | "proportion" : 0.39, 348 | "type" : "gradient" 349 | } 350 | 351 | } 352 | , 353 | "parentstyle" : "", 354 | "multi" : 0 355 | } 356 | , { 357 | "name" : "Max 12 Regular-1-1-2", 358 | "default" : { 359 | "bgfillcolor" : { 360 | "angle" : 270.0, 361 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 362 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 363 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 364 | "proportion" : 0.39, 365 | "type" : "gradient" 366 | } 367 | 368 | } 369 | , 370 | "parentstyle" : "", 371 | "multi" : 0 372 | } 373 | , { 374 | "name" : "Max 12 Regular-1-1-3", 375 | "default" : { 376 | "bgfillcolor" : { 377 | "angle" : 270.0, 378 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 379 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 380 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 381 | "proportion" : 0.39, 382 | "type" : "gradient" 383 | } 384 | 385 | } 386 | , 387 | "parentstyle" : "", 388 | "multi" : 0 389 | } 390 | , { 391 | "name" : "Max 12 Regular-1-1-4", 392 | "parentstyle" : "", 393 | "multi" : 0 394 | } 395 | , { 396 | "name" : "Max 12 Regular-1-2", 397 | "default" : { 398 | "bgfillcolor" : { 399 | "angle" : 270.0, 400 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 401 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 402 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 403 | "proportion" : 0.39, 404 | "type" : "gradient" 405 | } 406 | 407 | } 408 | , 409 | "parentstyle" : "", 410 | "multi" : 0 411 | } 412 | , { 413 | "name" : "Max 12 Regular-1-2-1", 414 | "parentstyle" : "", 415 | "multi" : 0 416 | } 417 | , { 418 | "name" : "Max 12 Regular-1-2-2", 419 | "parentstyle" : "", 420 | "multi" : 0 421 | } 422 | , { 423 | "name" : "Max 12 Regular-1-3", 424 | "parentstyle" : "", 425 | "multi" : 0 426 | } 427 | , { 428 | "name" : "Max 12 Regular-1-4", 429 | "default" : { 430 | "bgfillcolor" : { 431 | "angle" : 270.0, 432 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 433 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 434 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 435 | "proportion" : 0.39, 436 | "type" : "gradient" 437 | } 438 | 439 | } 440 | , 441 | "parentstyle" : "", 442 | "multi" : 0 443 | } 444 | , { 445 | "name" : "Max 12 Regular-2", 446 | "default" : { 447 | "bgfillcolor" : { 448 | "angle" : 270.0, 449 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 450 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 451 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 452 | "proportion" : 0.39, 453 | "type" : "gradient" 454 | } 455 | 456 | } 457 | , 458 | "parentstyle" : "", 459 | "multi" : 0 460 | } 461 | , { 462 | "name" : "Max 12 Regular-3", 463 | "default" : { 464 | "bgfillcolor" : { 465 | "angle" : 270.0, 466 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 467 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 468 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 469 | "proportion" : 0.39, 470 | "type" : "gradient" 471 | } 472 | 473 | } 474 | , 475 | "parentstyle" : "", 476 | "multi" : 0 477 | } 478 | , { 479 | "name" : "Max 12 Regular-4", 480 | "parentstyle" : "", 481 | "multi" : 0 482 | } 483 | , { 484 | "name" : "Max 12 Regular-4-1", 485 | "default" : { 486 | "bgfillcolor" : { 487 | "angle" : 270.0, 488 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 489 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 490 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 491 | "proportion" : 0.39, 492 | "type" : "gradient" 493 | } 494 | 495 | } 496 | , 497 | "parentstyle" : "", 498 | "multi" : 0 499 | } 500 | , { 501 | "name" : "Max 12 Regular-4-2", 502 | "default" : { 503 | "bgfillcolor" : { 504 | "angle" : 270.0, 505 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 506 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 507 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 508 | "proportion" : 0.39, 509 | "type" : "gradient" 510 | } 511 | 512 | } 513 | , 514 | "parentstyle" : "", 515 | "multi" : 0 516 | } 517 | , { 518 | "name" : "Max 12 Regular-5", 519 | "default" : { 520 | "bgfillcolor" : { 521 | "angle" : 270.0, 522 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 523 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 524 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 525 | "proportion" : 0.39, 526 | "type" : "gradient" 527 | } 528 | 529 | } 530 | , 531 | "parentstyle" : "", 532 | "multi" : 0 533 | } 534 | , { 535 | "name" : "Max 12 Regular-6", 536 | "parentstyle" : "", 537 | "multi" : 0 538 | } 539 | , { 540 | "name" : "Max For Live", 541 | "default" : { 542 | "patchlinecolor" : [ 0.239216, 0.254902, 0.278431, 0.631373 ] 543 | } 544 | , 545 | "parentstyle" : "", 546 | "multi" : 0 547 | } 548 | , { 549 | "name" : "stb001", 550 | "default" : { 551 | "fontface" : [ 1 ], 552 | "fontname" : [ "Arial Bold" ], 553 | "fontsize" : [ 10.0 ] 554 | } 555 | , 556 | "parentstyle" : "", 557 | "multi" : 0 558 | } 559 | , { 560 | "name" : "tap", 561 | "default" : { 562 | "fontname" : [ "Lato Light" ] 563 | } 564 | , 565 | "parentstyle" : "", 566 | "multi" : 0 567 | } 568 | ] 569 | } 570 | , 571 | "patching_rect" : [ 30.0, 330.0, 49.0, 22.0 ], 572 | "saved_object_attributes" : { 573 | "globalpatchername" : "", 574 | "style" : "Max For Live" 575 | } 576 | , 577 | "text" : "p Color" 578 | } 579 | 580 | } 581 | , { 582 | "box" : { 583 | "id" : "obj-38", 584 | "maxclass" : "newobj", 585 | "numinlets" : 0, 586 | "numoutlets" : 1, 587 | "outlettype" : [ "" ], 588 | "patcher" : { 589 | "fileversion" : 1, 590 | "appversion" : { 591 | "major" : 9, 592 | "minor" : 0, 593 | "revision" : 2, 594 | "architecture" : "x64", 595 | "modernui" : 1 596 | } 597 | , 598 | "classnamespace" : "box", 599 | "rect" : [ 96.0, 144.0, 329.0, 400.0 ], 600 | "gridonopen" : 2, 601 | "gridsize" : [ 10.0, 10.0 ], 602 | "gridsnaponopen" : 2, 603 | "objectsnaponopen" : 0, 604 | "style" : "Max For Live", 605 | "subpatcher_template" : "Max For Live", 606 | "boxes" : [ { 607 | "box" : { 608 | "id" : "obj-15", 609 | "maxclass" : "newobj", 610 | "numinlets" : 1, 611 | "numoutlets" : 2, 612 | "outlettype" : [ "bang", "float" ], 613 | "patching_rect" : [ 190.0, 70.0, 32.0, 22.0 ], 614 | "text" : "t b f" 615 | } 616 | 617 | } 618 | , { 619 | "box" : { 620 | "id" : "obj-13", 621 | "maxclass" : "comment", 622 | "numinlets" : 1, 623 | "numoutlets" : 0, 624 | "patching_rect" : [ 230.0, 70.0, 83.0, 20.0 ], 625 | "text" : "Transparency" 626 | } 627 | 628 | } 629 | , { 630 | "box" : { 631 | "id" : "obj-12", 632 | "maxclass" : "comment", 633 | "numinlets" : 1, 634 | "numoutlets" : 0, 635 | "patching_rect" : [ 159.0, 18.0, 81.0, 20.0 ], 636 | "text" : "Device on/off" 637 | } 638 | 639 | } 640 | , { 641 | "box" : { 642 | "id" : "obj-10", 643 | "maxclass" : "newobj", 644 | "numinlets" : 4, 645 | "numoutlets" : 1, 646 | "outlettype" : [ "" ], 647 | "patching_rect" : [ 30.0, 240.0, 50.5, 22.0 ], 648 | "text" : "join 4" 649 | } 650 | 651 | } 652 | , { 653 | "box" : { 654 | "id" : "obj-8", 655 | "maxclass" : "newobj", 656 | "numinlets" : 1, 657 | "numoutlets" : 5, 658 | "outlettype" : [ "", "", "", "", "" ], 659 | "patching_rect" : [ 30.0, 180.0, 61.0, 22.0 ], 660 | "text" : "unjoin 4" 661 | } 662 | 663 | } 664 | , { 665 | "box" : { 666 | "id" : "obj-6", 667 | "maxclass" : "newobj", 668 | "numinlets" : 1, 669 | "numoutlets" : 3, 670 | "outlettype" : [ "bang", "int", "int" ], 671 | "patching_rect" : [ 150.0, 40.0, 99.0, 22.0 ], 672 | "text" : "live.thisdevice" 673 | } 674 | 675 | } 676 | , { 677 | "box" : { 678 | "id" : "obj-5", 679 | "maxclass" : "newobj", 680 | "numinlets" : 2, 681 | "numoutlets" : 1, 682 | "outlettype" : [ "float" ], 683 | "patching_rect" : [ 61.5, 210.0, 31.5, 22.0 ], 684 | "text" : "* 1." 685 | } 686 | 687 | } 688 | , { 689 | "box" : { 690 | "id" : "obj-4", 691 | "maxclass" : "newobj", 692 | "numinlets" : 2, 693 | "numoutlets" : 2, 694 | "outlettype" : [ "", "" ], 695 | "patching_rect" : [ 30.0, 130.0, 139.0, 22.0 ], 696 | "text" : "route control_text_bg" 697 | } 698 | 699 | } 700 | , { 701 | "box" : { 702 | "id" : "obj-3", 703 | "maxclass" : "newobj", 704 | "numinlets" : 1, 705 | "numoutlets" : 1, 706 | "outlettype" : [ "" ], 707 | "patching_rect" : [ 30.0, 270.0, 109.0, 22.0 ], 708 | "text" : "prepend bgfillcolor" 709 | } 710 | 711 | } 712 | , { 713 | "box" : { 714 | "id" : "obj-1", 715 | "linecount" : 3, 716 | "maxclass" : "newobj", 717 | "numinlets" : 2, 718 | "numoutlets" : 2, 719 | "outlettype" : [ "", "" ], 720 | "patching_rect" : [ 150.0, 240.0, 92.0, 49.0 ], 721 | "text" : "substitute contrast_frame bordercolor" 722 | } 723 | 724 | } 725 | , { 726 | "box" : { 727 | "id" : "obj-38", 728 | "linecount" : 2, 729 | "maxclass" : "message", 730 | "numinlets" : 2, 731 | "numoutlets" : 1, 732 | "outlettype" : [ "" ], 733 | "patching_rect" : [ 30.0, 40.0, 100.0, 35.0 ], 734 | "text" : "control_text_bg, contrast_frame" 735 | } 736 | 737 | } 738 | , { 739 | "box" : { 740 | "id" : "obj-30", 741 | "maxclass" : "newobj", 742 | "numinlets" : 1, 743 | "numoutlets" : 2, 744 | "outlettype" : [ "", "bang" ], 745 | "patching_rect" : [ 30.0, 90.0, 64.0, 22.0 ], 746 | "text" : "live.colors" 747 | } 748 | 749 | } 750 | , { 751 | "box" : { 752 | "id" : "obj-2", 753 | "maxclass" : "comment", 754 | "numinlets" : 1, 755 | "numoutlets" : 0, 756 | "patching_rect" : [ 70.0, 350.0, 41.0, 20.0 ], 757 | "text" : "Panel" 758 | } 759 | 760 | } 761 | , { 762 | "box" : { 763 | "comment" : "", 764 | "id" : "obj-39", 765 | "index" : 1, 766 | "maxclass" : "outlet", 767 | "numinlets" : 1, 768 | "numoutlets" : 0, 769 | "patching_rect" : [ 30.0, 340.0, 30.0, 30.0 ] 770 | } 771 | 772 | } 773 | ], 774 | "lines" : [ { 775 | "patchline" : { 776 | "destination" : [ "obj-39", 0 ], 777 | "source" : [ "obj-1", 0 ] 778 | } 779 | 780 | } 781 | , { 782 | "patchline" : { 783 | "destination" : [ "obj-3", 0 ], 784 | "source" : [ "obj-10", 0 ] 785 | } 786 | 787 | } 788 | , { 789 | "patchline" : { 790 | "destination" : [ "obj-38", 0 ], 791 | "source" : [ "obj-15", 0 ] 792 | } 793 | 794 | } 795 | , { 796 | "patchline" : { 797 | "destination" : [ "obj-5", 1 ], 798 | "source" : [ "obj-15", 1 ] 799 | } 800 | 801 | } 802 | , { 803 | "patchline" : { 804 | "destination" : [ "obj-39", 0 ], 805 | "source" : [ "obj-3", 0 ] 806 | } 807 | 808 | } 809 | , { 810 | "patchline" : { 811 | "destination" : [ "obj-38", 0 ], 812 | "source" : [ "obj-30", 1 ] 813 | } 814 | 815 | } 816 | , { 817 | "patchline" : { 818 | "destination" : [ "obj-4", 0 ], 819 | "source" : [ "obj-30", 0 ] 820 | } 821 | 822 | } 823 | , { 824 | "patchline" : { 825 | "destination" : [ "obj-30", 0 ], 826 | "source" : [ "obj-38", 0 ] 827 | } 828 | 829 | } 830 | , { 831 | "patchline" : { 832 | "destination" : [ "obj-1", 0 ], 833 | "source" : [ "obj-4", 1 ] 834 | } 835 | 836 | } 837 | , { 838 | "patchline" : { 839 | "destination" : [ "obj-8", 0 ], 840 | "source" : [ "obj-4", 0 ] 841 | } 842 | 843 | } 844 | , { 845 | "patchline" : { 846 | "destination" : [ "obj-10", 3 ], 847 | "source" : [ "obj-5", 0 ] 848 | } 849 | 850 | } 851 | , { 852 | "patchline" : { 853 | "destination" : [ "obj-15", 0 ], 854 | "source" : [ "obj-6", 1 ] 855 | } 856 | 857 | } 858 | , { 859 | "patchline" : { 860 | "destination" : [ "obj-10", 2 ], 861 | "source" : [ "obj-8", 2 ] 862 | } 863 | 864 | } 865 | , { 866 | "patchline" : { 867 | "destination" : [ "obj-10", 1 ], 868 | "source" : [ "obj-8", 1 ] 869 | } 870 | 871 | } 872 | , { 873 | "patchline" : { 874 | "destination" : [ "obj-10", 0 ], 875 | "source" : [ "obj-8", 0 ] 876 | } 877 | 878 | } 879 | , { 880 | "patchline" : { 881 | "destination" : [ "obj-5", 0 ], 882 | "source" : [ "obj-8", 3 ] 883 | } 884 | 885 | } 886 | ], 887 | "originid" : "pat-676", 888 | "styles" : [ { 889 | "name" : "AudioStatus_Menu", 890 | "default" : { 891 | "bgfillcolor" : { 892 | "angle" : 270.0, 893 | "autogradient" : 0, 894 | "color" : [ 0.294118, 0.313726, 0.337255, 1 ], 895 | "color1" : [ 0.454902, 0.462745, 0.482353, 0.0 ], 896 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 897 | "proportion" : 0.39, 898 | "type" : "color" 899 | } 900 | 901 | } 902 | , 903 | "parentstyle" : "", 904 | "multi" : 0 905 | } 906 | , { 907 | "name" : "Audiomix", 908 | "default" : { 909 | "bgfillcolor" : { 910 | "angle" : 270.0, 911 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 912 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 913 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 914 | "proportion" : 0.39, 915 | "type" : "gradient" 916 | } 917 | 918 | } 919 | , 920 | "parentstyle" : "", 921 | "multi" : 0 922 | } 923 | , { 924 | "name" : "Default M4L", 925 | "default" : { 926 | "fontname" : [ "Arial Bold" ], 927 | "fontsize" : [ 11.0 ], 928 | "patchlinecolor" : [ 0.290196, 0.309804, 0.301961, 0.85 ] 929 | } 930 | , 931 | "parentstyle" : "", 932 | "multi" : 0 933 | } 934 | , { 935 | "name" : "Default M4L Poletti", 936 | "default" : { 937 | "fontname" : [ "Arial Bold" ], 938 | "fontsize" : [ 10.0 ], 939 | "patchlinecolor" : [ 0.290196, 0.309804, 0.301961, 0.85 ] 940 | } 941 | , 942 | "parentstyle" : "", 943 | "multi" : 0 944 | } 945 | , { 946 | "name" : "Default M4L-1", 947 | "default" : { 948 | "bgfillcolor" : { 949 | "angle" : 270.0, 950 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 951 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 952 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 953 | "proportion" : 0.39, 954 | "type" : "gradient" 955 | } 956 | , 957 | "fontface" : [ 1 ], 958 | "fontname" : [ "Arial" ], 959 | "fontsize" : [ 11.0 ] 960 | } 961 | , 962 | "parentstyle" : "", 963 | "multi" : 0 964 | } 965 | , { 966 | "name" : "Default Max7 Poletti", 967 | "default" : { 968 | "bgfillcolor" : { 969 | "angle" : 270.0, 970 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 971 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 972 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 973 | "proportion" : 0.39, 974 | "type" : "gradient" 975 | } 976 | 977 | } 978 | , 979 | "parentstyle" : "", 980 | "multi" : 0 981 | } 982 | , { 983 | "name" : "M4L 10 Bold", 984 | "default" : { 985 | "fontface" : [ 1 ], 986 | "fontsize" : [ 10.0 ], 987 | "patchlinecolor" : [ 0.0, 0.0, 0.0, 0.25 ] 988 | } 989 | , 990 | "parentstyle" : "", 991 | "multi" : 0 992 | } 993 | , { 994 | "name" : "Max 12 Regular", 995 | "parentstyle" : "", 996 | "multi" : 0 997 | } 998 | , { 999 | "name" : "Max 12 Regular-1", 1000 | "default" : { 1001 | "bgfillcolor" : { 1002 | "angle" : 270.0, 1003 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1004 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1005 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1006 | "proportion" : 0.39, 1007 | "type" : "gradient" 1008 | } 1009 | 1010 | } 1011 | , 1012 | "parentstyle" : "", 1013 | "multi" : 0 1014 | } 1015 | , { 1016 | "name" : "Max 12 Regular-1-1", 1017 | "parentstyle" : "", 1018 | "multi" : 0 1019 | } 1020 | , { 1021 | "name" : "Max 12 Regular-1-1-1", 1022 | "default" : { 1023 | "bgfillcolor" : { 1024 | "angle" : 270.0, 1025 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1026 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1027 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1028 | "proportion" : 0.39, 1029 | "type" : "gradient" 1030 | } 1031 | 1032 | } 1033 | , 1034 | "parentstyle" : "", 1035 | "multi" : 0 1036 | } 1037 | , { 1038 | "name" : "Max 12 Regular-1-1-1-1", 1039 | "parentstyle" : "", 1040 | "multi" : 0 1041 | } 1042 | , { 1043 | "name" : "Max 12 Regular-1-1-1-1-1", 1044 | "default" : { 1045 | "bgfillcolor" : { 1046 | "angle" : 270.0, 1047 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1048 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1049 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1050 | "proportion" : 0.39, 1051 | "type" : "gradient" 1052 | } 1053 | 1054 | } 1055 | , 1056 | "parentstyle" : "", 1057 | "multi" : 0 1058 | } 1059 | , { 1060 | "name" : "Max 12 Regular-1-1-1-2", 1061 | "default" : { 1062 | "bgfillcolor" : { 1063 | "angle" : 270.0, 1064 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1065 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1066 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1067 | "proportion" : 0.39, 1068 | "type" : "gradient" 1069 | } 1070 | 1071 | } 1072 | , 1073 | "parentstyle" : "", 1074 | "multi" : 0 1075 | } 1076 | , { 1077 | "name" : "Max 12 Regular-1-1-2", 1078 | "default" : { 1079 | "bgfillcolor" : { 1080 | "angle" : 270.0, 1081 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1082 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1083 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1084 | "proportion" : 0.39, 1085 | "type" : "gradient" 1086 | } 1087 | 1088 | } 1089 | , 1090 | "parentstyle" : "", 1091 | "multi" : 0 1092 | } 1093 | , { 1094 | "name" : "Max 12 Regular-1-1-3", 1095 | "default" : { 1096 | "bgfillcolor" : { 1097 | "angle" : 270.0, 1098 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1099 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1100 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1101 | "proportion" : 0.39, 1102 | "type" : "gradient" 1103 | } 1104 | 1105 | } 1106 | , 1107 | "parentstyle" : "", 1108 | "multi" : 0 1109 | } 1110 | , { 1111 | "name" : "Max 12 Regular-1-1-4", 1112 | "parentstyle" : "", 1113 | "multi" : 0 1114 | } 1115 | , { 1116 | "name" : "Max 12 Regular-1-2", 1117 | "default" : { 1118 | "bgfillcolor" : { 1119 | "angle" : 270.0, 1120 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1121 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1122 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1123 | "proportion" : 0.39, 1124 | "type" : "gradient" 1125 | } 1126 | 1127 | } 1128 | , 1129 | "parentstyle" : "", 1130 | "multi" : 0 1131 | } 1132 | , { 1133 | "name" : "Max 12 Regular-1-2-1", 1134 | "parentstyle" : "", 1135 | "multi" : 0 1136 | } 1137 | , { 1138 | "name" : "Max 12 Regular-1-2-2", 1139 | "parentstyle" : "", 1140 | "multi" : 0 1141 | } 1142 | , { 1143 | "name" : "Max 12 Regular-1-3", 1144 | "parentstyle" : "", 1145 | "multi" : 0 1146 | } 1147 | , { 1148 | "name" : "Max 12 Regular-1-4", 1149 | "default" : { 1150 | "bgfillcolor" : { 1151 | "angle" : 270.0, 1152 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1153 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1154 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1155 | "proportion" : 0.39, 1156 | "type" : "gradient" 1157 | } 1158 | 1159 | } 1160 | , 1161 | "parentstyle" : "", 1162 | "multi" : 0 1163 | } 1164 | , { 1165 | "name" : "Max 12 Regular-2", 1166 | "default" : { 1167 | "bgfillcolor" : { 1168 | "angle" : 270.0, 1169 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1170 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1171 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1172 | "proportion" : 0.39, 1173 | "type" : "gradient" 1174 | } 1175 | 1176 | } 1177 | , 1178 | "parentstyle" : "", 1179 | "multi" : 0 1180 | } 1181 | , { 1182 | "name" : "Max 12 Regular-3", 1183 | "default" : { 1184 | "bgfillcolor" : { 1185 | "angle" : 270.0, 1186 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1187 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1188 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1189 | "proportion" : 0.39, 1190 | "type" : "gradient" 1191 | } 1192 | 1193 | } 1194 | , 1195 | "parentstyle" : "", 1196 | "multi" : 0 1197 | } 1198 | , { 1199 | "name" : "Max 12 Regular-4", 1200 | "parentstyle" : "", 1201 | "multi" : 0 1202 | } 1203 | , { 1204 | "name" : "Max 12 Regular-4-1", 1205 | "default" : { 1206 | "bgfillcolor" : { 1207 | "angle" : 270.0, 1208 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1209 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1210 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1211 | "proportion" : 0.39, 1212 | "type" : "gradient" 1213 | } 1214 | 1215 | } 1216 | , 1217 | "parentstyle" : "", 1218 | "multi" : 0 1219 | } 1220 | , { 1221 | "name" : "Max 12 Regular-4-2", 1222 | "default" : { 1223 | "bgfillcolor" : { 1224 | "angle" : 270.0, 1225 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1226 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1227 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1228 | "proportion" : 0.39, 1229 | "type" : "gradient" 1230 | } 1231 | 1232 | } 1233 | , 1234 | "parentstyle" : "", 1235 | "multi" : 0 1236 | } 1237 | , { 1238 | "name" : "Max 12 Regular-5", 1239 | "default" : { 1240 | "bgfillcolor" : { 1241 | "angle" : 270.0, 1242 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1243 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1244 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1245 | "proportion" : 0.39, 1246 | "type" : "gradient" 1247 | } 1248 | 1249 | } 1250 | , 1251 | "parentstyle" : "", 1252 | "multi" : 0 1253 | } 1254 | , { 1255 | "name" : "Max 12 Regular-6", 1256 | "parentstyle" : "", 1257 | "multi" : 0 1258 | } 1259 | , { 1260 | "name" : "Max For Live", 1261 | "default" : { 1262 | "patchlinecolor" : [ 0.239216, 0.254902, 0.278431, 0.631373 ] 1263 | } 1264 | , 1265 | "parentstyle" : "", 1266 | "multi" : 0 1267 | } 1268 | , { 1269 | "name" : "stb001", 1270 | "default" : { 1271 | "fontface" : [ 1 ], 1272 | "fontname" : [ "Arial Bold" ], 1273 | "fontsize" : [ 10.0 ] 1274 | } 1275 | , 1276 | "parentstyle" : "", 1277 | "multi" : 0 1278 | } 1279 | , { 1280 | "name" : "tap", 1281 | "default" : { 1282 | "fontname" : [ "Lato Light" ] 1283 | } 1284 | , 1285 | "parentstyle" : "", 1286 | "multi" : 0 1287 | } 1288 | ] 1289 | } 1290 | , 1291 | "patching_rect" : [ 530.0, 370.0, 49.0, 22.0 ], 1292 | "saved_object_attributes" : { 1293 | "globalpatchername" : "", 1294 | "style" : "Max For Live" 1295 | } 1296 | , 1297 | "text" : "p Color" 1298 | } 1299 | 1300 | } 1301 | , { 1302 | "box" : { 1303 | "fontname" : "Arial", 1304 | "fontsize" : 12.0, 1305 | "id" : "obj-1", 1306 | "maxclass" : "newobj", 1307 | "numinlets" : 1, 1308 | "numoutlets" : 1, 1309 | "outlettype" : [ "" ], 1310 | "patching_rect" : [ 390.0, 260.0, 56.0, 22.0 ], 1311 | "text" : "deferlow" 1312 | } 1313 | 1314 | } 1315 | , { 1316 | "box" : { 1317 | "fontface" : 1, 1318 | "fontname" : "Arial", 1319 | "fontsize" : 12.0, 1320 | "id" : "obj-43", 1321 | "maxclass" : "comment", 1322 | "numinlets" : 1, 1323 | "numoutlets" : 0, 1324 | "patching_rect" : [ 200.0, 26.0, 282.0, 20.0 ], 1325 | "prototypename" : "M4L.patcher-summary", 1326 | "text" : "Route signal to/from a multichannel M4L device" 1327 | } 1328 | 1329 | } 1330 | , { 1331 | "box" : { 1332 | "fontface" : 1, 1333 | "fontname" : "Arial", 1334 | "fontsize" : 18.0, 1335 | "id" : "obj-33", 1336 | "maxclass" : "comment", 1337 | "numinlets" : 1, 1338 | "numoutlets" : 0, 1339 | "patching_rect" : [ 50.0, 20.0, 143.0, 27.0 ], 1340 | "prototypename" : "M4L.subpatcher-title", 1341 | "text" : "BrowseRouting" 1342 | } 1343 | 1344 | } 1345 | , { 1346 | "box" : { 1347 | "id" : "obj-16", 1348 | "linecount" : 2, 1349 | "maxclass" : "comment", 1350 | "numinlets" : 1, 1351 | "numoutlets" : 0, 1352 | "patching_rect" : [ 50.0, 90.0, 540.0, 33.0 ], 1353 | "text" : "Arguments: type - audio_inputs or audio_outputs - stereo input or output index (1 for in/outputs 1-2, 2 for in/outputs 3-4, etc), available according to plugin~ or plugout~ arguments in the parent device" 1354 | } 1355 | 1356 | } 1357 | , { 1358 | "box" : { 1359 | "id" : "obj-15", 1360 | "linecount" : 2, 1361 | "maxclass" : "comment", 1362 | "numinlets" : 1, 1363 | "numoutlets" : 0, 1364 | "patching_rect" : [ 50.0, 50.0, 570.0, 33.0 ], 1365 | "text" : "A utility that lists available tracks in the current Live set to send audio to or receive audio from, depending on the chosen type (inpiuts or outputs) - to be used inside a multichannel Max For Live device." 1366 | } 1367 | 1368 | } 1369 | , { 1370 | "box" : { 1371 | "color" : [ 0.941176, 0.690196, 0.196078, 1.0 ], 1372 | "fontname" : "Arial", 1373 | "fontsize" : 12.0, 1374 | "id" : "obj-6", 1375 | "maxclass" : "newobj", 1376 | "numinlets" : 1, 1377 | "numoutlets" : 3, 1378 | "outlettype" : [ "bang", "int", "int" ], 1379 | "patching_rect" : [ 530.0, 150.0, 85.0, 22.0 ], 1380 | "text" : "live.thisdevice" 1381 | } 1382 | 1383 | } 1384 | , { 1385 | "box" : { 1386 | "fontname" : "Arial", 1387 | "fontsize" : 12.0, 1388 | "id" : "obj-26", 1389 | "maxclass" : "newobj", 1390 | "numinlets" : 1, 1391 | "numoutlets" : 3, 1392 | "outlettype" : [ "", "", "" ], 1393 | "patching_rect" : [ 90.0, 167.0, 43.0, 22.0 ], 1394 | "text" : "unjoin" 1395 | } 1396 | 1397 | } 1398 | , { 1399 | "box" : { 1400 | "id" : "obj-21", 1401 | "maxclass" : "message", 1402 | "numinlets" : 2, 1403 | "numoutlets" : 1, 1404 | "outlettype" : [ "" ], 1405 | "patching_rect" : [ 190.0, 240.0, 37.0, 22.0 ], 1406 | "text" : "Input" 1407 | } 1408 | 1409 | } 1410 | , { 1411 | "box" : { 1412 | "fontname" : "Arial", 1413 | "fontsize" : 12.0, 1414 | "id" : "obj-20", 1415 | "maxclass" : "message", 1416 | "numinlets" : 2, 1417 | "numoutlets" : 1, 1418 | "outlettype" : [ "" ], 1419 | "patching_rect" : [ 90.0, 240.0, 47.0, 22.0 ], 1420 | "text" : "Output" 1421 | } 1422 | 1423 | } 1424 | , { 1425 | "box" : { 1426 | "fontname" : "Arial", 1427 | "fontsize" : 12.0, 1428 | "id" : "obj-14", 1429 | "maxclass" : "newobj", 1430 | "numinlets" : 2, 1431 | "numoutlets" : 2, 1432 | "outlettype" : [ "bang", "" ], 1433 | "patching_rect" : [ 90.0, 210.0, 119.0, 22.0 ], 1434 | "text" : "select audio_outputs" 1435 | } 1436 | 1437 | } 1438 | , { 1439 | "box" : { 1440 | "fontname" : "Arial", 1441 | "fontsize" : 12.0, 1442 | "id" : "obj-12", 1443 | "maxclass" : "newobj", 1444 | "numinlets" : 1, 1445 | "numoutlets" : 1, 1446 | "outlettype" : [ "" ], 1447 | "patching_rect" : [ 90.0, 140.0, 95.0, 22.0 ], 1448 | "text" : "loadmess #1 #2" 1449 | } 1450 | 1451 | } 1452 | , { 1453 | "box" : { 1454 | "fontname" : "Ableton Sans Medium", 1455 | "fontsize" : 9.5, 1456 | "id" : "obj-13", 1457 | "maxclass" : "comment", 1458 | "numinlets" : 1, 1459 | "numoutlets" : 0, 1460 | "patching_rect" : [ 190.0, 330.0, 64.0, 18.0 ], 1461 | "presentation" : 1, 1462 | "presentation_rect" : [ 0.0, 0.0, 75.0, 18.0 ], 1463 | "text" : "Input 0/0", 1464 | "textcolor" : [ 0.0, 0.0, 0.0, 1.0 ], 1465 | "textjustification" : 1 1466 | } 1467 | 1468 | } 1469 | , { 1470 | "box" : { 1471 | "fontname" : "Arial", 1472 | "fontsize" : 12.0, 1473 | "id" : "obj-11", 1474 | "maxclass" : "newobj", 1475 | "numinlets" : 3, 1476 | "numoutlets" : 1, 1477 | "outlettype" : [ "" ], 1478 | "patching_rect" : [ 190.0, 290.0, 139.0, 22.0 ], 1479 | "text" : "sprintf set %s %d/%d" 1480 | } 1481 | 1482 | } 1483 | , { 1484 | "box" : { 1485 | "fontname" : "Arial", 1486 | "fontsize" : 12.0, 1487 | "id" : "obj-10", 1488 | "maxclass" : "newobj", 1489 | "numinlets" : 2, 1490 | "numoutlets" : 1, 1491 | "outlettype" : [ "int" ], 1492 | "patching_rect" : [ 250.0, 240.0, 29.5, 22.0 ], 1493 | "text" : "- 1" 1494 | } 1495 | 1496 | } 1497 | , { 1498 | "box" : { 1499 | "fontname" : "Arial", 1500 | "fontsize" : 12.0, 1501 | "id" : "obj-9", 1502 | "maxclass" : "newobj", 1503 | "numinlets" : 2, 1504 | "numoutlets" : 1, 1505 | "outlettype" : [ "int" ], 1506 | "patching_rect" : [ 310.0, 240.0, 29.5, 22.0 ], 1507 | "text" : "* 2" 1508 | } 1509 | 1510 | } 1511 | , { 1512 | "box" : { 1513 | "fontname" : "Arial", 1514 | "fontsize" : 12.0, 1515 | "id" : "obj-18", 1516 | "maxclass" : "newobj", 1517 | "numinlets" : 2, 1518 | "numoutlets" : 1, 1519 | "outlettype" : [ "" ], 1520 | "patching_rect" : [ 120.0, 410.0, 339.0, 22.0 ], 1521 | "text" : "device.routing.list available_routing_channels routing_channel" 1522 | } 1523 | 1524 | } 1525 | , { 1526 | "box" : { 1527 | "fontname" : "Arial", 1528 | "fontsize" : 12.0, 1529 | "id" : "obj-17", 1530 | "maxclass" : "newobj", 1531 | "numinlets" : 2, 1532 | "numoutlets" : 1, 1533 | "outlettype" : [ "" ], 1534 | "patching_rect" : [ 120.0, 370.0, 300.0, 22.0 ], 1535 | "text" : "device.routing.list available_routing_types routing_type" 1536 | } 1537 | 1538 | } 1539 | , { 1540 | "box" : { 1541 | "fontname" : "Arial", 1542 | "fontsize" : 12.0, 1543 | "id" : "obj-8", 1544 | "maxclass" : "message", 1545 | "numinlets" : 2, 1546 | "numoutlets" : 1, 1547 | "outlettype" : [ "" ], 1548 | "patching_rect" : [ 430.0, 370.0, 37.0, 22.0 ], 1549 | "text" : "id $1" 1550 | } 1551 | 1552 | } 1553 | , { 1554 | "box" : { 1555 | "fontname" : "Arial", 1556 | "fontsize" : 12.0, 1557 | "id" : "obj-5", 1558 | "maxclass" : "newobj", 1559 | "numinlets" : 2, 1560 | "numoutlets" : 2, 1561 | "outlettype" : [ "", "" ], 1562 | "patching_rect" : [ 430.0, 320.0, 56.0, 22.0 ], 1563 | "text" : "zl nth #2" 1564 | } 1565 | 1566 | } 1567 | , { 1568 | "box" : { 1569 | "fontname" : "Arial", 1570 | "fontsize" : 12.0, 1571 | "id" : "obj-4", 1572 | "maxclass" : "newobj", 1573 | "numinlets" : 2, 1574 | "numoutlets" : 2, 1575 | "outlettype" : [ "", "" ], 1576 | "patching_rect" : [ 390.0, 290.0, 59.0, 22.0 ], 1577 | "text" : "zl delace" 1578 | } 1579 | 1580 | } 1581 | , { 1582 | "box" : { 1583 | "color" : [ 0.941176, 0.690196, 0.196078, 1.0 ], 1584 | "fontname" : "Arial", 1585 | "fontsize" : 12.0, 1586 | "id" : "obj-2", 1587 | "maxclass" : "newobj", 1588 | "numinlets" : 2, 1589 | "numoutlets" : 2, 1590 | "outlettype" : [ "", "" ], 1591 | "patching_rect" : [ 390.0, 230.0, 159.0, 22.0 ], 1592 | "saved_object_attributes" : { 1593 | "_persistence" : 1 1594 | } 1595 | , 1596 | "text" : "live.observer #1" 1597 | } 1598 | 1599 | } 1600 | , { 1601 | "box" : { 1602 | "color" : [ 0.941176, 0.690196, 0.196078, 1.0 ], 1603 | "fontname" : "Arial", 1604 | "fontsize" : 12.0, 1605 | "id" : "obj-3", 1606 | "linecount" : 2, 1607 | "maxclass" : "newobj", 1608 | "numinlets" : 1, 1609 | "numoutlets" : 3, 1610 | "outlettype" : [ "", "", "" ], 1611 | "patching_rect" : [ 530.0, 180.0, 101.0, 35.0 ], 1612 | "text" : "live.path live_set this_device" 1613 | } 1614 | 1615 | } 1616 | , { 1617 | "box" : { 1618 | "allowdrag" : 0, 1619 | "annotation" : "Selects a target track or hardware I/O.", 1620 | "bgcolor" : [ 1.0, 1.0, 1.0, 0.0 ], 1621 | "bgfillcolor_angle" : 270.0, 1622 | "bgfillcolor_autogradient" : 0, 1623 | "bgfillcolor_color" : [ 1.0, 1.0, 1.0, 0.0 ], 1624 | "bgfillcolor_color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1625 | "bgfillcolor_color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1626 | "bgfillcolor_proportion" : 0.39, 1627 | "bgfillcolor_type" : "color", 1628 | "fontname" : "Ableton Sans Medium Regular", 1629 | "fontsize" : 9.5, 1630 | "hint" : "", 1631 | "id" : "obj-115", 1632 | "items" : "", 1633 | "maxclass" : "umenu", 1634 | "numinlets" : 1, 1635 | "numoutlets" : 3, 1636 | "outlettype" : [ "int", "", "" ], 1637 | "parameter_enable" : 0, 1638 | "patching_rect" : [ 30.0, 370.0, 80.0, 20.0 ], 1639 | "presentation" : 1, 1640 | "presentation_rect" : [ 0.0, 14.0, 60.0, 20.0 ], 1641 | "textcolor" : [ 0.0, 0.0, 0.0, 1.0 ] 1642 | } 1643 | 1644 | } 1645 | , { 1646 | "box" : { 1647 | "allowdrag" : 0, 1648 | "annotation" : "Selects an insertion point in the selected track or hardware I/O.", 1649 | "bgcolor" : [ 1.0, 1.0, 1.0, 0.0 ], 1650 | "bgfillcolor_angle" : 270.0, 1651 | "bgfillcolor_autogradient" : 0, 1652 | "bgfillcolor_color" : [ 1.0, 1.0, 1.0, 0.0 ], 1653 | "bgfillcolor_color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1654 | "bgfillcolor_color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1655 | "bgfillcolor_proportion" : 0.39, 1656 | "bgfillcolor_type" : "color", 1657 | "fontname" : "Ableton Sans Medium Regular", 1658 | "fontsize" : 9.5, 1659 | "hint" : "", 1660 | "id" : "obj-27", 1661 | "items" : "", 1662 | "maxclass" : "umenu", 1663 | "numinlets" : 1, 1664 | "numoutlets" : 3, 1665 | "outlettype" : [ "int", "", "" ], 1666 | "parameter_enable" : 0, 1667 | "patching_rect" : [ 30.0, 410.0, 80.0, 20.0 ], 1668 | "presentation" : 1, 1669 | "presentation_rect" : [ 0.0, 29.0, 60.0, 20.0 ], 1670 | "textcolor" : [ 0.0, 0.0, 0.0, 1.0 ] 1671 | } 1672 | 1673 | } 1674 | , { 1675 | "box" : { 1676 | "angle" : 0.0, 1677 | "annotation" : "Select an item.", 1678 | "bgcolor" : [ 0.764706, 0.764706, 0.764706, 1.0 ], 1679 | "border" : 1, 1680 | "bordercolor" : [ 0.0, 0.0, 0.0, 1.0 ], 1681 | "id" : "obj-28", 1682 | "maxclass" : "panel", 1683 | "mode" : 0, 1684 | "numinlets" : 1, 1685 | "numoutlets" : 0, 1686 | "patching_rect" : [ 560.0, 410.0, 20.0, 20.0 ], 1687 | "presentation" : 1, 1688 | "presentation_rect" : [ 0.0, 31.0, 60.0, 14.0 ], 1689 | "proportion" : 0.39, 1690 | "rounded" : 0 1691 | } 1692 | 1693 | } 1694 | , { 1695 | "box" : { 1696 | "angle" : 0.0, 1697 | "annotation" : "Select an item.", 1698 | "bgcolor" : [ 0.764706, 0.764706, 0.764706, 1.0 ], 1699 | "border" : 1, 1700 | "bordercolor" : [ 0.0, 0.0, 0.0, 1.0 ], 1701 | "id" : "obj-113", 1702 | "maxclass" : "panel", 1703 | "mode" : 0, 1704 | "numinlets" : 1, 1705 | "numoutlets" : 0, 1706 | "patching_rect" : [ 530.0, 410.0, 20.0, 20.0 ], 1707 | "presentation" : 1, 1708 | "presentation_rect" : [ 0.0, 16.0, 60.0, 14.0 ], 1709 | "proportion" : 0.39, 1710 | "rounded" : 0 1711 | } 1712 | 1713 | } 1714 | ], 1715 | "lines" : [ { 1716 | "patchline" : { 1717 | "destination" : [ "obj-4", 0 ], 1718 | "source" : [ "obj-1", 0 ] 1719 | } 1720 | 1721 | } 1722 | , { 1723 | "patchline" : { 1724 | "destination" : [ "obj-11", 1 ], 1725 | "source" : [ "obj-10", 0 ] 1726 | } 1727 | 1728 | } 1729 | , { 1730 | "patchline" : { 1731 | "destination" : [ "obj-13", 0 ], 1732 | "source" : [ "obj-11", 0 ] 1733 | } 1734 | 1735 | } 1736 | , { 1737 | "patchline" : { 1738 | "destination" : [ "obj-17", 0 ], 1739 | "source" : [ "obj-115", 0 ] 1740 | } 1741 | 1742 | } 1743 | , { 1744 | "patchline" : { 1745 | "destination" : [ "obj-26", 0 ], 1746 | "source" : [ "obj-12", 0 ] 1747 | } 1748 | 1749 | } 1750 | , { 1751 | "patchline" : { 1752 | "destination" : [ "obj-20", 0 ], 1753 | "source" : [ "obj-14", 0 ] 1754 | } 1755 | 1756 | } 1757 | , { 1758 | "patchline" : { 1759 | "destination" : [ "obj-21", 0 ], 1760 | "source" : [ "obj-14", 1 ] 1761 | } 1762 | 1763 | } 1764 | , { 1765 | "patchline" : { 1766 | "destination" : [ "obj-115", 0 ], 1767 | "source" : [ "obj-17", 0 ] 1768 | } 1769 | 1770 | } 1771 | , { 1772 | "patchline" : { 1773 | "destination" : [ "obj-27", 0 ], 1774 | "source" : [ "obj-18", 0 ] 1775 | } 1776 | 1777 | } 1778 | , { 1779 | "patchline" : { 1780 | "destination" : [ "obj-9", 0 ], 1781 | "source" : [ "obj-19", 0 ] 1782 | } 1783 | 1784 | } 1785 | , { 1786 | "patchline" : { 1787 | "destination" : [ "obj-1", 0 ], 1788 | "source" : [ "obj-2", 0 ] 1789 | } 1790 | 1791 | } 1792 | , { 1793 | "patchline" : { 1794 | "destination" : [ "obj-11", 0 ], 1795 | "source" : [ "obj-20", 0 ] 1796 | } 1797 | 1798 | } 1799 | , { 1800 | "patchline" : { 1801 | "destination" : [ "obj-11", 0 ], 1802 | "source" : [ "obj-21", 0 ] 1803 | } 1804 | 1805 | } 1806 | , { 1807 | "patchline" : { 1808 | "destination" : [ "obj-115", 0 ], 1809 | "order" : 2, 1810 | "source" : [ "obj-24", 0 ] 1811 | } 1812 | 1813 | } 1814 | , { 1815 | "patchline" : { 1816 | "destination" : [ "obj-13", 0 ], 1817 | "order" : 0, 1818 | "source" : [ "obj-24", 0 ] 1819 | } 1820 | 1821 | } 1822 | , { 1823 | "patchline" : { 1824 | "destination" : [ "obj-27", 0 ], 1825 | "order" : 1, 1826 | "source" : [ "obj-24", 0 ] 1827 | } 1828 | 1829 | } 1830 | , { 1831 | "patchline" : { 1832 | "destination" : [ "obj-14", 0 ], 1833 | "source" : [ "obj-26", 0 ] 1834 | } 1835 | 1836 | } 1837 | , { 1838 | "patchline" : { 1839 | "destination" : [ "obj-19", 0 ], 1840 | "source" : [ "obj-26", 1 ] 1841 | } 1842 | 1843 | } 1844 | , { 1845 | "patchline" : { 1846 | "destination" : [ "obj-18", 0 ], 1847 | "source" : [ "obj-27", 0 ] 1848 | } 1849 | 1850 | } 1851 | , { 1852 | "patchline" : { 1853 | "destination" : [ "obj-2", 1 ], 1854 | "source" : [ "obj-3", 0 ] 1855 | } 1856 | 1857 | } 1858 | , { 1859 | "patchline" : { 1860 | "destination" : [ "obj-113", 0 ], 1861 | "order" : 1, 1862 | "source" : [ "obj-38", 0 ] 1863 | } 1864 | 1865 | } 1866 | , { 1867 | "patchline" : { 1868 | "destination" : [ "obj-28", 0 ], 1869 | "order" : 0, 1870 | "source" : [ "obj-38", 0 ] 1871 | } 1872 | 1873 | } 1874 | , { 1875 | "patchline" : { 1876 | "destination" : [ "obj-5", 0 ], 1877 | "source" : [ "obj-4", 1 ] 1878 | } 1879 | 1880 | } 1881 | , { 1882 | "patchline" : { 1883 | "destination" : [ "obj-8", 0 ], 1884 | "source" : [ "obj-5", 0 ] 1885 | } 1886 | 1887 | } 1888 | , { 1889 | "patchline" : { 1890 | "destination" : [ "obj-3", 0 ], 1891 | "source" : [ "obj-6", 0 ] 1892 | } 1893 | 1894 | } 1895 | , { 1896 | "patchline" : { 1897 | "destination" : [ "obj-17", 1 ], 1898 | "order" : 1, 1899 | "source" : [ "obj-8", 0 ] 1900 | } 1901 | 1902 | } 1903 | , { 1904 | "patchline" : { 1905 | "destination" : [ "obj-18", 1 ], 1906 | "order" : 0, 1907 | "source" : [ "obj-8", 0 ] 1908 | } 1909 | 1910 | } 1911 | , { 1912 | "patchline" : { 1913 | "destination" : [ "obj-10", 0 ], 1914 | "order" : 1, 1915 | "source" : [ "obj-9", 0 ] 1916 | } 1917 | 1918 | } 1919 | , { 1920 | "patchline" : { 1921 | "destination" : [ "obj-11", 2 ], 1922 | "order" : 0, 1923 | "source" : [ "obj-9", 0 ] 1924 | } 1925 | 1926 | } 1927 | ], 1928 | "originid" : "pat-672", 1929 | "dependency_cache" : [ { 1930 | "name" : "device.routing.list.maxpat", 1931 | "bootpath" : "~/Sound/experiments/ravetable", 1932 | "patcherrelativepath" : ".", 1933 | "type" : "JSON", 1934 | "implicit" : 1 1935 | } 1936 | ], 1937 | "autosave" : 0, 1938 | "styles" : [ { 1939 | "name" : "AudioStatus_Menu", 1940 | "default" : { 1941 | "bgfillcolor" : { 1942 | "angle" : 270.0, 1943 | "autogradient" : 0, 1944 | "color" : [ 0.294118, 0.313726, 0.337255, 1 ], 1945 | "color1" : [ 0.454902, 0.462745, 0.482353, 0.0 ], 1946 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1947 | "proportion" : 0.39, 1948 | "type" : "color" 1949 | } 1950 | 1951 | } 1952 | , 1953 | "parentstyle" : "", 1954 | "multi" : 0 1955 | } 1956 | , { 1957 | "name" : "Audiomix", 1958 | "default" : { 1959 | "bgfillcolor" : { 1960 | "angle" : 270.0, 1961 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1962 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 1963 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 1964 | "proportion" : 0.39, 1965 | "type" : "gradient" 1966 | } 1967 | 1968 | } 1969 | , 1970 | "parentstyle" : "", 1971 | "multi" : 0 1972 | } 1973 | , { 1974 | "name" : "Default M4L", 1975 | "default" : { 1976 | "fontname" : [ "Arial Bold" ], 1977 | "fontsize" : [ 11.0 ], 1978 | "patchlinecolor" : [ 0.290196, 0.309804, 0.301961, 0.85 ] 1979 | } 1980 | , 1981 | "parentstyle" : "", 1982 | "multi" : 0 1983 | } 1984 | , { 1985 | "name" : "Default M4L Poletti", 1986 | "default" : { 1987 | "fontname" : [ "Arial Bold" ], 1988 | "fontsize" : [ 10.0 ], 1989 | "patchlinecolor" : [ 0.290196, 0.309804, 0.301961, 0.85 ] 1990 | } 1991 | , 1992 | "parentstyle" : "", 1993 | "multi" : 0 1994 | } 1995 | , { 1996 | "name" : "Default M4L-1", 1997 | "default" : { 1998 | "bgfillcolor" : { 1999 | "angle" : 270.0, 2000 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2001 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 2002 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2003 | "proportion" : 0.39, 2004 | "type" : "gradient" 2005 | } 2006 | , 2007 | "fontface" : [ 1 ], 2008 | "fontname" : [ "Arial" ], 2009 | "fontsize" : [ 11.0 ] 2010 | } 2011 | , 2012 | "parentstyle" : "", 2013 | "multi" : 0 2014 | } 2015 | , { 2016 | "name" : "Default Max7 Poletti", 2017 | "default" : { 2018 | "bgfillcolor" : { 2019 | "angle" : 270.0, 2020 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2021 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 2022 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2023 | "proportion" : 0.39, 2024 | "type" : "gradient" 2025 | } 2026 | 2027 | } 2028 | , 2029 | "parentstyle" : "", 2030 | "multi" : 0 2031 | } 2032 | , { 2033 | "name" : "M4L 10 Bold", 2034 | "default" : { 2035 | "fontface" : [ 1 ], 2036 | "fontsize" : [ 10.0 ], 2037 | "patchlinecolor" : [ 0.0, 0.0, 0.0, 0.25 ] 2038 | } 2039 | , 2040 | "parentstyle" : "", 2041 | "multi" : 0 2042 | } 2043 | , { 2044 | "name" : "Max 12 Regular", 2045 | "parentstyle" : "", 2046 | "multi" : 0 2047 | } 2048 | , { 2049 | "name" : "Max 12 Regular-1", 2050 | "default" : { 2051 | "bgfillcolor" : { 2052 | "angle" : 270.0, 2053 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2054 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 2055 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2056 | "proportion" : 0.39, 2057 | "type" : "gradient" 2058 | } 2059 | 2060 | } 2061 | , 2062 | "parentstyle" : "", 2063 | "multi" : 0 2064 | } 2065 | , { 2066 | "name" : "Max 12 Regular-1-1", 2067 | "parentstyle" : "", 2068 | "multi" : 0 2069 | } 2070 | , { 2071 | "name" : "Max 12 Regular-1-1-1", 2072 | "default" : { 2073 | "bgfillcolor" : { 2074 | "angle" : 270.0, 2075 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2076 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 2077 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2078 | "proportion" : 0.39, 2079 | "type" : "gradient" 2080 | } 2081 | 2082 | } 2083 | , 2084 | "parentstyle" : "", 2085 | "multi" : 0 2086 | } 2087 | , { 2088 | "name" : "Max 12 Regular-1-1-1-1", 2089 | "parentstyle" : "", 2090 | "multi" : 0 2091 | } 2092 | , { 2093 | "name" : "Max 12 Regular-1-1-1-1-1", 2094 | "default" : { 2095 | "bgfillcolor" : { 2096 | "angle" : 270.0, 2097 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2098 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 2099 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2100 | "proportion" : 0.39, 2101 | "type" : "gradient" 2102 | } 2103 | 2104 | } 2105 | , 2106 | "parentstyle" : "", 2107 | "multi" : 0 2108 | } 2109 | , { 2110 | "name" : "Max 12 Regular-1-1-1-2", 2111 | "default" : { 2112 | "bgfillcolor" : { 2113 | "angle" : 270.0, 2114 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2115 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 2116 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2117 | "proportion" : 0.39, 2118 | "type" : "gradient" 2119 | } 2120 | 2121 | } 2122 | , 2123 | "parentstyle" : "", 2124 | "multi" : 0 2125 | } 2126 | , { 2127 | "name" : "Max 12 Regular-1-1-2", 2128 | "default" : { 2129 | "bgfillcolor" : { 2130 | "angle" : 270.0, 2131 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2132 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 2133 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2134 | "proportion" : 0.39, 2135 | "type" : "gradient" 2136 | } 2137 | 2138 | } 2139 | , 2140 | "parentstyle" : "", 2141 | "multi" : 0 2142 | } 2143 | , { 2144 | "name" : "Max 12 Regular-1-1-3", 2145 | "default" : { 2146 | "bgfillcolor" : { 2147 | "angle" : 270.0, 2148 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2149 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 2150 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2151 | "proportion" : 0.39, 2152 | "type" : "gradient" 2153 | } 2154 | 2155 | } 2156 | , 2157 | "parentstyle" : "", 2158 | "multi" : 0 2159 | } 2160 | , { 2161 | "name" : "Max 12 Regular-1-1-4", 2162 | "parentstyle" : "", 2163 | "multi" : 0 2164 | } 2165 | , { 2166 | "name" : "Max 12 Regular-1-2", 2167 | "default" : { 2168 | "bgfillcolor" : { 2169 | "angle" : 270.0, 2170 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2171 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 2172 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2173 | "proportion" : 0.39, 2174 | "type" : "gradient" 2175 | } 2176 | 2177 | } 2178 | , 2179 | "parentstyle" : "", 2180 | "multi" : 0 2181 | } 2182 | , { 2183 | "name" : "Max 12 Regular-1-2-1", 2184 | "parentstyle" : "", 2185 | "multi" : 0 2186 | } 2187 | , { 2188 | "name" : "Max 12 Regular-1-2-2", 2189 | "parentstyle" : "", 2190 | "multi" : 0 2191 | } 2192 | , { 2193 | "name" : "Max 12 Regular-1-3", 2194 | "parentstyle" : "", 2195 | "multi" : 0 2196 | } 2197 | , { 2198 | "name" : "Max 12 Regular-1-4", 2199 | "default" : { 2200 | "bgfillcolor" : { 2201 | "angle" : 270.0, 2202 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2203 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 2204 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2205 | "proportion" : 0.39, 2206 | "type" : "gradient" 2207 | } 2208 | 2209 | } 2210 | , 2211 | "parentstyle" : "", 2212 | "multi" : 0 2213 | } 2214 | , { 2215 | "name" : "Max 12 Regular-2", 2216 | "default" : { 2217 | "bgfillcolor" : { 2218 | "angle" : 270.0, 2219 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2220 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 2221 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2222 | "proportion" : 0.39, 2223 | "type" : "gradient" 2224 | } 2225 | 2226 | } 2227 | , 2228 | "parentstyle" : "", 2229 | "multi" : 0 2230 | } 2231 | , { 2232 | "name" : "Max 12 Regular-3", 2233 | "default" : { 2234 | "bgfillcolor" : { 2235 | "angle" : 270.0, 2236 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2237 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 2238 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2239 | "proportion" : 0.39, 2240 | "type" : "gradient" 2241 | } 2242 | 2243 | } 2244 | , 2245 | "parentstyle" : "", 2246 | "multi" : 0 2247 | } 2248 | , { 2249 | "name" : "Max 12 Regular-4", 2250 | "parentstyle" : "", 2251 | "multi" : 0 2252 | } 2253 | , { 2254 | "name" : "Max 12 Regular-4-1", 2255 | "default" : { 2256 | "bgfillcolor" : { 2257 | "angle" : 270.0, 2258 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2259 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 2260 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2261 | "proportion" : 0.39, 2262 | "type" : "gradient" 2263 | } 2264 | 2265 | } 2266 | , 2267 | "parentstyle" : "", 2268 | "multi" : 0 2269 | } 2270 | , { 2271 | "name" : "Max 12 Regular-4-2", 2272 | "default" : { 2273 | "bgfillcolor" : { 2274 | "angle" : 270.0, 2275 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2276 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 2277 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2278 | "proportion" : 0.39, 2279 | "type" : "gradient" 2280 | } 2281 | 2282 | } 2283 | , 2284 | "parentstyle" : "", 2285 | "multi" : 0 2286 | } 2287 | , { 2288 | "name" : "Max 12 Regular-5", 2289 | "default" : { 2290 | "bgfillcolor" : { 2291 | "angle" : 270.0, 2292 | "color" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2293 | "color1" : [ 0.376471, 0.384314, 0.4, 1.0 ], 2294 | "color2" : [ 0.290196, 0.309804, 0.301961, 1.0 ], 2295 | "proportion" : 0.39, 2296 | "type" : "gradient" 2297 | } 2298 | 2299 | } 2300 | , 2301 | "parentstyle" : "", 2302 | "multi" : 0 2303 | } 2304 | , { 2305 | "name" : "Max 12 Regular-6", 2306 | "parentstyle" : "", 2307 | "multi" : 0 2308 | } 2309 | , { 2310 | "name" : "Max For Live", 2311 | "default" : { 2312 | "patchlinecolor" : [ 0.239216, 0.254902, 0.278431, 0.631373 ] 2313 | } 2314 | , 2315 | "parentstyle" : "", 2316 | "multi" : 0 2317 | } 2318 | , { 2319 | "name" : "stb001", 2320 | "default" : { 2321 | "fontface" : [ 1 ], 2322 | "fontname" : [ "Arial Bold" ], 2323 | "fontsize" : [ 10.0 ] 2324 | } 2325 | , 2326 | "parentstyle" : "", 2327 | "multi" : 0 2328 | } 2329 | , { 2330 | "name" : "tap", 2331 | "default" : { 2332 | "fontname" : [ "Lato Light" ] 2333 | } 2334 | , 2335 | "parentstyle" : "", 2336 | "multi" : 0 2337 | } 2338 | ], 2339 | "patchlinecolor" : [ 0.239216, 0.254902, 0.278431, 0.631373 ] 2340 | } 2341 | 2342 | } 2343 | --------------------------------------------------------------------------------