Ctcsound vs. Python API
Date | 2016-03-31 06:24 |
From | Emmett Palaima |
Subject | Ctcsound vs. Python API |
Hi, I wanted to ask what the differences were between ctcsound and the python API? Does ctcsound also support csd performance threading in the way that the python API does?
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
Thanks, Emmett Palaima |
Date | 2016-03-31 07:56 |
From | Francois PINOT |
Subject | Re: Ctcsound vs. Python API |
ctcsound is written by hand using the FFI module ctypes while csnd6 is automatically genererated by SWIG. ctcsound does not need any extra dll, it runs with python 2.x and python 3.x as well, while csnd6 needs the extra dll _csnd6.xxx, and can run only with python 2.7. Finally, ctcsound uses numpy arrays to point directly to csound data structures like channels and tables (so the dependancy to numpy).ctcsound supports also CsoundperformanceThread. That's the reason for Csound 6.07 or higher, because I had to add some C code to the CsPerformanceThread.cpp file in Csound sources to allow ctcsound to bind to the methods of this C++ class. 2016-03-31 7:24 GMT+02:00 Emmett Palaima <epalaima@berklee.edu>:
|
Date | 2016-03-31 10:21 |
From | Oeyvind Brandtsegg |
Subject | Re: Ctcsound vs. Python API |
I haven't tested this yet, but I am most eager to do so next time I need the python interface. It is also neat that it seems too ease the transition to Python 3. Is there any reason why ctcsound should not replace csnd6 as the default (distributed/installed) python interface to Csound? How easy is it to port existing examples from csnd6 to ctcsound? best Oeyvind 2016-03-31 8:56 GMT+02:00 Francois PINOT |
Date | 2016-03-31 10:22 |
From | Victor Lazzarini |
Subject | Re: Ctcsound vs. Python API |
I think we can have both side-by-side for now and then put csnd6 to bed when we release Csound 7.00. ======================== 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 31 Mar 2016, at 10:21, Oeyvind Brandtsegg |
Date | 2016-03-31 10:33 |
From | Francois PINOT |
Subject | Re: Ctcsound vs. Python API |
They can even work together sharing the same opaque pointer to a Csound instance (see https://github.com/fggp/ctcsound/blob/master/ctcsoundWorkingWithCsnd6.ipynb). We should keep csnd6 for backward compatibility...2016-03-31 11:22 GMT+02:00 Victor Lazzarini <Victor.Lazzarini@nuim.ie>: I think we can have both side-by-side for now and then put csnd6 to bed when we release Csound 7.00. |
Date | 2016-03-31 10:38 |
From | Victor Lazzarini |
Subject | Re: Ctcsound vs. Python API |
That’s quite clever. ======================== 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 31 Mar 2016, at 10:33, Francois PINOT |
Date | 2016-03-31 10:46 |
From | Francois PINOT |
Subject | Re: Ctcsound vs. Python API |
There's one last point: as I don't have an OSX system, I'm not sure that line 2346 is correct in ctcsound.py: in this line, the shared library for using CsoundPerformanceThread is loaded. I've already tested it on linux and windows. The test has to be done with Csound 6.07 or higher. Francois2016-03-31 11:38 GMT+02:00 Victor Lazzarini <Victor.Lazzarini@nuim.ie>: That’s quite clever. |
Date | 2016-03-31 10:52 |
From | Victor Lazzarini |
Subject | Re: Ctcsound vs. Python API |
OK, give me a link to a test script and I can try it right now. ======================== 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 31 Mar 2016, at 10:46, Francois PINOT |
Date | 2016-03-31 10:57 |
From | Francois PINOT |
Subject | Re: Ctcsound vs. Python API |
Just run 'python test_ctcsound.py' from a console. It should print a lot of lines ending with something like this: Ran 6 tests in 2.469s OK removed instance of instr 0 ... 2016-03-31 11:52 GMT+02:00 Victor Lazzarini <Victor.Lazzarini@nuim.ie>: OK, give me a link to a test script and I can try it right now. |
Date | 2016-03-31 11:35 |
From | Victor Lazzarini |
Subject | Re: Ctcsound vs. Python API |
The line should work on standard installations. However, there seems to be a problem: ligeti:ctcsound victor$ python test_ctcsound.py Traceback (most recent call last): File "test_ctcsound.py", line 24, in |
Date | 2016-03-31 11:36 |
From | Victor Lazzarini |
Subject | Re: Ctcsound vs. Python API |
Sorry I meant elif sys.platform.startswith('darwin'): libcspt = CDLL("libcsnd6.6.0.dylib") ======================== 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 31 Mar 2016, at 10:57, Francois PINOT |
Date | 2016-03-31 12:07 |
From | Victor Lazzarini |
Subject | Re: Ctcsound vs. Python API |
Looks like visibility was not turned on. I’ve changed the definition of PUBLIK (why not just use PUBLIC?) in csPerfThread.cpp ======================== 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 31 Mar 2016, at 11:35, Victor Lazzarini |
Date | 2016-03-31 12:55 |
From | Francois PINOT |
Subject | Re: Ctcsound vs. Python API |
Well done! Does it run now? PUBLIK because PUBLIC was already used in interfaces/CsoundFile.hpp and in interfaces/filebuilding.h. I know this is useless because the pragma redefines the constant inside the file...2016-03-31 13:07 GMT+02:00 Victor Lazzarini <Victor.Lazzarini@nuim.ie>: Looks like visibility was not turned on. I’ve changed the definition of PUBLIK (why not just use PUBLIC?) in |
Date | 2016-03-31 13:51 |
From | Tarmo Johannes |
Subject | Re: Ctcsound vs. Python API |
Hi, Maybe it was covered in previous emails - I must also check if ctcsound works inside CsoundQt, bug I guess, it should. Thank you! 31.03.2016 9:57 kirjutas kuupäeval "Francois PINOT" <fggpinot@gmail.com>:
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 | 2016-03-31 14:12 |
From | Francois PINOT |
Subject | Re: Ctcsound vs. Python API |
ctcsound is a pure python module. As long as you have Csound 6.07 or higher and numpy installed, it can do what do other python modules. You can use python threads, you can even use the thread, mutex and lock machinery of csound which is included in ctcsound, and the CsoundPerformanceThread class as well. Francois2016-03-31 14:51 GMT+02:00 Tarmo Johannes <tarmo.johannes@otsakool.edu.ee>:
|