Csound Csound-dev Csound-tekno Search About

[Csnd] csound realtime audio weirdnes

Date2011-02-10 01:54
FromJulien Claassen
Subject[Csnd] csound realtime audio weirdnes
Hello all1
   I'm using csound 5.13.0 under Linux. There seems to be a problem with 
dssi4cs and jack output. I have an instrument with an oscillator from a ladspa 
plugin. Without that plugin - using a simple oscil instead - everything is 
fine. Using that plugin (Fons Adriaensons blvco.so (1953, sawtooth), the 
following happens.
   The moment I connect one of csounds ports to a playback port on my 
soundcard, that port is silent. the moment the connection is broken, it comes 
back to life.
   If you need the complete instrument, just tell me.
   Question: What could that be? How can csound block my audio output like 
this? - Oh short thought: I'm using all the defaults and for exp_fm, lin_fm 
and sync I use 0.
   Kindly yours
            Julien

--------
Music was my first love and it will be my last (John Miles)

======== FIND MY WEB-PROJECT AT: ========
http://ltsb.sourceforge.net
the Linux TextBased Studio guide
======= AND MY PERSONAL PAGES AT: =======
http://www.juliencoder.de


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"

Date2011-02-10 04:39
FromSamuel Sagan
Subject[Csnd] Re: csound realtime audio weirdnes
Which version of Linux are you using?
More specifically, is it one that rests on pulseaudio?

Date2011-02-10 10:49
FromJulien Claassen
SubjectRe: [Csnd] Re: csound realtime audio weirdnes
Hello Samuel!
   I'm using Debian Lenny, with self compiled vnilla 2.6.30.4 kernel. Built-in 
ALSA (1.0.20) and running directly ontop of that jackdmp (1.9.7), also self 
compiled. and I'm very sure, there's nothing more audio wise. I'm using a 
completely text based system, for being blind and the system being VERY fast 
that way. and I have taken care of compiling most of my audio software for 
about 11 years, so I suspect it can't be something major wrong there. 
Especially since I use a lot of other audi software without problems.
   but as I said, the problem only arose, when using the blvco plugin for an 
osciallator. Swap that for a simple oscil and everything is fine.
   Warmly yours
          Julien

--------
Music was my first love and it will be my last (John Miles)

======== FIND MY WEB-PROJECT AT: ========
http://ltsb.sourceforge.net
the Linux TextBased Studio guide
======= AND MY PERSONAL PAGES AT: =======
http://www.juliencoder.de


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"

Date2011-02-10 10:54
FromAndres Cabrera
SubjectRe: [Csnd] Re: csound realtime audio weirdnes
Hi Julian,

Does that happen with other ladspa plugins, or just that one in particular?

Cheers,
Andres

On Thu, Feb 10, 2011 at 10:49 AM, Julien Claassen  wrote:
> Hello Samuel!
>  I'm using Debian Lenny, with self compiled vnilla 2.6.30.4 kernel. Built-in
> ALSA (1.0.20) and running directly ontop of that jackdmp (1.9.7), also self
> compiled. and I'm very sure, there's nothing more audio wise. I'm using a
> completely text based system, for being blind and the system being VERY fast
> that way. and I have taken care of compiling most of my audio software for
> about 11 years, so I suspect it can't be something major wrong there.
> Especially since I use a lot of other audi software without problems.
>  but as I said, the problem only arose, when using the blvco plugin for an
> osciallator. Swap that for a simple oscil and everything is fine.
>  Warmly yours
>         Julien
>
> --------
> Music was my first love and it will be my last (John Miles)
>
> ======== FIND MY WEB-PROJECT AT: ========
> http://ltsb.sourceforge.net
> the Linux TextBased Studio guide
> ======= AND MY PERSONAL PAGES AT: =======
> http://www.juliencoder.de
>
>
> Send bugs reports to the Sourceforge bug tracker
>           https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
> csound"
>
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"


Date2011-02-10 11:29
FromJulien Claassen
SubjectRe: [Csnd] Re: csound realtime audio weirdnes
Helly andres!
   I just noticed, not only with that one in particular, but with that one, in 
that instrument. I suppose I just include the instrument below and you can 
beat me up for all my shortcomings, in such a small orchestra. :-(
   Kindly yours
           Julien

*** miditest.orc ***
sr = 48000
kr = 48
ksmps = 1000
nchnls = 2

massign 1, 1, 1

instr 1
 	iosc1 dssiinit "blvco.so", 1, 1 ; initialise the sawtooth oscillator
 	dssiactivate iosc1, 1
 	kpitch cpsmidib 2 ; get pitch from keyboard with pitchbend
 	ipreamp ampmidi 12500
 	iamp = ipreamp + 12500 ; leaving amp to ampmidi was to harsh
 	kcoarse midictrl 78, 0.5, 1.5 ; coarse vco tune (ctrl found via
 		; aseqdump)
 	kfine midictrl 33, 0, 1 ; vco fne tune
 	kmastervol midictrl 71, 0, 1 ; master output volume
 	kfreq midictrl 74, 20, 4000 ; vcf cutoff frequency
 	kres midictrl 42, 0, 2 ; vcf resonance

 	; this was the original test osciallator, driven by some stakced
 	; sines (gen10)
 	;aosc1 oscil iamp, kpitch*kcoarse*kfine, 1
 	; vco output: handle, freq, exp_fm, lin_fm, sync
 	aosc1 dssiaudio iosc1, kpitch*kcoarse, 440, 440, 440
 	aout moogladder aosc1, kfreq, kres, 0 ; filter signal
 	aout = aout * kmastervol ; apply master output volume here
 	outs aout, aout
endin
*** miditest.orc ***

--------
Music was my first love and it will be my last (John Miles)

======== FIND MY WEB-PROJECT AT: ========
http://ltsb.sourceforge.net
the Linux TextBased Studio guide
======= AND MY PERSONAL PAGES AT: =======
http://www.juliencoder.de


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"