Csound Csound-dev Csound-tekno Search About

Does massign 0,0 interfere with negative p3 notes?

Date2015-05-17 01:08
FromForrest Curo
SubjectDoes massign 0,0 interfere with negative p3 notes?
AttachmentsNone  None  
I was having trouble generating an instance with a negative p3 from an instrument using midinn to trigger those notes.

This instrument generates an instance with a negative p3 from its own p-fields:

instr 4;
kp = p4
kvel = p5
kquot = p6
kmod = p7
event "i", kp, 0, -60, kvel, kquot, kmod
endin

and when, instead of doing that directly from the instrument that's been responding to midinn I instead put in the line:
event "i", 4, .01, .001, kp, kvel, kquot, kmod
I get the sustained note.

If it's                |
                       v
event "i", 4, .001, .001, kp, kvel, kquot, kmod
I get silence.
?


Date2015-05-17 10:07
FromVictor Lazzarini
SubjectRe: Does massign 0,0 interfere with negative p3 notes?
Try setting to zero each channel with massign: 

icnt init 1
until icnt > 16 do
massign icnt,0
icnt +=1
od

Victor Lazzarini
Dean of Arts, Celtic Studies, and Philosophy
Maynooth University
Ireland

> On 17 May 2015, at 01:08, Forrest Curo  wrote:
> 
> I was having trouble generating an instance with a negative p3 from an instrument using midinn to trigger those notes.
> 
> This instrument generates an instance with a negative p3 from its own p-fields:
> 
> instr 4; 
> kp = p4
> kvel = p5
> kquot = p6
> kmod = p7
> event "i", kp, 0, -60, kvel, kquot, kmod
> endin
> 
> and when, instead of doing that directly from the instrument that's been responding to midinn I instead put in the line:
> event "i", 4, .01, .001, kp, kvel, kquot, kmod
> I get the sustained note.
> 
> If it's                |
>                        v
> event "i", 4, .001, .001, kp, kvel, kquot, kmod
> I get silence.
> ?
> 
> ------------------------------------------------------------------------------
> One dashboard for servers and applications across Physical-Virtual-Cloud 
> Widest out-of-the-box monitoring support with 50+ applications
> Performance metrics, stats and reports that give you Actionable Insights
> Deep dive visibility with transaction tracing using APM Insight.
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> _______________________________________________
> Csound-users mailing list
> Csound-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-users
> Send bugs reports to
>        https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here

------------------------------------------------------------------------------
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
_______________________________________________
Csound-users mailing list
Csound-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-users
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Date2015-05-17 14:32
FromForrest Curo
SubjectRe: Does massign 0,0 interfere with negative p3 notes?
AttachmentsNone  None  
That works directly, thanks much!

But the logic of the instrument is essentially unchanged (except I kept simplifying frantically) and I'm quite curious what was eating the notes?!

On Sun, May 17, 2015 at 2:07 AM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
Try setting to zero each channel with massign:

icnt init 1
until icnt > 16 do
massign icnt,0
icnt +=1
od

Victor Lazzarini
Dean of Arts, Celtic Studies, and Philosophy
Maynooth University
Ireland

> On 17 May 2015, at 01:08, Forrest Curo <treegestalt@gmail.com> wrote:
>
> I was having trouble generating an instance with a negative p3 from an instrument using midinn to trigger those notes.
>
> This instrument generates an instance with a negative p3 from its own p-fields:
>
> instr 4;
> kp = p4
> kvel = p5
> kquot = p6
> kmod = p7
> event "i", kp, 0, -60, kvel, kquot, kmod
> endin
>
> and when, instead of doing that directly from the instrument that's been responding to midinn I instead put in the line:
> event "i", 4, .01, .001, kp, kvel, kquot, kmod
> I get the sustained note.
>
> If it's                |
>                        v
> event "i", 4, .001, .001, kp, kvel, kquot, kmod
> I get silence.
> ?
>
> ------------------------------------------------------------------------------
> One dashboard for servers and applications across Physical-Virtual-Cloud
> Widest out-of-the-box monitoring support with 50+ applications
> Performance metrics, stats and reports that give you Actionable Insights
> Deep dive visibility with transaction tracing using APM Insight.
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> _______________________________________________
> Csound-users mailing list
> Csound-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-users
> Send bugs reports to
>        https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here

------------------------------------------------------------------------------
One dashboard for servers and applications across Physical-Virtual-Cloud
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
_______________________________________________
Csound-users mailing list
Csound-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-users
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here


Date2015-05-17 14:52
FromVictor Lazzarini
SubjectRe: Does massign 0,0 interfere with negative p3 notes?
AttachmentsNone  None  
Maybe some noteoff messages were directed to the instrument. The code supresses these now.

Victor Lazzarini
Dean of Arts, Celtic Studies, and Philosophy
Maynooth University
Ireland

On 17 May 2015, at 14:32, Forrest Curo <treegestalt@gmail.com> wrote:

That works directly, thanks much!

But the logic of the instrument is essentially unchanged (except I kept simplifying frantically) and I'm quite curious what was eating the notes?!

On Sun, May 17, 2015 at 2:07 AM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
Try setting to zero each channel with massign:

icnt init 1
until icnt > 16 do
massign icnt,0
icnt +=1
od

Victor Lazzarini
Dean of Arts, Celtic Studies, and Philosophy
Maynooth University
Ireland

> On 17 May 2015, at 01:08, Forrest Curo <treegestalt@gmail.com> wrote:
>
> I was having trouble generating an instance with a negative p3 from an instrument using midinn to trigger those notes.
>
> This instrument generates an instance with a negative p3 from its own p-fields:
>
> instr 4;
> kp = p4
> kvel = p5
> kquot = p6
> kmod = p7
> event "i", kp, 0, -60, kvel, kquot, kmod
> endin
>
> and when, instead of doing that directly from the instrument that's been responding to midinn I instead put in the line:
> event "i", 4, .01, .001, kp, kvel, kquot, kmod
> I get the sustained note.
>
> If it's                |
>                        v
> event "i", 4, .001, .001, kp, kvel, kquot, kmod
> I get silence.
> ?
>
> ------------------------------------------------------------------------------
> One dashboard for servers and applications across Physical-Virtual-Cloud
> Widest out-of-the-box monitoring support with 50+ applications
> Performance metrics, stats and reports that give you Actionable Insights
> Deep dive visibility with transaction tracing using APM Insight.
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> _______________________________________________
> Csound-users mailing list
> Csound-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-users
> Send bugs reports to
>        https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here

------------------------------------------------------------------------------
One dashboard for servers and applications across Physical-Virtual-Cloud
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
_______________________________________________
Csound-users mailing list
Csound-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-users
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

------------------------------------------------------------------------------
One dashboard for servers and applications across Physical-Virtual-Cloud
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
_______________________________________________
Csound-users mailing list
Csound-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-users
Send bugs reports to
       https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here