[Csnd] disabling terminal printouts
Date | 2014-04-02 22:54 |
From | peiman khosravi |
Subject | [Csnd] disabling terminal printouts |
Hello,
I'm reading a black midi file with the -F command. Every other application including Live, reaper and max are crashing with the file but csound is readng it just fine! But I get some dropouts, which I think are caused by the terminal printouts. How can I disables all printouts? I've tried all the flags mentioned in the manual...
Many Thanks
Peiman
|
Date | 2014-04-02 23:10 |
From | Justin Smith |
Subject | Re: [Csnd] disabling terminal printouts |
the -m argument can eliminate many messages but iirc it cannot eliminate realtime midi message / not event output. Some of the overhead can be eliminated by streaming the output to a file or /dev/null using shell piping under a *nix.
csound foo.csd 2>/dev/null csound does not usually use stdout at all, and 2> redirects stderr (which is where all csound informational messages go) On Wed, Apr 2, 2014 at 2:54 PM, peiman khosravi <peimankhosravi@gmail.com> wrote:
|
Date | 2014-04-02 23:14 |
From | Tarmo Johannes |
Subject | Re: [Csnd] disabling terminal printouts |
Hi,
if you add -dm0 to your options, you should get rid of the messages best! tarmo
On Wednesday 02 April 2014 22:54:43 peiman khosravi wrote: Hello, I'm reading a black midi file with the -F command. Every other application including Live, reaper and max are crashing with the file but csound is readng it just fine! But I get some dropouts, which I think are caused by the terminal printouts. How can I disables all printouts? I've tried all the flags mentioned in the manual... Many Thanks Peiman www.peimankhosravi.co.uk || RSS Feed || Concert News |
Date | 2014-04-02 23:16 |
From | peiman khosravi |
Subject | Re: [Csnd] disabling terminal printouts |
Wow, that does the job. Thanks very much Tarmo. On 2 April 2014 23:14, Tarmo Johannes <tarmo.johannes@otsakool.edu.ee> wrote:
|