Oeyvind / featexmod

GNU General Public License v3.0
18 stars 1 forks source link

Output console doesn't work on OS X #15

Closed berntisak closed 7 years ago

berntisak commented 7 years ago

Perhaps a Cabbage issue?

Some text is printed on loading of plugin, but disappears again quickly.

Oeyvind commented 7 years ago

It is a Cabbage issue, I thought this was fixed quite recently.

Which Cabbage version did you compile the plugs with, Bernt?

Rory, is this fixed in the most recent OSX Cabbage?

2016-12-02 6:13 GMT-08:00 Bernt Isak Wærstad notifications@github.com:

Perhaps a Cabbage issue?

Some text is printed on loading of plugin, but disappears again quickly.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15, or mute the thread https://github.com/notifications/unsubscribe-auth/AFUyzX6L1kewMZuMKEXoSdW_DSTzBr-zks5rECeRgaJpZM4LCl2F .

--

Oeyvind Brandtsegg Professor of Music Technology NTNU 7491 Trondheim Norway Cell: +47 92 203 205

http://www.partikkelaudio.com/ http://crossadaptive.hf.ntnu.no http://gdsp.hf.ntnu.no/ http://soundcloud.com/brandtsegg http://flyndresang.no/ http://soundcloud.com/t-emp

rorywalsh commented 7 years ago

I just checked with a simple examples here on OSX 10.12, using 1.1.05 and it seems to work just fine? The latest dev snapshot is here: http://forum.cabbageaudio.com/t/latest-beta-packages-available-here-new-release/114

Oeyvind commented 7 years ago

Bernt, can you test the csd below on your system? It should print p1,p2,p3 for instr 2, starting once a second. It should also print to console any text entered in the widget (the texteditor widget above the console) And the text entered in the texteditor should be recalled if you save a project with the plugin. Remember to hit enter after typing text into the widget(!)

form size(300, 300), caption("VST_MIDIator"), pluginID("vmid") texteditor bounds(10, 10, 250, 14), channel("note_parm1"), text("...notes saved with DAW project ..."), colour(20,20,20,255), fontcolour("white"), popuptext("Notes to remember where this signal is sent to - what it controls. Will not change signal routing - just help you remember where it goes. Notes saved with DAW project. Do remember to hit *enter* to update the text control.") csoundoutput bounds(10, 50, 290, 200), text("Output") -n -d -+rtmidi=NULL -Q0 -M0 instr 1 Stext chnget "note_parm1" ktrig changed Stext puts Stext, ktrig+1 kmetro metro 1 if kmetro > 0 then event "i", 2, 0, 1 endif endin instr 2 print p1, p2, p3 endin i1 0.1 600 e

2016-12-05 9:07 GMT-08:00 Rory Walsh notifications@github.com:

I just checked with a simple examples here on OSX 10.12, using 1.1.05 and it seems to work just fine? The latest dev snapshot is here: http://forum.cabbageaudio.com/t/latest-beta-packages- available-here-new-release/114

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-264912917, or mute the thread https://github.com/notifications/unsubscribe-auth/AFUyzX745hAhUdPtL52le9XhS0toCuPtks5rFETWgaJpZM4LCl2F .

Oeyvind commented 7 years ago

Bernt, can you test the csd below on your system? It should print p1,p2,p3 for instr 2, starting once a second. It should also print to console any text entered in the widget (the texteditor widget above the console) And the text entered in the texteditor should be recalled if you save a project with the plugin. Remember to hit enter after typing text into the widget(!)

form size(300, 300), caption("VST_MIDIator"), pluginID("vmid") texteditor bounds(10, 10, 250, 14), channel("note_parm1"), text("...notes saved with DAW project ..."), colour(20,20,20,255), fontcolour("white"), popuptext("Notes to remember where this signal is sent to - what it controls. Will not change signal routing - just help you remember where it goes. Notes saved with DAW project. Do remember to hit *enter* to update the text control.") csoundoutput bounds(10, 50, 290, 200), text("Output") -n -d -+rtmidi=NULL -Q0 -M0 instr 1 Stext chnget "note_parm1" ktrig changed Stext puts Stext, ktrig+1 kmetro metro 1 if kmetro > 0 then event "i", 2, 0, 1 endif endin instr 2 print p1, p2, p3 endin i1 0.1 600 e

