Csound Csound-dev Csound-tekno Search About

Clicking when playing MIDI even with envelope tweaking

Date2015-09-23 14:55
FromBeinan Li
SubjectClicking when playing MIDI even with envelope tweaking
Attachmentsdeb_clai.mid  None  None  
Hi Csound

I'm trying to play a standard MIDI file using Csound, 
but found no ways to eliminate the clicks, which according to some tutorials are caused by missing envelope. However, after applying the opcode linenr and tweaking its arguments along with the i-time amplitude, I still hear the clicks. 

I had thought that maybe the durations of the notes vary and a single fixed envelope could fail to cover all of them. But no matter how small (like 0.01) the rise-time and decay-time I feed linenr, the clicks are still there.

Did I miss anything else?

My command for generating the output WAVE file from the MIDI:

csound -W -Fdeb_clai.mid -omidiout.wav midi.orc midi.sco

Here is my .orc, and .sco (the MIDI file that i was using is also attached): 

; midi.orc
sr = 44100
ksmps = 10
nchnls = 1
0dbfs = 1

instr 1 ; With envelope
ifrq cpsmidi
iamp ampmidi 0.5
kamp linenr iamp, .05, .5, .01 ; amp, riseTime, decTime, expDecFactor
a1 oscil iamp, ifrq, 1
out a1
endin

; midi.sco
f1 0 4096 10 1
f0 30

Thanks,
Beinan


Date2015-09-23 15:01
FromRory Walsh
SubjectRe: Clicking when playing MIDI even with envelope tweaking
AttachmentsNone  None  
You need to apply the envelope to your output by sending to the amp input of your oscillator:

instr 1 ; With envelope
ifrq cpsmidi
iamp ampmidi 0.5
kamp linenr iamp, .05, .5, .01 ; amp, riseTime, decTime, expDecFactor
a1 oscil kamp, ifrq, 1
out a1
endin

You were creating the envelope, but not using it :)



On 23 September 2015 at 15:55, Beinan Li <li.beinan@gmail.com> wrote:
Hi Csound

I'm trying to play a standard MIDI file using Csound, 
but found no ways to eliminate the clicks, which according to some tutorials are caused by missing envelope. However, after applying the opcode linenr and tweaking its arguments along with the i-time amplitude, I still hear the clicks. 

I had thought that maybe the durations of the notes vary and a single fixed envelope could fail to cover all of them. But no matter how small (like 0.01) the rise-time and decay-time I feed linenr, the clicks are still there.

Did I miss anything else?

My command for generating the output WAVE file from the MIDI:

csound -W -Fdeb_clai.mid -omidiout.wav midi.orc midi.sco

Here is my .orc, and .sco (the MIDI file that i was using is also attached): 

; midi.orc
sr = 44100
ksmps = 10
nchnls = 1
0dbfs = 1

instr 1 ; With envelope
ifrq cpsmidi
iamp ampmidi 0.5
kamp linenr iamp, .05, .5, .01 ; amp, riseTime, decTime, expDecFactor
a1 oscil iamp, ifrq, 1
out a1
endin

; midi.sco
f1 0 4096 10 1
f0 30

Thanks,
Beinan


------------------------------------------------------------------------------
Monitor Your Dynamic Infrastructure at Any Scale With Datadog!
Get real-time metrics from all of your servers, apps and tools
in one place.
SourceForge users - Click here to start your Free Trial of Datadog now!
http://pubads.g.doubleclick.net/gampad/clk?id=241902991&iu=/4140
_______________________________________________
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-09-23 15:12
FromBeinan Li
SubjectRe: Clicking when playing MIDI even with envelope tweaking
AttachmentsNone  None  
Aha! My bad! 
Thanks a lot!

Thanks,
Beinan


On Wed, Sep 23, 2015 at 10:01 AM, Rory Walsh <rorywalsh@ear.ie> wrote:
You need to apply the envelope to your output by sending to the amp input of your oscillator:

instr 1 ; With envelope
ifrq cpsmidi
iamp ampmidi 0.5
kamp linenr iamp, .05, .5, .01 ; amp, riseTime, decTime, expDecFactor
a1 oscil kamp, ifrq, 1
out a1
endin

You were creating the envelope, but not using it :)



On 23 September 2015 at 15:55, Beinan Li <li.beinan@gmail.com> wrote:
Hi Csound

