Questions tagged [csound]

Csound is a sound design, audio synthesis, and signal processing system, providing facilities for music composition and performance on all major operating systems and platforms.

About Csound

Csound is a sound and music computing system which was originally developed by Barry Vercoe in 1985 at MIT Media Lab. Since the 90s, it has been developed by a group of core developers, and a wider community of volunteers which contribute examples, documentation, articles, and takes part of the Csound development with bug reports, feature requests and discussions with the core development team.

Although Csound has a strong tradition as a tool for composing electro-acoustic pieces, it is used by composers and musicians for any kind of music that can be made with the help of the computer. Csound can also be used in real-time and interactive contexts, on mobile devices or in combination with other programming languages.

One of the main principles in Csound development is to guarantee backwards compatibility. You can still render a Csound source file from 1986 on the latest Csound release, and you should be able to render a file written today with the latest Csound in 2036.

Source: http://csound.github.io/about.html (2015-10-05)

43 questions
0
votes
2 answers

How to include durations in an instrument definition in Csound

Using the function oscil, I define an oscillator bank with given frequencies and amplitudes: instr 1 a1 oscil .3, 110 outs a1,a1 a2 oscil .2, 220 outs a2,a2 a3 oscil .1, 330 outs a3,a3 endin I know that I can set…
Karlo
  • 1,630
  • 4
  • 33
  • 57
0
votes
1 answer

CSound6 and it's lack of 32 bit libraries

I'm probably missing something truly essential in my CSound6 API adventures. I've scoured the internets for answers but without luck. Also, this is my first post on stackoverflow, for it has answered all my previous questions by proxy (for which I'm…
0
votes
1 answer

Patch Storage for a CSound Instrument

My CSound instrument updates a handful of parameters via MIDI controller messages. It needs to be able to store and retrieve parameter sets (patches) and update the parameters on MIDI patch change messages. Is there a CSound way to do this other…
Joe Beuckman
  • 2,264
  • 2
  • 24
  • 63
0
votes
1 answer

Non UI examples for Csound on Android

I've looked at the examples that come with Csound for android but I want to call it without using the UI widgets that all the examples seem to be about. I know about how to load up an instrument but how do I ask it to play a note of a specified…
user740360
  • 57
  • 1
  • 1
  • 5
0
votes
1 answer

Is csound capable of pulling simple info/data from the Internet?

I am currently looking into using CSound for a project. I want to receive data from an external source that is then used to manipulate a sound. So I am wondering... Is it possible for CSound to receive a data feed via the Internet? This data would…
m96
  • 199
  • 1
  • 3
  • 10
0
votes
1 answer

python not finding previously installed packages

Hi having a bit of a problem understanding what I've done wrong. On mac osx 10.8.5 trying to find previously installed and working objects. Import csnd6 doesn't work anymore after installing virtualenv. I've used sudo pip install csnd and worked…
0
votes
1 answer

Generate sound with pich and duration

Is possible to generate a sound in PHP with a defined note pitch and duration? I know exists CSOUND but I don't know how to call it from PHP and if exists a CSOUND API for PHP, as I found one in language C.
user1734227
0
votes
1 answer

Calling UIGestureRecognizer from UITouch object

I am trying to associate a Gesture with UITouch object because I need to pass data through a target action Method. I have something implemented but it is inefficient,it get 100% of the CPU processing, it is probably because it is coded…
David Moya
  • 107
  • 1
  • 2
  • 8
0
votes
1 answer

App is accessing iPad microphone

I'm currently working on an app that uses the Mobile Csound API to create a synthesizer. For some reason, the app accesses the iPad's microphone when running on the device, but not when running on the simulator. Does anyone know why that might be…
narner
  • 2,908
  • 3
  • 26
  • 63
-1
votes
1 answer

Can I send a sysex message using csound's midiout opcode? And how?

System Exclusive MIDI messages can be of an arbitrary length. Can csound's midiout opcode accommodate for that? Is there a workaround?
ZJR
  • 9,308
  • 5
  • 31
  • 38
-1
votes
1 answer

will Java help me understand Processing?

It seems to me that most books are based on Java 6. I know next to nothing about Java. I'm just trying to get Csoundo to work on Processing. Csoundo is a library for Processing so that you can use Csound technology inside of Processing and create…
-2
votes
1 answer

Trying to invoke cc compiler

Very basic question here. I am just starting out with C coding using Csound. I am trying to invoke the compiler via instructions from a tutorial book. It says open console window and type this command "cc mysource.c" This is seemingly meant to…
-2
votes
2 answers

Split string on one use of a word and not the other

fairly novice here, I'm looking for an effective way to use split() to split a string after a certain word. I'm working on a voice controlled filter using the Csound API in python, and say my input command is "Set cutoff to 440", I'd like to split…
1 2
3