2016-12-05 9:07 GMT-08:00 Rory Walsh notifications@github.com:

I just checked with a simple examples here on OSX 10.12, using 1.1.05 and it seems to work just fine? The latest dev snapshot is here: http://forum.cabbageaudio.com/t/latest-beta-packages- available-here-new-release/114

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-264912917, or mute the thread https://github.com/notifications/unsubscribe-auth/AFUyzX745hAhUdPtL52le9XhS0toCuPtks5rFETWgaJpZM4LCl2F .

Oeyvind commented 7 years ago

Eyh! I think I found something. And I think it relates to Cabbage (both on win and osx).

I actually had not noticed, but the analyzer prints to console, while the MIDIator does not. So, I trimmed down the MIDIator until the console would print again. The cuplrit seems to be realted to using identchannel to set the text of a Cabbbage text widget. If we use the identchannel to set the text, then the console will stop printing.

Probably related to the console print thread issue you worked on a while back, Rory(?)

I'm also posting this to the Cabbage forum, but Rory please do reply here as well (if only with a 'fixed' note, for our records)

Here's the simplified csd:

form size(410, 150), caption("VST_MIDIator"), pluginID("vmid") ;image bounds(0, 0, 863, 810), shape("sharp"), colour(5,15,20) label text("port"), bounds(10, 10, 80, 12), identchannel("port_id") csoundoutput bounds(10, 30, 390, 120), text("Output") -n -d ksmps = 64 nchnls = 2 0dbfs = 1 instr 3 iport = 123456 gkhandle = 1 Sport sprintf {{text("port %i")}}, iport chnset Sport, "port_id" endin i3 0.1 600 e

2016-12-05 10:46 GMT-08:00 Oeyvind Brandtsegg obrandts@gmail.com:

Bernt, can you test the csd below on your system? It should print p1,p2,p3 for instr 2, starting once a second. It should also print to console any text entered in the widget (the texteditor widget above the console) And the text entered in the texteditor should be recalled if you save a project with the plugin. Remember to hit enter after typing text into the widget(!)

form size(300, 300), caption("VST_MIDIator"), pluginID("vmid") texteditor bounds(10, 10, 250, 14), channel("note_parm1"), text("...notes saved with DAW project ..."), colour(20,20,20,255), fontcolour("white"), popuptext("Notes to remember where this signal is sent to - what it controls. Will not change signal routing - just help you remember where it goes. Notes saved with DAW project. Do remember to hit *enter* to update the text control.") csoundoutput bounds(10, 50, 290, 200), text("Output") -n -d -+rtmidi=NULL -Q0 -M0 instr 1 Stext chnget "note_parm1" ktrig changed Stext puts Stext, ktrig+1 kmetro metro 1 if kmetro > 0 then event "i", 2, 0, 1 endif endin instr 2 print p1, p2, p3 endin i1 0.1 600 e

2016-12-05 9:07 GMT-08:00 Rory Walsh notifications@github.com:

I just checked with a simple examples here on OSX 10.12, using 1.1.05 and it seems to work just fine? The latest dev snapshot is here: http://forum.cabbageaudio.com/t/latest-beta-packages-availab le-here-new-release/114

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-264912917, or mute the thread https://github.com/notifications/unsubscribe-auth/AFUyzX745hAhUdPtL52le9XhS0toCuPtks5rFETWgaJpZM4LCl2F .

rorywalsh commented 7 years ago

I've posted a new OSX package to here: http://forum.cabbageaudio.com/t/latest-beta-packages-available-here-new-release/114 Can you test it and let me know if it addresses the issue. I did some simple tests and I think the problem is resolved. Fingers crossed.

Oeyvind commented 7 years ago

Do note that it also happens on windows. Do you have a new win version too?

  1. des. 2016 8.55 a.m. skrev "Rory Walsh" notifications@github.com:

I've posted a new OSX package to here: http://forum.cabbageaudio.com/t/latest-beta-packages- available-here-new-release/114 Can you test it and let me know if it addresses the issue. I did some simple tests and I think the problem is resolved. Fingers crossed.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265205105, or mute the thread https://github.com/notifications/unsubscribe-auth/AFUyzc0zijP85g6GmUjpwyO7Az4HLSkNks5rFZOSgaJpZM4LCl2F .