I'm trying to play a standard MIDI file using Csound, 
but found no ways to eliminate the clicks, which according to some tutorials are caused by missing envelope. However, after applying the opcode linenr and tweaking its arguments along with the i-time amplitude, I still hear the clicks. 

I had thought that maybe the durations of the notes vary and a single fixed envelope could fail to cover all of them. But no matter how small (like 0.01) the rise-time and decay-time I feed linenr, the clicks are still there.

Did I miss anything else?

My command for generating the output WAVE file from the MIDI:

csound -W -Fdeb_clai.mid -omidiout.wav midi.orc midi.sco

Here is my .orc, and .sco (the MIDI file that i was using is also attached): 

; midi.orc
sr = 44100
ksmps = 10
nchnls = 1
0dbfs = 1

instr 1 ; With envelope
ifrq cpsmidi
iamp ampmidi 0.5
kamp linenr iamp, .05, .5, .01 ; amp, riseTime, decTime, expDecFactor
a1 oscil iamp, ifrq, 1
out a1
endin

; midi.sco
f1 0 4096 10 1
f0 30

Thanks,
Beinan


------------------------------------------------------------------------------
Monitor Your Dynamic Infrastructure at Any Scale With Datadog!
Get real-time metrics from all of your servers, apps and tools
in one place.
SourceForge users - Click here to start your Free Trial of Datadog now!
http://pubads.g.doubleclick.net/gampad/clk?id=241902991&iu=/4140
_______________________________________________
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-09-23 19:18
Fromjoachim heintz
SubjectRe: Clicking when playing MIDI even with envelope tweaking
and if you want a really *beautiful* oscillator sound, use poscil 
instead of oscil.
(this is a tip of luis jure, if i recall correctly ...)

	j


On 23/09/15 16:01, Rory Walsh wrote:
> You need to apply the envelope to your output by sending to the amp
> input of your oscillator:
>
> instr 1 ; With envelope
> ifrq cpsmidi
> iamp ampmidi 0.5
> kamp linenr iamp, .05, .5, .01 ; amp, riseTime, decTime, expDecFactor
> a1 oscil kamp, ifrq, 1
> out a1
> endin
>
> You were creating the envelope, but not using it :)
>
>
>
> On 23 September 2015 at 15:55, Beinan Li  > wrote:
>
>     Hi Csound
>
>     I'm trying to play a standard MIDI file using Csound,
>     but found no ways to eliminate the clicks, which according to some
>     tutorials are caused by missing envelope. However, after applying
>     the opcode linenr and tweaking its arguments along with the i-time
>     amplitude, I still hear the clicks.
>
>     I had thought that maybe the durations of the notes vary and a
>     single fixed envelope could fail to cover all of them. But no matter
>     how small (like 0.01) the rise-time and decay-time I feed linenr,
>     the clicks are still there.
>
>     Did I miss anything else?
>
>     My command for generating the output WAVE file from the MIDI:
>
>         csound -W -Fdeb_clai.mid -omidiout.wav midi.orc midi.sco
>
>
>     Here is my .orc, and .sco (the MIDI file that i was using is also
>     attached):
>
>     ; midi.orc
>     sr = 44100
>     ksmps = 10
>     nchnls = 1
>     0dbfs = 1
>
>     instr 1 ; With envelope
>     ifrq cpsmidi
>     iamp ampmidi 0.5
>     kamp linenr iamp, .05, .5, .01 ; amp, riseTime, decTime, expDecFactor
>     a1 oscil iamp, ifrq, 1
>     out a1
>     endin
>
>     ; midi.sco
>     f1 0 4096 10 1
>     f0 30
>
>     Thanks,
>     Beinan
>
>
>     ------------------------------------------------------------------------------
>     Monitor Your Dynamic Infrastructure at Any Scale With Datadog!
>     Get real-time metrics from all of your servers, apps and tools
>     in one place.
>     SourceForge users - Click here to start your Free Trial of Datadog now!
>     http://pubads.g.doubleclick.net/gampad/clk?id=241902991&iu=/4140
>     _______________________________________________
>     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
>
>
>
>
> ------------------------------------------------------------------------------
> Monitor Your Dynamic Infrastructure at Any Scale With Datadog!
> Get real-time metrics from all of your servers, apps and tools
> in one place.
> SourceForge users - Click here to start your Free Trial of Datadog now!
> http://pubads.g.doubleclick.net/gampad/clk?id=241902991&iu=/4140
>
>
>
> _______________________________________________
> 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
>

