[Csnd] Zak patching Popping Samples ?
Date | 2018-09-07 10:21 |
From | fauveboy |
Subject | [Csnd] Zak patching Popping Samples ? |
I want to upload a csound program Im working on for support. Pops are occuring i believe because of a build up of samples within the zak patching opcode? Im not completely sure its only happening when I send mulitple percussive sounds to a mixer which have less than 0.30 of a beat between each other and 89bpm. I have used envelopes which suggests the pops arent occurring from the sound source? i've linked the file uncase someone is happy to have a look; LINK: https://we.tl/t-glU8icaetR on download there is a zip file called forcsoundforum. Inside that there are two folders is one called intruments (which is where I define the instruments) and in the other folder called Score_AudioforForum is chimeAbi.orc and chimeAbi.sco (amonsgt other folders) which will reveal what the sound is doing. am I using zak in a way that is creating these pops? Many many thanks, J -- Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html 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 | 2018-09-07 11:21 |
From | thorin kerr |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
Instrument 9999 is the zak clearing instrument (zacl). Do you use it? It should be always on. On Fri, 7 Sep. 2018, 7:21 pm fauveboy, <joel.ramsbottom@hotmail.co.uk> wrote: I want to upload a csound program Im working on for support. Pops are |
Date | 2018-09-07 11:36 |
From | thorin kerr |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
Hans Mikelson has worked with zak on large orcs. Worth studying. On Fri, 7 Sep. 2018, 8:21 pm thorin kerr, <thorin.kerr@gmail.com> wrote:
|
Date | 2018-09-07 12:58 |
From | fauveboy |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
I do use zacl at the end of each of the call to the mixer instead of the instr 9999 you see. But perhaps theres something going own as there are multiple i statements (be it short) before zacl? Thanks I'll take a look at your link too. -- Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html 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 | 2018-09-08 11:59 |
From | fauveboy |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
its a bit confusing what he's done because his score says : ; Mixer ; Sta Dur Ch1 Gain Pan Ch2 Gain Pan i100 0 2 1 2 .5 3 0 0 ; Clear Channels ; Sta Dur i110 0 2 The clearance is happening at the same time as the sound is using the channel? I placed my instrument 9999 making sure its included the control channels (which it didnt before). But I get silence ? How does his example work? instr 9999 zacl 0, 30 ; Clear audio channels 0 to 30 zkcl 0, 30 ; Clear control channels 0 to 30 endin -- Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html 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 | 2018-09-08 14:54 |
From | thorin kerr |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
It's a little unusual because he's not accumulating all the sound into an 'always on' output. Instead, instrument 100 (the mixer) is the only instrument with outs, and it gets instantiated at the end of a particular signal path (e.g. vco > chorus > reverb > mixer/out/clear). The analogy is a bit more like a channel strip on an actual mixer desk (with gain and pan). I do see he's specified multiple clearing instruments that start and stop with each mixer channel. Probably doesn't need to do that. One 'always on' clearing instrument would work just the same. So... clearing doesn't interfere because of the way Csound works. You'll see that instrument 110 is the last instrument number in the orc. That's important. I'm not a developer, so I don't want to say exactly why, but as I understand it, Csound calculates audio in a round-robin by order of instrument number. In this case, the audio goes to an out (so you hear it), then gets cleared after output. And because the clearing instrument is the last numbered intrument, then that should work fine. If you're not getting audio, make sure your out instrument is a lower number than your clearing instrument. Clearing before output will get you silence. And... all that said... if you're not clearing zak channels, I find you tend to get more of a high pitched whine, rather than pops. So this may not be your issue at all. Thorin On Sat, 8 Sep. 2018, 8:59 pm fauveboy, <joel.ramsbottom@hotmail.co.uk> wrote: its a bit confusing what he's done because his score says : |
Date | 2018-09-08 19:10 |
From | fauveboy |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
Its a tough one because: My Mixer equivalent to his instr 100 is also the only instrument that outputs audio and is now instantiated at the end of the signal path. my clearance instrument like 110 is also the last in the orc (and the score). So, the audio should reach the output before the clearance. Which means its still odd that theres silence when use: zkcl 0, 30. I doing get a high pitchness when I don't use : zacl 0, 30 And as you say about the whining there is none, just pops...not solved yet. So it might be something else i guess? -- Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html 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 | 2018-09-08 20:08 |
From | jpff |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
which versin was giving the pops? Locally built of 6.11 or what? On Sat, 8 Sep 2018, fauveboy wrote: > Its a tough one because: > My Mixer equivalent to his instr 100 is also the only instrument that > outputs audio and is now instantiated at the end of the signal path. > > my clearance instrument like 110 is also the last in the orc (and the > score). So, the audio should reach the output before the clearance. Which > means its still odd that theres silence when use: > zkcl 0, 30. > > I doing get a high pitchness when I don't use : > zacl 0, 30 > > And as you say about the whining there is none, just pops...not solved yet. > So it might be something else i guess? > > > > > > > > -- > Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html > > 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 > 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 | 2018-09-09 11:27 |
From | fauveboy |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
I used sudo apt-get on raspbian lite have version 6.08 -- Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html 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 | 2018-09-09 13:15 |
From | John ff |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
OK,so my theory is wrong. I took a copy of your code but I am not sure I will have time to adjust it wrt the file names in the includes. Would be easier with relative paths and/or use of INCDIR Sent from TypeApp On Sep 9, 2018, 11:28, at 11:28, fauveboy |
Date | 2018-09-09 14:56 |
From | fauveboy |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
Okay I'll rearrange the program and upload another link if thats okay :) -- Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html 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 | 2018-09-10 11:59 |
From | fauveboy |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
the program is now a csd file that doesnt't need any adjusting and so should run as is. This csd file is inside the OneChma.zip file which also includes the sco/txt files which are included in the csd file. the audio plays back with quick percussive hits LINK>> https://we.tl/t-5VczxUBYYp I now believe that the pop is due to the "metallicReverb" which you may see included in the score? do avoid it i've been adjust its parameters and maybe have to add an envelope after the reverb. However when i include zkcl along side zacl at the end of the insturment Mixer4TrackNosend1 there is still silence i havent worked out why that is the case yet, so for now zkcl is commented out which maybe be a problem later in the score?? -- Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html 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 | 2018-09-10 17:16 |
From | jpff |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
I tried to get that file but it was a zip file containung one empty directory. On Mon, 10 Sep 2018, fauveboy wrote: > the program is now a csd file that doesnt't need any adjusting and so should > run as is. This csd file is inside the OneChma.zip file which also includes > the sco/txt files which are included in the csd file. > > the audio plays back with quick percussive hits > > LINK>> https://we.tl/t-5VczxUBYYp > > I now believe that the pop is due to the "metallicReverb" which you may see > included in the score? do avoid it i've been adjust its parameters and maybe > have to add an envelope after the reverb. > > However when i include zkcl along side zacl at the end of the insturment > Mixer4TrackNosend1 there is still silence i havent worked out why that is > the case yet, so for now zkcl is commented out which maybe be a problem > later in the score?? > > > > -- > Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html > > 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 > 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 | 2018-09-11 08:33 |
From | fauveboy |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
Very sorry about that i left out the -r flag in my zip command. This will be a full directory: heres the new LINK>> https://we.tl/t-7WKhp0qMRw -- Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html 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 | 2018-09-11 18:04 |
From | jpff |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
OK I can run chma.csd to generate sounds. I did not find and score statement after the first 0.27s so the silence was not unexpected. What have I missed? On Tue, 11 Sep 2018, fauveboy wrote: > Very sorry about that i left out the -r flag in my zip command. > This will be a full directory: > heres the new LINK>> https://we.tl/t-7WKhp0qMRw > > > > -- > Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html > > 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 > 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 | 2018-09-11 18:26 |
From | fauveboy |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
thats great thanks. So, inside the file Mixer4TrackNoSend1.csd You'll see that zkcl is commented. If you uncomment zkcl thats when you should get a silent output? -- Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html 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 | 2018-09-11 19:26 |
From | jpff |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
Removing the comment symbol I get lots of out-of-range samples with still silence after. Is that the complaint? On Tue, 11 Sep 2018, fauveboy wrote: > thats great thanks. So, inside the file Mixer4TrackNoSend1.csd > > You'll see that zkcl is commented. If you uncomment zkcl thats when you > should get a silent output? > > > > -- > Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html > > 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 > 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 | 2018-09-12 09:11 |
From | fauveboy |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
hmm i dont get samples out of range mine says: overall samples out of range: 0 0 it seems to perform fine its just theres no overall amps? -- Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html 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 | 2018-09-21 15:53 |
From | fauveboy |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
The doesnt seem to be implications for not including zkcl? -- Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html 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 | 2018-09-21 23:23 |
From | John ff |
Subject | Re: [Csnd] Zak patching Popping Samples ? |
Sorry but y do not understand.
Sent from TypeApp
On 21 Sep 2018, at 15:53, fauveboy <joel.ramsbottom@hotmail.co.uk> wrote: The doesnt seem to be implications for not including zkcl? |