rorywalsh commented 7 years ago

Not yet. I won't be able to run off a windows build till later on.

On 6 December 2016 at 17:21, Oeyvind notifications@github.com wrote:

Do note that it also happens on windows. Do you have a new win version too?

  1. des. 2016 8.55 a.m. skrev "Rory Walsh" notifications@github.com:

I've posted a new OSX package to here: http://forum.cabbageaudio.com/t/latest-beta-packages- available-here-new-release/114 Can you test it and let me know if it addresses the issue. I did some simple tests and I think the problem is resolved. Fingers crossed.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265205105, or mute the thread https://github.com/notifications/unsubscribe-auth/ AFUyzc0zijP85g6GmUjpwyO7Az4HLSkNks5rFZOSgaJpZM4LCl2F

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265212698, or mute the thread https://github.com/notifications/unsubscribe-auth/ACkLGUbjxaofOSgDVvdNcP4PtXw1oxemks5rFZmzgaJpZM4LCl2F .

rorywalsh commented 7 years ago

It's just uploading. Should be ready to go shortly.

On 6 December 2016 at 17:29, Rory Walsh rorywalsh@ear.ie wrote:

Not yet. I won't be able to run off a windows build till later on.

On 6 December 2016 at 17:21, Oeyvind notifications@github.com wrote:

Do note that it also happens on windows. Do you have a new win version too?

  1. des. 2016 8.55 a.m. skrev "Rory Walsh" notifications@github.com:

I've posted a new OSX package to here: http://forum.cabbageaudio.com/t/latest-beta-packages- available-here-new-release/114 Can you test it and let me know if it addresses the issue. I did some simple tests and I think the problem is resolved. Fingers crossed.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265205105 , or mute the thread https://github.com/notifications/unsubscribe-auth/AFUyzc0zi jP85g6GmUjpwyO7Az4HLSkNks5rFZOSgaJpZM4LCl2F

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265212698, or mute the thread https://github.com/notifications/unsubscribe-auth/ACkLGUbjxaofOSgDVvdNcP4PtXw1oxemks5rFZmzgaJpZM4LCl2F .

Oeyvind commented 7 years ago

All ok. I'd be glad to get a notice when it is done, so I can test.

2016-12-06 9:29 GMT-08:00 Rory Walsh notifications@github.com:

Not yet. I won't be able to run off a windows build till later on.

On 6 December 2016 at 17:21, Oeyvind notifications@github.com wrote:

Do note that it also happens on windows. Do you have a new win version too?

  1. des. 2016 8.55 a.m. skrev "Rory Walsh" notifications@github.com:

I've posted a new OSX package to here: http://forum.cabbageaudio.com/t/latest-beta-packages- available-here-new-release/114 Can you test it and let me know if it addresses the issue. I did some simple tests and I think the problem is resolved. Fingers crossed.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265205105 , or mute the thread https://github.com/notifications/unsubscribe-auth/ AFUyzc0zijP85g6GmUjpwyO7Az4HLSkNks5rFZOSgaJpZM4LCl2F

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265212698, or mute the thread https://github.com/notifications/unsubscribe-auth/ ACkLGUbjxaofOSgDVvdNcP4PtXw1oxemks5rFZmzgaJpZM4LCl2F .

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265214856, or mute the thread https://github.com/notifications/unsubscribe-auth/AFUyzayonjpsafzQWsqjcbwM9O0HEDMgks5rFZt_gaJpZM4LCl2F .

rorywalsh commented 7 years ago

It's there now if you want to give it a whirl. SOrry I can't give it a proper test myself, but it's exam time. You know what that's like!

On 6 December 2016 at 18:34, Oeyvind notifications@github.com wrote:

All ok. I'd be glad to get a notice when it is done, so I can test.

2016-12-06 9:29 GMT-08:00 Rory Walsh notifications@github.com:

Not yet. I won't be able to run off a windows build till later on.

On 6 December 2016 at 17:21, Oeyvind notifications@github.com wrote:

Do note that it also happens on windows. Do you have a new win version too?

  1. des. 2016 8.55 a.m. skrev "Rory Walsh" notifications@github.com:

