Where can I find a c ++ csound tutorial?

I just opened csound and set its bindings in C ++.

The API is described here (after a typical installation on Linux):

/usr/share/doc/libcsound64-doc/html/index.html 

However, what I am missing is a good tutorial to help me get started with the API.

+8
c ++ audio csound
source share
1 answer

Here's an introduction to the C API (pdf) , which is almost identical to the C ++ API. The Csound source code also has several examples in the example and interface folders.

+5
source share

Source: https://habr.com/ru/post/651393/


All Articles