------------------------------------------------------------------------------
Monitor Your Dynamic Infrastructure at Any Scale With Datadog!
Get real-time metrics from all of your servers, apps and tools
in one place.
SourceForge users - Click here to start your Free Trial of Datadog now!
http://pubads.g.doubleclick.net/gampad/clk?id=241902991&iu=/4140
_______________________________________________
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-09-23 19:26
FromRory Walsh
SubjectRe: Clicking when playing MIDI even with envelope tweaking
AttachmentsNone  None  
Joachim, you'll have to give the back story to your absolute antipathy of oscil over the course of the Csound conference. I'm sure it's an interesting story!  

On 23 September 2015 at 19:18, joachim heintz <jh@joachimheintz.de> wrote:
and if you want a really *beautiful* oscillator sound, use poscil
instead of oscil.
(this is a tip of luis jure, if i recall correctly ...)

        j


On 23/09/15 16:01, Rory Walsh wrote:
> You need to apply the envelope to your output by sending to the amp
> input of your oscillator:
>
> instr 1 ; With envelope
> ifrq cpsmidi
> iamp ampmidi 0.5
> kamp linenr iamp, .05, .5, .01 ; amp, riseTime, decTime, expDecFactor
> a1 oscil kamp, ifrq, 1
> out a1
> endin
>
> You were creating the envelope, but not using it :)
>
>
>
> On 23 September 2015 at 15:55, Beinan Li <li.beinan@gmail.com
> <mailto:li.beinan@gmail.com>> wrote:
>
>     Hi Csound
>
>     I'm trying to play a standard MIDI file using Csound,
>     but found no ways to eliminate the clicks, which according to some
>     tutorials are caused by missing envelope. However, after applying
>     the opcode linenr and tweaking its arguments along with the i-time
>     amplitude, I still hear the clicks.
>
>     I had thought that maybe the durations of the notes vary and a
>     single fixed envelope could fail to cover all of them. But no matter
>     how small (like 0.01) the rise-time and decay-time I feed linenr,
>     the clicks are still there.
>
>     Did I miss anything else?
>
>     My command for generating the output WAVE file from the MIDI:
>
>         csound -W -Fdeb_clai.mid -omidiout.wav midi.orc midi.sco
>
>
>     Here is my .orc, and .sco (the MIDI file that i was using is also
>     attached):
>
>     ; midi.orc
>     sr = 44100
>     ksmps = 10
>     nchnls = 1
>     0dbfs = 1
>
>     instr 1 ; With envelope
>     ifrq cpsmidi
>     iamp ampmidi 0.5
>     kamp linenr iamp, .05, .5, .01 ; amp, riseTime, decTime, expDecFactor
>     a1 oscil iamp, ifrq, 1
>     out a1
>     endin
>
>     ; midi.sco
>     f1 0 4096 10 1
>     f0 30
>
>     Thanks,
>     Beinan
>
>
>     ------------------------------------------------------------------------------
>     Monitor Your Dynamic Infrastructure at Any Scale With Datadog!
>     Get real-time metrics from all of your servers, apps and tools
>     in one place.
>     SourceForge users - Click here to start your Free Trial of Datadog now!
>     http://pubads.g.doubleclick.net/gampad/clk?id=241902991&iu=/4140
>     _______________________________________________
>     Csound-users mailing list
>     Csound-users@lists.sourceforge.net
>     <mailto: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
>
>
>
>
> ------------------------------------------------------------------------------
> Monitor Your Dynamic Infrastructure at Any Scale With Datadog!
> Get real-time metrics from all of your servers, apps and tools
> in one place.
> SourceForge users - Click here to start your Free Trial of Datadog now!
> http://pubads.g.doubleclick.net/gampad/clk?id=241902991&iu=/4140
>
>
>
> _______________________________________________
> 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
>

------------------------------------------------------------------------------
Monitor Your Dynamic Infrastructure at Any Scale With Datadog!
Get real-time metrics from all of your servers, apps and tools
in one place.
SourceForge users - Click here to start your Free Trial of Datadog now!
http://pubads.g.doubleclick.net/gampad/clk?id=241902991&iu=/4140
_______________________________________________
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