I've posted a new OSX package to here: http://forum.cabbageaudio.com/t/latest-beta-packages- available-here-new-release/114 Can you test it and let me know if it addresses the issue. I did some simple tests and I think the problem is resolved. Fingers crossed.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <https://github.com/Oeyvind/featexmod/issues/15# issuecomment-265205105 , or mute the thread https://github.com/notifications/unsubscribe-auth/ AFUyzc0zijP85g6GmUjpwyO7Az4HLSkNks5rFZOSgaJpZM4LCl2F

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265212698 , or mute the thread https://github.com/notifications/unsubscribe-auth/ ACkLGUbjxaofOSgDVvdNcP4PtXw1oxemks5rFZmzgaJpZM4LCl2F .

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265214856, or mute the thread https://github.com/notifications/unsubscribe-auth/ AFUyzayonjpsafzQWsqjcbwM9O0HEDMgks5rFZt_gaJpZM4LCl2F

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265232645, or mute the thread https://github.com/notifications/unsubscribe-auth/ACkLGdfU88LKfsL7Ce9z_oSqvL7ep6VEks5rFaqpgaJpZM4LCl2F .

Oeyvind commented 7 years ago

ngh, it load the simple example (identchannel and console and that works nicely. But the MIDIator crashes Cabbage. Trying to strip down now.

2016-12-06 11:23 GMT-08:00 Rory Walsh notifications@github.com:

It's there now if you want to give it a whirl.

On 6 December 2016 at 18:34, Oeyvind notifications@github.com wrote:

All ok. I'd be glad to get a notice when it is done, so I can test.

2016-12-06 9:29 GMT-08:00 Rory Walsh notifications@github.com:

Not yet. I won't be able to run off a windows build till later on.

On 6 December 2016 at 17:21, Oeyvind notifications@github.com wrote:

Do note that it also happens on windows. Do you have a new win version too?

  1. des. 2016 8.55 a.m. skrev "Rory Walsh" <notifications@github.com :

I've posted a new OSX package to here: http://forum.cabbageaudio.com/t/latest-beta-packages- available-here-new-release/114 Can you test it and let me know if it addresses the issue. I did some simple tests and I think the problem is resolved. Fingers crossed.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <https://github.com/Oeyvind/featexmod/issues/15# issuecomment-265205105 , or mute the thread https://github.com/notifications/unsubscribe-auth/ AFUyzc0zijP85g6GmUjpwyO7Az4HLSkNks5rFZOSgaJpZM4LCl2F

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <https://github.com/Oeyvind/featexmod/issues/15# issuecomment-265212698 , or mute the thread https://github.com/notifications/unsubscribe-auth/ ACkLGUbjxaofOSgDVvdNcP4PtXw1oxemks5rFZmzgaJpZM4LCl2F .

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265214856 , or mute the thread https://github.com/notifications/unsubscribe-auth/ AFUyzayonjpsafzQWsqjcbwM9O0HEDMgks5rFZt_gaJpZM4LCl2F

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265232645, or mute the thread https://github.com/notifications/unsubscribe-auth/ACkLGdfU88LKfsL7Ce9z_ oSqvL7ep6VEks5rFaqpgaJpZM4LCl2F .

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265246148, or mute the thread https://github.com/notifications/unsubscribe-auth/AFUyzej_KayHah8ar8uYBBCOmW3DyPaLks5rFbYwgaJpZM4LCl2F .

Oeyvind commented 7 years ago

Ok. Got something. I think it is related to this

    Sscoreline      sprintf {{i %f 0 -1 "%s" %i}}, instr_8, Sparam,

imod_num

which prints this: i 8.010000 0 -1 "pa

...truncating the string This string is then used with scoreline_i, and that crashes things pretty badly.

The whole csd here:

form size(400, 400), caption("VST_MIDIator"), pluginID("vmid") csoundoutput bounds(5, 5, 300, 300), text("Output") -n -d ksmps = 64 nchnls = 2 0dbfs = 1 instr 4 Sparam strget p4 imod_num = frac(p1)*100 instr_8 = 8+frac(p1) Sscoreline sprintf {{i %f 0 -1 "%s" %i}}, instr_8, Sparam, imod_num puts Sscoreline, 1 scoreline_i Sscoreline endin instr 8 endin i4.01 3.1 600 "parm1" f0 600 e

2016-12-06 13:53 GMT-08:00 Oeyvind Brandtsegg obrandts@gmail.com:

ngh, it load the simple example (identchannel and console and that works nicely. But the MIDIator crashes Cabbage. Trying to strip down now.

2016-12-06 11:23 GMT-08:00 Rory Walsh notifications@github.com:

It's there now if you want to give it a whirl.

On 6 December 2016 at 18:34, Oeyvind notifications@github.com wrote:

All ok. I'd be glad to get a notice when it is done, so I can test.

2016-12-06 9:29 GMT-08:00 Rory Walsh notifications@github.com:

Not yet. I won't be able to run off a windows build till later on.

On 6 December 2016 at 17:21, Oeyvind notifications@github.com wrote:

Do note that it also happens on windows. Do you have a new win version too?

  1. des. 2016 8.55 a.m. skrev "Rory Walsh" <notifications@github.com :

I've posted a new OSX package to here: http://forum.cabbageaudio.com/t/latest-beta-packages- available-here-new-release/114 Can you test it and let me know if it addresses the issue. I did some simple tests and I think the problem is resolved. Fingers crossed.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <https://github.com/Oeyvind/featexmod/issues/15# issuecomment-265205105 , or mute the thread https://github.com/notifications/unsubscribe-auth/ AFUyzc0zijP85g6GmUjpwyO7Az4HLSkNks5rFZOSgaJpZM4LCl2F

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <https://github.com/Oeyvind/featexmod/issues/15#issuecomment -265212698 , or mute the thread https://github.com/notifications/unsubscribe-auth/ ACkLGUbjxaofOSgDVvdNcP4PtXw1oxemks5rFZmzgaJpZM4LCl2F .

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment -265214856, or mute the thread https://github.com/notifications/unsubscribe-auth/ AFUyzayonjpsafzQWsqjcbwM9O0HEDMgks5rFZt_gaJpZM4LCl2F

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265232645 , or mute the thread https://github.com/notifications/unsubscribe-auth/ ACkLGdfU88LKfsL7Ce9z_oSqvL7ep6VEks5rFaqpgaJpZM4LCl2F .

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265246148, or mute the thread https://github.com/notifications/unsubscribe-auth/AFUyzej_KayHah8ar8uYBBCOmW3DyPaLks5rFbYwgaJpZM4LCl2F .

berntisak commented 7 years ago

Got a bit lost if this was a Win only issue or what. The printing seems to work fine now, but Reaper is still crashing when MIDIator is removed from a track. At first atempt it crashed in an instant (as in just disappeared), but the second time I tried it stopped responding (as it has before)

I've updated from featexmod repo, downloaded latest Cabbage and have the latest Csound.

Rory: you mentioned on Slack that it would be possible to include files automatically when exporting

On Tue, 6 Dec 2016 at 23:21, Oeyvind notifications@github.com wrote:

Ok. Got something.

I think it is related to this

Sscoreline sprintf {{i %f 0 -1 "%s" %i}}, instr_8, Sparam,

imod_num

which prints this:

i 8.010000 0 -1 "pa

...truncating the string

This string is then used with scoreline_i, and that crashes things pretty

badly.

The whole csd here:

form size(400, 400), caption("VST_MIDIator"), pluginID("vmid") csoundoutput bounds(5, 5, 300, 300), text("Output") -n -d ksmps = 64 nchnls = 2 0dbfs = 1 instr 4 Sparam strget p4 imod_num = frac(p1)*100 instr_8 = 8+frac(p1) Sscoreline sprintf {{i %f 0 -1 "%s" %i}}, instr_8, Sparam, imod_num puts Sscoreline, 1 scoreline_i Sscoreline endin instr 8 endin i4.01 3.1 600 "parm1" f0 600 e

2016-12-06 13:53 GMT-08:00 Oeyvind Brandtsegg obrandts@gmail.com:

ngh, it load the simple example (identchannel and console and that works

nicely.

But the MIDIator crashes Cabbage. Trying to strip down now.

2016-12-06 11:23 GMT-08:00 Rory Walsh notifications@github.com:

It's there now if you want to give it a whirl.

On 6 December 2016 at 18:34, Oeyvind notifications@github.com wrote:

All ok.

I'd be glad to get a notice when it is done, so I can test.

2016-12-06 9:29 GMT-08:00 Rory Walsh notifications@github.com:

Not yet. I won't be able to run off a windows build till later on.

On 6 December 2016 at 17:21, Oeyvind notifications@github.com

wrote:

Do note that it also happens on windows. Do you have a new win

version

too?

  1. des. 2016 8.55 a.m. skrev "Rory Walsh" < notifications@github.com

:

I've posted a new OSX package to here:

http://forum.cabbageaudio.com/t/latest-beta-packages-

available-here-new-release/114

Can you test it and let me know if it addresses the issue. I did

some

simple tests and I think the problem is resolved. Fingers crossed.

You are receiving this because you commented.

Reply to this email directly, view it on GitHub

<https://github.com/Oeyvind/featexmod/issues/15#

issuecomment-265205105

,

or mute the thread

<https://github.com/notifications/unsubscribe-auth/

AFUyzc0zijP85g6GmUjpwyO7Az4HLSkNks5rFZOSgaJpZM4LCl2F>

.

You are receiving this because you commented.

Reply to this email directly, view it on GitHub

<https://github.com/Oeyvind/featexmod/issues/15#issuecomment

-265212698

,

or mute the thread

<https://github.com/notifications/unsubscribe-auth/

ACkLGUbjxaofOSgDVvdNcP4PtXw1oxemks5rFZmzgaJpZM4LCl2F>

.

You are receiving this because you commented.

Reply to this email directly, view it on GitHub

<https://github.com/Oeyvind/featexmod/issues/15#issuecomment

-265214856>,

or mute the thread

<https://github.com/notifications/unsubscribe-auth/

AFUyzayonjpsafzQWsqjcbwM9O0HEDMgks5rFZt_gaJpZM4LCl2F>

.

You are receiving this because you commented.

Reply to this email directly, view it on GitHub

< https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265232645

,

or mute the thread

<https://github.com/notifications/unsubscribe-auth/

ACkLGdfU88LKfsL7Ce9z_oSqvL7ep6VEks5rFaqpgaJpZM4LCl2F>

.

You are receiving this because you commented.

Reply to this email directly, view it on GitHub

<https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265246148 ,

or mute the thread

< https://github.com/notifications/unsubscribe-auth/AFUyzej_KayHah8ar8uYBBCOmW3DyPaLks5rFbYwgaJpZM4LCl2F

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265291773, or mute the thread https://github.com/notifications/unsubscribe-auth/AIyXr0aUNXPwJNq2pLZUkPRQ90ma5_Ejks5rFd_VgaJpZM4LCl2F .

rorywalsh commented 7 years ago

Is this on OSX? Have a look here for info on the as-yet undocumented CabbageIncludes feature http://forum.cabbageaudio.com/t/custom-gui-dont-work-when-vst-is-loaded-in-daw/322/5

On 9 December 2016 at 18:23, Bernt Isak Wærstad notifications@github.com wrote:

Got a bit lost if this was a Win only issue or what. The printing seems to work fine now, but Reaper is still crashing when MIDIator is removed from a track. At first atempt it crashed in an instant (as in just disappeared), but the second time I tried it stopped responding (as it has before)

I've updated from featexmod repo, downloaded latest Cabbage and have the latest Csound.

Rory: you mentioned on Slack that it would be possible to include files automatically when exporting

On Tue, 6 Dec 2016 at 23:21, Oeyvind notifications@github.com wrote:

Ok. Got something.

I think it is related to this

Sscoreline sprintf {{i %f 0 -1 "%s" %i}}, instr_8, Sparam,

imod_num

which prints this:

i 8.010000 0 -1 "pa

...truncating the string

This string is then used with scoreline_i, and that crashes things pretty

badly.

The whole csd here:

form size(400, 400), caption("VST_MIDIator"), pluginID("vmid") csoundoutput bounds(5, 5, 300, 300), text("Output") -n -d ksmps = 64 nchnls = 2 0dbfs = 1 instr 4 Sparam strget p4 imod_num = frac(p1)*100 instr_8 = 8+frac(p1) Sscoreline sprintf {{i %f 0 -1 "%s" %i}}, instr_8, Sparam, imod_num puts Sscoreline, 1 scoreline_i Sscoreline endin instr 8 endin i4.01 3.1 600 "parm1" f0 600 e

2016-12-06 13:53 GMT-08:00 Oeyvind Brandtsegg obrandts@gmail.com:

ngh, it load the simple example (identchannel and console and that works

nicely.

But the MIDIator crashes Cabbage. Trying to strip down now.

2016-12-06 11:23 GMT-08:00 Rory Walsh notifications@github.com:

It's there now if you want to give it a whirl.

On 6 December 2016 at 18:34, Oeyvind notifications@github.com wrote:

All ok.

I'd be glad to get a notice when it is done, so I can test.

2016-12-06 9:29 GMT-08:00 Rory Walsh notifications@github.com:

Not yet. I won't be able to run off a windows build till later on.

On 6 December 2016 at 17:21, Oeyvind notifications@github.com

wrote:

Do note that it also happens on windows. Do you have a new win

version

too?

  1. des. 2016 8.55 a.m. skrev "Rory Walsh" < notifications@github.com

:

I've posted a new OSX package to here:

http://forum.cabbageaudio.com/t/latest-beta-packages-

available-here-new-release/114

Can you test it and let me know if it addresses the issue. I did

some

simple tests and I think the problem is resolved. Fingers crossed.

You are receiving this because you commented.

Reply to this email directly, view it on GitHub

<https://github.com/Oeyvind/featexmod/issues/15#

issuecomment-265205105

,

or mute the thread

<https://github.com/notifications/unsubscribe-auth/

AFUyzc0zijP85g6GmUjpwyO7Az4HLSkNks5rFZOSgaJpZM4LCl2F>

.

You are receiving this because you commented.

Reply to this email directly, view it on GitHub

<https://github.com/Oeyvind/featexmod/issues/15#issuecomment

-265212698

,

or mute the thread

<https://github.com/notifications/unsubscribe-auth/

ACkLGUbjxaofOSgDVvdNcP4PtXw1oxemks5rFZmzgaJpZM4LCl2F>

.

You are receiving this because you commented.

Reply to this email directly, view it on GitHub

<https://github.com/Oeyvind/featexmod/issues/15#issuecomment

-265214856>,

or mute the thread

<https://github.com/notifications/unsubscribe-auth/

AFUyzayonjpsafzQWsqjcbwM9O0HEDMgks5rFZt_gaJpZM4LCl2F>

.

You are receiving this because you commented.

Reply to this email directly, view it on GitHub

< https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265232645

,

or mute the thread

<https://github.com/notifications/unsubscribe-auth/

ACkLGdfU88LKfsL7Ce9z_oSqvL7ep6VEks5rFaqpgaJpZM4LCl2F>

.

You are receiving this because you commented.

Reply to this email directly, view it on GitHub

<https://github.com/Oeyvind/featexmod/issues/15# issuecomment-265246148 ,

or mute the thread

< https://github.com/notifications/unsubscribe-auth/AFUyzej_ KayHah8ar8uYBBCOmW3DyPaLks5rFbYwgaJpZM4LCl2F

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265291773, or mute the thread https://github.com/notifications/unsubscribe-auth/ AIyXr0aUNXPwJNq2pLZUkPRQ90ma5_Ejks5rFd_VgaJpZM4LCl2F

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-266084640, or mute the thread https://github.com/notifications/unsubscribe-auth/ACkLGd8-K9XwE6T8SanY-LmEhWgBZvjfks5rGZyhgaJpZM4LCl2F .

Oeyvind commented 7 years ago

It was an issue on both OSX and windows, but the console print thing seems to be fixed now. Good thing you reming me about the include files cabbage tag. I'll try that out (and send note to Bernt to test) For the crash on exit, we should move that discussion to a separate issue thread

2016-12-09 10:23 GMT-08:00 Bernt Isak Wærstad notifications@github.com:

Got a bit lost if this was a Win only issue or what. The printing seems to work fine now, but Reaper is still crashing when MIDIator is removed from a track. At first atempt it crashed in an instant (as in just disappeared), but the second time I tried it stopped responding (as it has before)

I've updated from featexmod repo, downloaded latest Cabbage and have the latest Csound.

Rory: you mentioned on Slack that it would be possible to include files automatically when exporting

On Tue, 6 Dec 2016 at 23:21, Oeyvind notifications@github.com wrote:

Ok. Got something.

I think it is related to this

Sscoreline sprintf {{i %f 0 -1 "%s" %i}}, instr_8, Sparam,

imod_num

which prints this:

i 8.010000 0 -1 "pa

...truncating the string

This string is then used with scoreline_i, and that crashes things pretty

badly.

The whole csd here:

form size(400, 400), caption("VST_MIDIator"), pluginID("vmid") csoundoutput bounds(5, 5, 300, 300), text("Output") -n -d ksmps = 64 nchnls = 2 0dbfs = 1 instr 4 Sparam strget p4 imod_num = frac(p1)*100 instr_8 = 8+frac(p1) Sscoreline sprintf {{i %f 0 -1 "%s" %i}}, instr_8, Sparam, imod_num puts Sscoreline, 1 scoreline_i Sscoreline endin instr 8 endin i4.01 3.1 600 "parm1" f0 600 e

2016-12-06 13:53 GMT-08:00 Oeyvind Brandtsegg obrandts@gmail.com:

ngh, it load the simple example (identchannel and console and that works

nicely.

But the MIDIator crashes Cabbage. Trying to strip down now.

2016-12-06 11:23 GMT-08:00 Rory Walsh notifications@github.com:

It's there now if you want to give it a whirl.

On 6 December 2016 at 18:34, Oeyvind notifications@github.com wrote:

All ok.

I'd be glad to get a notice when it is done, so I can test.

2016-12-06 9:29 GMT-08:00 Rory Walsh notifications@github.com:

Not yet. I won't be able to run off a windows build till later on.

On 6 December 2016 at 17:21, Oeyvind notifications@github.com

wrote:

Do note that it also happens on windows. Do you have a new win

version

too?

  1. des. 2016 8.55 a.m. skrev "Rory Walsh" < notifications@github.com

:

I've posted a new OSX package to here:

http://forum.cabbageaudio.com/t/latest-beta-packages-

available-here-new-release/114

Can you test it and let me know if it addresses the issue. I did

some

simple tests and I think the problem is resolved. Fingers crossed.

You are receiving this because you commented.

Reply to this email directly, view it on GitHub

<https://github.com/Oeyvind/featexmod/issues/15#

issuecomment-265205105

,

or mute the thread

<https://github.com/notifications/unsubscribe-auth/

AFUyzc0zijP85g6GmUjpwyO7Az4HLSkNks5rFZOSgaJpZM4LCl2F>

.

You are receiving this because you commented.

Reply to this email directly, view it on GitHub

<https://github.com/Oeyvind/featexmod/issues/15#issuecomment

-265212698

,

or mute the thread

<https://github.com/notifications/unsubscribe-auth/

ACkLGUbjxaofOSgDVvdNcP4PtXw1oxemks5rFZmzgaJpZM4LCl2F>

.

You are receiving this because you commented.

Reply to this email directly, view it on GitHub

<https://github.com/Oeyvind/featexmod/issues/15#issuecomment

-265214856>,

or mute the thread

<https://github.com/notifications/unsubscribe-auth/

AFUyzayonjpsafzQWsqjcbwM9O0HEDMgks5rFZt_gaJpZM4LCl2F>

.

You are receiving this because you commented.

Reply to this email directly, view it on GitHub

< https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265232645

,

or mute the thread

<https://github.com/notifications/unsubscribe-auth/

ACkLGdfU88LKfsL7Ce9z_oSqvL7ep6VEks5rFaqpgaJpZM4LCl2F>

.

You are receiving this because you commented.

Reply to this email directly, view it on GitHub

<https://github.com/Oeyvind/featexmod/issues/15# issuecomment-265246148 ,

or mute the thread

< https://github.com/notifications/unsubscribe-auth/AFUyzej_ KayHah8ar8uYBBCOmW3DyPaLks5rFbYwgaJpZM4LCl2F

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-265291773, or mute the thread https://github.com/notifications/unsubscribe-auth/ AIyXr0aUNXPwJNq2pLZUkPRQ90ma5_Ejks5rFd_VgaJpZM4LCl2F .

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Oeyvind/featexmod/issues/15#issuecomment-266084640, or mute the thread https://github.com/notifications/unsubscribe-auth/AFUyzbHEPkjMQW5e3ZEPcfkzPPMCaLCgks5rGZyggaJpZM4LCl2F .