directly loading an audio file into a jit.matrix inside pfft
Hi all
I've been enjoying Jean-Francois Charles FFT tutorial patches
I'm wondering however if there is a reason why you have to record the audio into the two planed (amp / phase) jitter buffer in real time and if there was a way to just load it in instantaneously
thanks
lewis
Lewis,
Thanks for your interest.
To "load a sound instantaneously" in a jitter matrix as spectral data, the steps could be like this:
- load the sound in a [buffer~]/[jit.buffer~]
- transform the waveform data into spectral data using [jit.fft]
Note: this is the hard part, especially since jit.fft doesn't include the windowing included in [fftin~]
Another option would be:
- load the sound in a [buffer~]
- record the spectral data using my pfft~ approach, but with an offline audio driver, so you can go faster than audio rate, like a "Bounce". That would be the "NonRealTime" Driver in the Audio Status options.
I have not explored these options much, since I've been most interested in the live recording.
One more thing: think about the size of the matrix you want to process as spectral data, especially if you want to make operations with the whole matrix.
hey!
thanks, ill have a look into the first option for sure and see how it sounds,
but since you are here i want to say thanks, a lot, since having the audio as jit.matrixes i've been able to apply video jitter effects to audio and wow really this is opening up something for me
actually mabye you could advise me on something else if you could?
some of the jitter effects im using on the audio fft matrixes they change the whole matrix instantaneously, the parameters are integer values and the whole matrix changes in a jolt, it's not smooth
ive modified your interpolate 2 frames patch to be a sort of interpolate 2 matrixes
there is now 3 matrixes, past, present and future
any changes to the jitter video effect parameters change the future (goal) matrix
the sound is played from the present matrix
and the present matrix is generated as a jit.xfade from the past matrix to the future matrix (on a timed ramp
so when a new parameter is changed on the future matrix, the current state of the present matrix is sent to the past matrix and the present matrix embarks on a timed crossfade from the past to the future, meanwhile the sound is being read from the ever updating present matrix, until it is identical to the future matrix
no problem with this part i was just hoping you may advise a different algorithm to jit.xfade between the two matrixes mabye more of a "morph" or something?
thanks
lewis
{
"boxes" : [ {
"box" : {
"maxclass" : "newobj",
"text" : "t b b s",
"outlettype" : [ "bang", "bang", "" ],
"id" : "obj-68",
"numinlets" : 1,
"numoutlets" : 3,
"style" : "",
"patching_rect" : [ 432.0, 124.5, 43.0, 22.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "/ 1000.",
"outlettype" : [ "float" ],
"id" : "obj-67",
"numinlets" : 2,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 338.0, 45.5, 47.0, 22.0 ]
}
}
, {
"box" : {
"maxclass" : "message",
"text" : "0, 1000 10000",
"outlettype" : [ "" ],
"id" : "obj-60",
"numinlets" : 2,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 451.0, 51.0, 87.0, 22.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "line 1.\\, 0.1",
"outlettype" : [ "", "" ],
"id" : "obj-49",
"numinlets" : 3,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 344.0, 17.0, 66.0, 22.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "jit.matrix past 2 float32 200 2048",
"outlettype" : [ "jit_matrix", "" ],
"fontsize" : 9.0,
"id" : "obj-46",
"fontname" : "Arial",
"numinlets" : 1,
"presentation_rect" : [ 712.5, 219.0, 0.0, 0.0 ],
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 729.5, 201.0, 141.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "jit.matrix present 2 float32 200 2048",
"outlettype" : [ "jit_matrix", "" ],
"fontsize" : 9.0,
"id" : "obj-45",
"fontname" : "Arial",
"numinlets" : 1,
"bgcolor" : [ 0.0, 1.0, 0.0, 1.0 ],
"presentation_rect" : [ 718.0, 181.0, 0.0, 0.0 ],
"textcolor" : [ 0.0, 0.0, 0.0, 1.0 ],
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 729.5, 173.0, 154.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "comment",
"text" : "change update",
"linecount" : 2,
"id" : "obj-39",
"numinlets" : 1,
"numoutlets" : 0,
"style" : "",
"patching_rect" : [ 758.5, 124.5, 87.0, 33.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "t b b b",
"outlettype" : [ "bang", "bang", "bang" ],
"id" : "obj-25",
"numinlets" : 1,
"numoutlets" : 3,
"style" : "",
"patching_rect" : [ 717.0, 124.5, 44.0, 22.0 ]
}
}
, {
"box" : {
"maxclass" : "button",
"outlettype" : [ "bang" ],
"id" : "obj-18",
"numinlets" : 1,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 334.0, 216.0, 24.0, 24.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "t b f",
"outlettype" : [ "bang", "float" ],
"id" : "obj-9",
"numinlets" : 1,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 338.0, 72.0, 31.0, 22.0 ]
}
}
, {
"box" : {
"maxclass" : "message",
"text" : "xfade $1",
"outlettype" : [ "" ],
"id" : "obj-5",
"numinlets" : 2,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 369.0, 96.0, 57.0, 22.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "jit.unpack 2",
"outlettype" : [ "jit_matrix", "jit_matrix", "" ],
"id" : "obj-40",
"numinlets" : 1,
"numoutlets" : 3,
"style" : "",
"patching_rect" : [ 273.0, 306.5, 71.0, 22.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "p format to display",
"outlettype" : [ "jit_matrix" ],
"fontsize" : 9.0,
"id" : "obj-41",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 273.0, 342.5, 129.0, 19.0 ],
"patcher" : {
"fileversion" : 1,
"appversion" : {
"major" : 7,
"minor" : 2,
"revision" : 4,
"architecture" : "x64",
"modernui" : 1
}
,
"rect" : [ 50.0, 119.0, 600.0, 426.0 ],
"bglocked" : 0,
"openinpresentation" : 0,
"default_fontsize" : 12.0,
"default_fontface" : 0,
"default_fontname" : "Arial",
"gridonopen" : 1,
"gridsize" : [ 12.0, 8.0 ],
"gridsnaponopen" : 1,
"objectsnaponopen" : 1,
"statusbarvisible" : 2,
"toolbarvisible" : 1,
"lefttoolbarpinned" : 0,
"toptoolbarpinned" : 0,
"righttoolbarpinned" : 0,
"bottomtoolbarpinned" : 0,
"toolbars_unpinned_last_save" : 0,
"tallnewobj" : 0,
"boxanimatetime" : 200,
"enablehscroll" : 1,
"enablevscroll" : 1,
"devicewidth" : 0.0,
"description" : "",
"digest" : "",
"tags" : "",
"style" : "",
"subpatcher_template" : "",
"boxes" : [ {
"box" : {
"maxclass" : "newobj",
"text" : "jit.clip @min 0. @max 1.",
"outlettype" : [ "jit_matrix", "" ],
"fontsize" : 9.0,
"id" : "obj-1",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 59.0, 69.0, 121.0, 17.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "jit.op @op !- @val 1.",
"outlettype" : [ "jit_matrix", "" ],
"fontsize" : 9.0,
"id" : "obj-2",
"fontname" : "Arial",
"numinlets" : 2,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 59.0, 88.0, 103.0, 17.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "jit.dimmap @invert 0 1",
"outlettype" : [ "jit_matrix", "" ],
"fontsize" : 9.0,
"id" : "obj-3",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 59.0, 50.0, 115.0, 17.0 ]
}
}
, {
"box" : {
"maxclass" : "inlet",
"outlettype" : [ "jit_matrix" ],
"id" : "obj-4",
"numinlets" : 0,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 59.0, 30.0, 15.0, 15.0 ],
"comment" : ""
}
}
, {
"box" : {
"maxclass" : "outlet",
"id" : "obj-5",
"numinlets" : 1,
"numoutlets" : 0,
"style" : "",
"patching_rect" : [ 59.0, 110.0, 15.0, 15.0 ],
"comment" : ""
}
}
],
"lines" : [ {
"patchline" : {
"source" : [ "obj-4", 0 ],
"destination" : [ "obj-3", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-3", 0 ],
"destination" : [ "obj-1", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-2", 0 ],
"destination" : [ "obj-5", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-1", 0 ],
"destination" : [ "obj-2", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
]
}
,
"saved_object_attributes" : {
"description" : "",
"digest" : "",
"globalpatchername" : "",
"style" : "",
"tags" : ""
}
}
}
, {
"box" : {
"maxclass" : "jit.pwindow",
"outlettype" : [ "", "" ],
"id" : "obj-42",
"numinlets" : 1,
"numoutlets" : 2,
"border" : 1.0,
"patching_rect" : [ 273.0, 366.5, 137.0, 62.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "jit.xfade",
"outlettype" : [ "jit_matrix", "" ],
"id" : "obj-38",
"numinlets" : 2,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 273.0, 216.0, 52.0, 22.0 ]
}
}
, {
"box" : {
"maxclass" : "button",
"outlettype" : [ "bang" ],
"id" : "obj-37",
"numinlets" : 1,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 451.0, 151.0, 24.0, 24.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "jit.unpack 2",
"outlettype" : [ "jit_matrix", "jit_matrix", "" ],
"id" : "obj-34",
"numinlets" : 1,
"numoutlets" : 3,
"style" : "",
"patching_rect" : [ 432.0, 201.5, 71.0, 22.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "p format to display",
"outlettype" : [ "jit_matrix" ],
"fontsize" : 9.0,
"id" : "obj-35",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 432.0, 237.5, 129.0, 19.0 ],
"patcher" : {
"fileversion" : 1,
"appversion" : {
"major" : 7,
"minor" : 2,
"revision" : 4,
"architecture" : "x64",
"modernui" : 1
}
,
"rect" : [ 50.0, 119.0, 600.0, 426.0 ],
"bglocked" : 0,
"openinpresentation" : 0,
"default_fontsize" : 12.0,
"default_fontface" : 0,
"default_fontname" : "Arial",
"gridonopen" : 1,
"gridsize" : [ 12.0, 8.0 ],
"gridsnaponopen" : 1,
"objectsnaponopen" : 1,
"statusbarvisible" : 2,
"toolbarvisible" : 1,
"lefttoolbarpinned" : 0,
"toptoolbarpinned" : 0,
"righttoolbarpinned" : 0,
"bottomtoolbarpinned" : 0,
"toolbars_unpinned_last_save" : 0,
"tallnewobj" : 0,
"boxanimatetime" : 200,
"enablehscroll" : 1,
"enablevscroll" : 1,
"devicewidth" : 0.0,
"description" : "",
"digest" : "",
"tags" : "",
"style" : "",
"subpatcher_template" : "",
"boxes" : [ {
"box" : {
"maxclass" : "newobj",
"text" : "jit.clip @min 0. @max 1.",
"outlettype" : [ "jit_matrix", "" ],
"fontsize" : 9.0,
"id" : "obj-1",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 59.0, 69.0, 121.0, 17.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "jit.op @op !- @val 1.",
"outlettype" : [ "jit_matrix", "" ],
"fontsize" : 9.0,
"id" : "obj-2",
"fontname" : "Arial",
"numinlets" : 2,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 59.0, 88.0, 103.0, 17.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "jit.dimmap @invert 0 1",
"outlettype" : [ "jit_matrix", "" ],
"fontsize" : 9.0,
"id" : "obj-3",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 59.0, 50.0, 115.0, 17.0 ]
}
}
, {
"box" : {
"maxclass" : "inlet",
"outlettype" : [ "jit_matrix" ],
"id" : "obj-4",
"numinlets" : 0,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 59.0, 30.0, 15.0, 15.0 ],
"comment" : ""
}
}
, {
"box" : {
"maxclass" : "outlet",
"id" : "obj-5",
"numinlets" : 1,
"numoutlets" : 0,
"style" : "",
"patching_rect" : [ 59.0, 110.0, 15.0, 15.0 ],
"comment" : ""
}
}
],
"lines" : [ {
"patchline" : {
"source" : [ "obj-4", 0 ],
"destination" : [ "obj-3", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-3", 0 ],
"destination" : [ "obj-1", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-2", 0 ],
"destination" : [ "obj-5", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-1", 0 ],
"destination" : [ "obj-2", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
]
}
,
"saved_object_attributes" : {
"description" : "",
"digest" : "",
"globalpatchername" : "",
"style" : "",
"tags" : ""
}
}
}
, {
"box" : {
"maxclass" : "jit.pwindow",
"outlettype" : [ "", "" ],
"id" : "obj-36",
"numinlets" : 1,
"numoutlets" : 2,
"border" : 1.0,
"patching_rect" : [ 432.0, 261.5, 137.0, 62.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "jit.unpack 2",
"outlettype" : [ "jit_matrix", "jit_matrix", "" ],
"id" : "obj-27",
"numinlets" : 1,
"numoutlets" : 3,
"style" : "",
"patching_rect" : [ 92.5, 201.5, 71.0, 22.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "p format to display",
"outlettype" : [ "jit_matrix" ],
"fontsize" : 9.0,
"id" : "obj-65",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 92.5, 237.5, 129.0, 19.0 ],
"patcher" : {
"fileversion" : 1,
"appversion" : {
"major" : 7,
"minor" : 2,
"revision" : 4,
"architecture" : "x64",
"modernui" : 1
}
,
"rect" : [ 50.0, 119.0, 600.0, 426.0 ],
"bglocked" : 0,
"openinpresentation" : 0,
"default_fontsize" : 12.0,
"default_fontface" : 0,
"default_fontname" : "Arial",
"gridonopen" : 1,
"gridsize" : [ 12.0, 8.0 ],
"gridsnaponopen" : 1,
"objectsnaponopen" : 1,
"statusbarvisible" : 2,
"toolbarvisible" : 1,
"lefttoolbarpinned" : 0,
"toptoolbarpinned" : 0,
"righttoolbarpinned" : 0,
"bottomtoolbarpinned" : 0,
"toolbars_unpinned_last_save" : 0,
"tallnewobj" : 0,
"boxanimatetime" : 200,
"enablehscroll" : 1,
"enablevscroll" : 1,
"devicewidth" : 0.0,
"description" : "",
"digest" : "",
"tags" : "",
"style" : "",
"subpatcher_template" : "",
"boxes" : [ {
"box" : {
"maxclass" : "newobj",
"text" : "jit.clip @min 0. @max 1.",
"outlettype" : [ "jit_matrix", "" ],
"fontsize" : 9.0,
"id" : "obj-1",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 59.0, 69.0, 121.0, 17.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "jit.op @op !- @val 1.",
"outlettype" : [ "jit_matrix", "" ],
"fontsize" : 9.0,
"id" : "obj-2",
"fontname" : "Arial",
"numinlets" : 2,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 59.0, 88.0, 103.0, 17.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "jit.dimmap @invert 0 1",
"outlettype" : [ "jit_matrix", "" ],
"fontsize" : 9.0,
"id" : "obj-3",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 59.0, 50.0, 115.0, 17.0 ]
}
}
, {
"box" : {
"maxclass" : "inlet",
"outlettype" : [ "jit_matrix" ],
"id" : "obj-4",
"numinlets" : 0,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 59.0, 30.0, 15.0, 15.0 ],
"comment" : ""
}
}
, {
"box" : {
"maxclass" : "outlet",
"id" : "obj-5",
"numinlets" : 1,
"numoutlets" : 0,
"style" : "",
"patching_rect" : [ 59.0, 110.0, 15.0, 15.0 ],
"comment" : ""
}
}
],
"lines" : [ {
"patchline" : {
"source" : [ "obj-4", 0 ],
"destination" : [ "obj-3", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-3", 0 ],
"destination" : [ "obj-1", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-2", 0 ],
"destination" : [ "obj-5", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-1", 0 ],
"destination" : [ "obj-2", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
]
}
,
"saved_object_attributes" : {
"description" : "",
"digest" : "",
"globalpatchername" : "",
"style" : "",
"tags" : ""
}
}
}
, {
"box" : {
"maxclass" : "jit.pwindow",
"outlettype" : [ "", "" ],
"id" : "obj-75",
"numinlets" : 1,
"numoutlets" : 2,
"border" : 1.0,
"patching_rect" : [ 92.5, 261.5, 137.0, 62.0 ]
}
}
, {
"box" : {
"maxclass" : "button",
"outlettype" : [ "bang" ],
"id" : "obj-22",
"numinlets" : 1,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 70.0, 141.0, 24.0, 24.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "- 1",
"outlettype" : [ "int" ],
"fontsize" : 9.0,
"id" : "obj-28",
"fontname" : "Arial",
"numinlets" : 2,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 115.5, 414.0, 27.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"varname" : "*1[1]",
"text" : "send~ positioninframes",
"fontsize" : 9.0,
"id" : "obj-48",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 0,
"style" : "",
"color" : [ 0.290196, 0.611765, 0.380392, 1.0 ],
"patching_rect" : [ 53.5, 525.0, 114.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"varname" : "*1",
"text" : "*~ 1.",
"outlettype" : [ "signal" ],
"fontsize" : 9.0,
"id" : "obj-50",
"fontname" : "Arial",
"numinlets" : 2,
"numoutlets" : 1,
"style" : "",
"color" : [ 0.290196, 0.611765, 0.380392, 1.0 ],
"patching_rect" : [ 53.5, 480.0, 35.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "phasor~",
"outlettype" : [ "signal" ],
"fontsize" : 9.0,
"id" : "obj-51",
"fontname" : "Arial",
"numinlets" : 2,
"numoutlets" : 1,
"style" : "",
"color" : [ 0.290196, 0.611765, 0.380392, 1.0 ],
"patching_rect" : [ 53.5, 441.0, 46.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "p gives phasor~ frequency for FFT 4096 4",
"outlettype" : [ "float" ],
"fontsize" : 9.0,
"id" : "obj-54",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 61.5, 381.0, 178.0, 19.0 ],
"patcher" : {
"fileversion" : 1,
"appversion" : {
"major" : 7,
"minor" : 2,
"revision" : 4,
"architecture" : "x64",
"modernui" : 1
}
,
"rect" : [ 34.0, 79.0, 600.0, 426.0 ],
"bglocked" : 0,
"openinpresentation" : 0,
"default_fontsize" : 12.0,
"default_fontface" : 0,
"default_fontname" : "Arial",
"gridonopen" : 1,
"gridsize" : [ 12.0, 8.0 ],
"gridsnaponopen" : 1,
"objectsnaponopen" : 1,
"statusbarvisible" : 2,
"toolbarvisible" : 1,
"lefttoolbarpinned" : 0,
"toptoolbarpinned" : 0,
"righttoolbarpinned" : 0,
"bottomtoolbarpinned" : 0,
"toolbars_unpinned_last_save" : 0,
"tallnewobj" : 0,
"boxanimatetime" : 200,
"enablehscroll" : 1,
"enablevscroll" : 1,
"devicewidth" : 0.0,
"description" : "",
"digest" : "",
"tags" : "",
"style" : "",
"subpatcher_template" : "",
"boxes" : [ {
"box" : {
"maxclass" : "comment",
"text" : "DANGER: MAGIC NUMBERS",
"linecount" : 2,
"fontsize" : 9.0,
"id" : "obj-1",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 0,
"style" : "",
"patching_rect" : [ 147.0, 107.0, 121.0, 27.0 ]
}
}
, {
"box" : {
"maxclass" : "comment",
"text" : "<- to get it work also when you change sampling rate",
"linecount" : 2,
"fontsize" : 9.0,
"id" : "obj-2",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 0,
"style" : "",
"patching_rect" : [ 104.0, 50.0, 152.0, 27.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "b 1",
"outlettype" : [ "bang" ],
"fontsize" : 9.0,
"id" : "obj-3",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 64.0, 88.0, 22.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "change",
"outlettype" : [ "", "int", "int" ],
"fontsize" : 9.0,
"id" : "obj-4",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 3,
"style" : "",
"patching_rect" : [ 64.0, 69.0, 40.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "dspstate~",
"outlettype" : [ "int", "float", "int", "int" ],
"fontsize" : 9.0,
"id" : "obj-5",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 4,
"style" : "",
"patching_rect" : [ 50.0, 50.0, 54.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "comment",
"text" : "<- duration of one frame (ms)",
"fontsize" : 9.0,
"id" : "obj-6",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 0,
"style" : "",
"patching_rect" : [ 124.0, 203.0, 158.0, 17.0 ]
}
}
, {
"box" : {
"maxclass" : "comment",
"text" : "<- hop",
"fontsize" : 9.0,
"id" : "obj-7",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 0,
"style" : "",
"patching_rect" : [ 75.0, 171.0, 47.0, 17.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "/ 1.",
"outlettype" : [ "float" ],
"fontsize" : 9.0,
"id" : "obj-8",
"fontname" : "Arial",
"numinlets" : 2,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 64.0, 153.0, 27.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "unpack",
"outlettype" : [ "int", "int" ],
"fontsize" : 9.0,
"id" : "obj-9",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 64.0, 132.0, 40.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "loadmess 4096 4",
"outlettype" : [ "" ],
"fontsize" : 9.0,
"id" : "obj-10",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 64.0, 107.0, 83.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "* 1.",
"outlettype" : [ "float" ],
"fontsize" : 9.0,
"id" : "obj-11",
"fontname" : "Arial",
"numinlets" : 2,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 99.0, 239.0, 29.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "!/ 1000.",
"outlettype" : [ "float" ],
"fontsize" : 9.0,
"id" : "obj-12",
"fontname" : "Arial",
"numinlets" : 2,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 99.0, 270.0, 45.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "sampstoms~",
"outlettype" : [ "signal", "float" ],
"fontsize" : 9.0,
"id" : "obj-13",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 64.0, 185.0, 64.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "inlet",
"outlettype" : [ "" ],
"id" : "obj-14",
"numinlets" : 0,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 20.0, 28.0, 15.0, 15.0 ],
"comment" : ""
}
}
, {
"box" : {
"maxclass" : "outlet",
"id" : "obj-15",
"numinlets" : 1,
"numoutlets" : 0,
"style" : "",
"patching_rect" : [ 99.0, 292.0, 15.0, 15.0 ],
"comment" : ""
}
}
],
"lines" : [ {
"patchline" : {
"source" : [ "obj-9", 0 ],
"destination" : [ "obj-8", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-9", 1 ],
"destination" : [ "obj-8", 1 ],
"hidden" : 0,
"midpoints" : [ 94.5, 151.0, 81.5, 151.0 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-8", 0 ],
"destination" : [ "obj-13", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-5", 1 ],
"destination" : [ "obj-4", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-4", 0 ],
"destination" : [ "obj-3", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-3", 0 ],
"destination" : [ "obj-10", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-14", 0 ],
"destination" : [ "obj-11", 0 ],
"hidden" : 0,
"midpoints" : [ 29.0, 235.0, 108.5, 235.0 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-13", 1 ],
"destination" : [ "obj-11", 1 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-12", 0 ],
"destination" : [ "obj-15", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-11", 0 ],
"destination" : [ "obj-12", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-10", 0 ],
"destination" : [ "obj-9", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
]
}
,
"saved_object_attributes" : {
"description" : "",
"digest" : "",
"globalpatchername" : "",
"style" : "",
"tags" : ""
}
}
}
, {
"box" : {
"maxclass" : "comment",
"text" : "<- (number of frames - 1)",
"fontsize" : 9.0,
"id" : "obj-61",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 0,
"style" : "",
"patching_rect" : [ 84.5, 461.0, 158.0, 17.0 ]
}
}
, {
"box" : {
"maxclass" : "message",
"text" : "read",
"outlettype" : [ "" ],
"id" : "obj-7",
"numinlets" : 2,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 432.0, 96.0, 35.0, 22.0 ]
}
}
, {
"box" : {
"maxclass" : "message",
"text" : "read",
"outlettype" : [ "" ],
"id" : "obj-6",
"numinlets" : 2,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 92.5, 130.0, 35.0, 22.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "jit.matrix past 2 float32 200 2048",
"outlettype" : [ "jit_matrix", "" ],
"fontsize" : 9.0,
"id" : "obj-2",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 92.5, 173.0, 141.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "jit.matrix present 2 float32 200 2048",
"outlettype" : [ "jit_matrix", "" ],
"fontsize" : 9.0,
"id" : "obj-1",
"fontname" : "Arial",
"numinlets" : 1,
"bgcolor" : [ 0.0, 1.0, 0.0, 1.0 ],
"textcolor" : [ 0.0, 0.0, 0.0, 1.0 ],
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 273.0, 251.0, 154.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "message",
"text" : "dim $1 2048",
"outlettype" : [ "" ],
"fontsize" : 9.0,
"id" : "obj-4",
"fontname" : "Arial",
"numinlets" : 2,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 301.0, 127.5, 68.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "number",
"outlettype" : [ "", "bang" ],
"id" : "obj-17",
"numinlets" : 1,
"bgcolor" : [ 0.909804, 0.713726, 0.894118, 1.0 ],
"parameter_enable" : 0,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 57.0, 70.0, 50.0, 22.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "jit.matrix future 2 float32 200 2048",
"outlettype" : [ "jit_matrix", "" ],
"fontsize" : 9.0,
"id" : "obj-87",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 418.0, 177.0, 147.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "toggle",
"outlettype" : [ "int" ],
"id" : "obj-23",
"numinlets" : 1,
"parameter_enable" : 0,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 560.5, 476.5, 24.0, 24.0 ]
}
}
, {
"box" : {
"maxclass" : "comment",
"text" : "smooth with noise~",
"linecount" : 3,
"fontsize" : 9.0,
"id" : "obj-29",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 0,
"style" : "",
"patching_rect" : [ 784.5, 275.5, 41.0, 37.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "-~ 1.",
"outlettype" : [ "signal" ],
"fontsize" : 9.0,
"id" : "obj-30",
"fontname" : "Arial",
"numinlets" : 2,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 747.5, 288.5, 33.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"varname" : "*2",
"text" : "*~ 0",
"outlettype" : [ "signal" ],
"fontsize" : 9.0,
"id" : "obj-31",
"fontname" : "Arial",
"numinlets" : 2,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 747.5, 307.5, 29.5, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "noise~",
"outlettype" : [ "signal" ],
"fontsize" : 9.0,
"id" : "obj-32",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 747.5, 268.5, 38.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "panel",
"id" : "obj-33",
"numinlets" : 1,
"rounded" : 12,
"numoutlets" : 0,
"style" : "",
"border" : 2,
"bordercolor" : [ 0.839216, 0.0, 0.0, 1.0 ],
"patching_rect" : [ 737.5, 264.5, 88.0, 67.0 ],
"mode" : 0,
"angle" : 0.0,
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"proportion" : 0.39
}
}
, {
"box" : {
"maxclass" : "newobj",
"varname" : "*1[3]",
"text" : "receive~ positioninframes",
"outlettype" : [ "signal" ],
"fontsize" : 9.0,
"id" : "obj-47",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 1,
"style" : "",
"color" : [ 0.290196, 0.611765, 0.380392, 1.0 ],
"patching_rect" : [ 588.5, 307.5, 128.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "comment",
"text" : "audio on/off",
"fontsize" : 9.0,
"id" : "obj-56",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 0,
"style" : "",
"patching_rect" : [ 596.5, 500.5, 59.0, 17.0 ]
}
}
, {
"box" : {
"maxclass" : "gain~",
"outlettype" : [ "signal", "int" ],
"id" : "obj-57",
"numinlets" : 2,
"parameter_enable" : 0,
"interpinlet" : 1,
"orientation" : 2,
"numoutlets" : 2,
"style" : "",
"patching_rect" : [ 667.5, 370.5, 22.0, 122.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "dac~",
"fontsize" : 9.0,
"id" : "obj-58",
"fontname" : "Arial",
"numinlets" : 2,
"numoutlets" : 0,
"style" : "",
"patching_rect" : [ 666.5, 529.5, 30.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "newobj",
"text" : "pfft~ play-present-nosah.pfft 4096 4",
"outlettype" : [ "signal" ],
"fontsize" : 9.0,
"id" : "obj-59",
"fontname" : "Arial",
"numinlets" : 1,
"numoutlets" : 1,
"style" : "",
"patching_rect" : [ 667.5, 338.5, 153.0, 19.0 ]
}
}
, {
"box" : {
"maxclass" : "panel",
"id" : "obj-117",
"numinlets" : 1,
"rounded" : 10,
"numoutlets" : 0,
"style" : "",
"border" : 1,
"patching_rect" : [ 579.5, 498.5, 82.0, 20.0 ],
"mode" : 0,
"angle" : 0.0,
"bgcolor" : [ 0.545098, 1.0, 0.231373, 1.0 ],
"proportion" : 0.39
}
}
],
"lines" : [ {
"patchline" : {
"source" : [ "obj-7", 0 ],
"destination" : [ "obj-68", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-68", 0 ],
"destination" : [ "obj-25", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-68", 1 ],
"destination" : [ "obj-37", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-68", 2 ],
"destination" : [ "obj-87", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-25", 0 ],
"destination" : [ "obj-60", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-6", 0 ],
"destination" : [ "obj-2", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-6", 0 ],
"destination" : [ "obj-22", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-25", 1 ],
"destination" : [ "obj-45", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-67", 0 ],
"destination" : [ "obj-9", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-49", 0 ],
"destination" : [ "obj-67", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-60", 0 ],
"destination" : [ "obj-49", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-45", 0 ],
"destination" : [ "obj-46", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-18", 0 ],
"destination" : [ "obj-1", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-9", 0 ],
"destination" : [ "obj-22", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-9", 0 ],
"destination" : [ "obj-38", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-9", 1 ],
"destination" : [ "obj-5", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-5", 0 ],
"destination" : [ "obj-38", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-87", 0 ],
"destination" : [ "obj-38", 1 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-87", 0 ],
"destination" : [ "obj-34", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-65", 0 ],
"destination" : [ "obj-75", 0 ],
"hidden" : 0,
"midpoints" : [ 102.0, 257.0, 102.0, 257.0 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-59", 0 ],
"destination" : [ "obj-57", 0 ],
"hidden" : 0,
"midpoints" : [ 677.0, 360.5, 677.0, 360.5 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-57", 0 ],
"destination" : [ "obj-58", 0 ],
"hidden" : 0,
"midpoints" : [ 677.0, 495.5, 676.0, 495.5 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-57", 0 ],
"destination" : [ "obj-58", 1 ],
"hidden" : 0,
"midpoints" : [ 677.0, 516.5, 687.0, 516.5 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-54", 0 ],
"destination" : [ "obj-51", 0 ],
"hidden" : 0,
"midpoints" : [ 71.0, 426.0, 63.0, 426.0 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-51", 0 ],
"destination" : [ "obj-50", 0 ],
"hidden" : 0,
"color" : [ 0.290196, 0.611765, 0.380392, 1.0 ],
"midpoints" : [ 63.0, 462.0, 63.0, 462.0 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-50", 0 ],
"destination" : [ "obj-48", 0 ],
"hidden" : 0,
"color" : [ 0.290196, 0.611765, 0.380392, 1.0 ],
"midpoints" : [ 63.0, 501.0, 63.0, 501.0 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-47", 0 ],
"destination" : [ "obj-59", 0 ],
"hidden" : 0,
"midpoints" : [ 598.0, 336.5, 663.0, 336.5, 663.0, 333.5, 677.0, 333.5 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-41", 0 ],
"destination" : [ "obj-42", 0 ],
"hidden" : 0,
"midpoints" : [ 282.5, 362.0, 282.5, 362.0 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-40", 0 ],
"destination" : [ "obj-41", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-4", 0 ],
"destination" : [ "obj-87", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-4", 0 ],
"destination" : [ "obj-2", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-38", 0 ],
"destination" : [ "obj-1", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-37", 0 ],
"destination" : [ "obj-87", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-35", 0 ],
"destination" : [ "obj-36", 0 ],
"hidden" : 0,
"midpoints" : [ 441.5, 257.0, 441.5, 257.0 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-34", 0 ],
"destination" : [ "obj-35", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-32", 0 ],
"destination" : [ "obj-30", 0 ],
"hidden" : 0,
"midpoints" : [ 757.0, 288.5, 757.0, 288.5 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-31", 0 ],
"destination" : [ "obj-59", 0 ],
"hidden" : 0,
"midpoints" : [ 757.0, 327.5, 678.0, 327.5, 678.0, 333.5, 677.0, 333.5 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-30", 0 ],
"destination" : [ "obj-31", 0 ],
"hidden" : 0,
"midpoints" : [ 757.0, 309.5, 757.0, 309.5 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-28", 0 ],
"destination" : [ "obj-50", 1 ],
"hidden" : 0,
"midpoints" : [ 125.0, 435.0, 39.5, 435.0, 39.5, 474.0, 79.0, 474.0 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-27", 0 ],
"destination" : [ "obj-65", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-23", 0 ],
"destination" : [ "obj-58", 0 ],
"hidden" : 0,
"midpoints" : [ 570.0, 528.5, 663.0, 528.5, 663.0, 525.5, 676.0, 525.5 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-22", 0 ],
"destination" : [ "obj-2", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-2", 0 ],
"destination" : [ "obj-38", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-2", 0 ],
"destination" : [ "obj-27", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-17", 0 ],
"destination" : [ "obj-54", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-17", 0 ],
"destination" : [ "obj-4", 0 ],
"hidden" : 0,
"midpoints" : [ 66.5, 114.0, 310.5, 114.0 ],
"disabled" : 0
}
}
, {
"patchline" : {
"source" : [ "obj-1", 0 ],
"destination" : [ "obj-40", 0 ],
"hidden" : 0,
"disabled" : 0
}
}
],
"appversion" : {
"major" : 7,
"minor" : 2,
"revision" : 4,
"architecture" : "x64",
"modernui" : 1
}
}