String p-fields in subinstr
Date | 2015-10-25 19:06 |
From | Bernt Isak Wærstad |
Subject | String p-fields in subinstr |
Attachments | Main.csd Reverb.csd |
Example files attached I want to use a string sent through p-field to set the name of a chn channel, but I can't it to work neither with subinstr (which is what I want to use) or calling from score. If I try to use this code: aOutL, aOutR subinstr "Reverb", "ReverbOne", 0.5, 0.9, 6000 I get this error:
And if i try to call it from score like this:
I get a segmentation fault. Mvh.
Bernt Isak Wærstad |
Date | 2015-10-25 19:53 |
From | Tarmo Johannes |
Subject | Re: String p-fields in subinstr |
Hi, I guess subinstr does not take string parameters (but would be very nice, if it could - also i miss it by the schedule family opcodes). I have used scoreline in such cases. 25.10.2015 21:07 kirjutas kuupäeval "Bernt Isak Wærstad" <berntisak@gmail.com>:
Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here
|
Date | 2015-10-26 07:26 |
From | Oeyvind Brandtsegg |
Subject | Re: String p-fields in subinstr |
Hi Bernt, In the reverb instr you do: Sleft sprintf "%s_L", p4 Sright sprintf "%s_R", p4 I guess this generates some kind of type error with sprintf, since the variable type is ambiguous (not declared, so to speak). This will work better: Schan strget p4 Sleft sprintf "%s_L", Schan Sright sprintf "%s_R", Schan As for subinstr, yes, it probably does not take string arguments. This would be nice to have, and natural to expect it to work just like a score line (file an issue?). Oeyvind 2015-10-25 20:53 GMT+01:00 Tarmo Johannes |
Date | 2015-10-26 22:30 |
From | Bernt Isak Wærstad |
Subject | Re: String p-fields in subinstr |
Ah, of course! the strget solved the segfault The subinstr is still not working though, so I filed an issue. Tarmo: Hmm, I don't that would work (or at least it would be very messy) - the reason for sending the channel names this way is to simplify the code for users who doesn't know Csound by using macros. I'm not sure this approach is a good one though. I guess I can try to test it with the event opcode instead in the mean time. On 26 October 2015 at 08:26, Oeyvind Brandtsegg <oyvind.brandtsegg@ntnu.no> wrote: Hi Bernt, Mvh.
Bernt Isak Wærstad |