| There have been some new things added to OSC in the devel repo, so maybe that’s what
is causing your problem.
========================
Dr Victor Lazzarini
Dean of Arts, Celtic Studies and Philosophy,
Maynooth University,
Maynooth, Co Kildare, Ireland
Tel: 00 353 7086936
Fax: 00 353 1 7086952
> On 29 Nov 2015, at 17:15, Matti Koskinen wrote:
>
> hi all,
>
> my csd used to work for a while on OS X 10.11.1. installed yesterday.I needed to install liblo for el capitan, first for my own sender to get it even send something to oscdump. csound worked well wit the new library right away. Then *probably* I made a git pull, and now csound is stuck, ctrl-c gives only interrupts, only way to get back to command line is kill -9 PID.
>
> Tried the same on ubuntu 14.04 LTS, and the same thing happens with a new git pull. Here’s he csd
>
> ; this is a quick hack csd for getting something out of segm2cs
> ; (c) -m
> ; copyright copyleft
>
>
> -d -odac -+rtaudio=portaudio
>
>
> sr=44100
> ksmps=64
> nchnls = 2
> 0dbfs=1
>
> gihandle OSCinit 7778 ;
> ga1 init 0
> gifnum init 0
> gSfile init "osc-initated.wav"
> gkvol init 0
> gkbasefreq init 0
> gkfreqshift init 0
> gkpanstart init 0
> gkpan init 0
> gkmodul init 0
> gkquit init 0
> turnon 1
> ;turnon 98
> ;for writing to file
>
> instr 1
> imaxinstr = 20
> print gihandle
> nxtmsg:
> ;sprintf(msg,"ffffffi %f %f %f %f %f %f %d",vol,basefreq,freqshift,panstart,pan,modul,0);
> kk OSClisten gihandle,"/img2snd/run","ffffffi",gkvol,gkbasefreq,gkfreqshift,gkpanstart,gkpan,gkmodul,gkquit
> gkvol = gkvol / imaxinstr
> schedkwhen kk,0,imaxinstr,2,0,0.5. ;
> schedkwhen gkquit,0,3,3,0,1 ; quit
> kgoto nxtmsg
> ex:
> prints "waitimg for osc"
> endin
>
> instr 3
> ;turnoff 98
> exitnow
> endin
>
> instr 2
> ;asig1,asig2 inch 1,2
> istr = i(gkpanstart)
> iend = i(gkpan)
> kt line istr,0.5,iend
> kdeclick linseg 0,0.1,1,0.3,1,0.1,0
> kdeclick *= 10 ; some scaling here and there
> amod oscil kdeclick*gkvol,gkmodul,1
> a1 oscil kdeclick*gkvol,gkbasefreq,1
> a2 oscil kdeclick*gkvol,gkbasefreq+gkfreqshift,1
> a1 = a1*amod; simple ring modulator
> a2= a2*amod
> out gkpanstart*a1,gkpan*a2
> endin
> instr 98
> prints "write\n"
> a1,a2 monitor
> fout gSfile,14,a1,a2
> endin
>
> instr 99
>
> exitnow
> endin
>
>
> f1 0 8192 10 1 0.33 0.12 0.8
> f0 3 ; even after 3 secs nothing
> e
>
>
>
>
> When this worked, the first osc-message started the loop, now all I get is the print gihandle=0.00 and waiting for osc.
>
> The first time I tried on ubuntu, a complete freeze of the machine.
>
> A bug in my csd or csound? Seems strange that this cud used to work for a while, or I compiled csound again.
>
> tnx
>
> -m
>
> ps. The code that sends the osc-messages is an OpenCV foreground segmentation, based on the position, pose etc. a different set of parameters are sent. I’ll probably put this to github, when osc works again.
>
> Also, when 0dbfs is defined as 1, are negative values (log10(< 1)) allowed?
>
> same
>
> 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 |