[Csnd] csound-smultron utilities for 64Bit csound?
| Date | 2009-03-20 02:21 |
| From | Schumacher Marlon |
| Subject | [Csnd] csound-smultron utilities for 64Bit csound? |
Hello, I was wondering if there's a way of using Peiman's great csound- utilities for Smultron ( http://www.esnips.com/web/CsoundSmultron/ ) with the double version of csound? More precisely, after an installation of the 64Bit version of csound5.1 for MacOSX on intel. Apparently, when installing the packages contained in Csound5.10- double-Intel-OSX10.4.tar.gz separately, the float version's CsoundLib framework is removed... thus, some versions many thanks, Marlon |
| Date | 2009-03-21 14:12 |
| From | peiman khosravi |
| Subject | [Csnd] Re: csound-smultron utilities for 64Bit csound? |
mhhh I am afraid I can't help you there. I am not using the double
installer but my own build of the double version. I prefer to place
the 64bit executables in a separate folder (and the libraries in
Library/Frameworks/CsoundLib64.Framework/) and then write the full
path in smultron commands.
I don't know where the executables are installed with the double
installer. I think Victor should be able to help us there. Then all
you need to do is do apple+B in Smultron, find the render2file and
other csound command an change the "csound" to your own path (see
bellow). I hope that makes sense.
Best
Peiman
#!/bin/bash
FILE=%%p
NAME=${FILE%.[^.]*}.aiff
SCO=${FILE%.[^.]*}.sco
ORC=${FILE%.[^.]*}.orc
EXT=${FILE##*.}
if [ "$EXT" = "csd" ]; then
/Users/peimankh/csound64/csound -3 -o $NAME -d %%p
else
/Users/peimankh/csound64/csound -3 -o $NAME -d $ORC $SCO
fi
2009/3/20 Schumacher Marlon |
| Date | 2009-03-21 16:28 |
| From | victor |
| Subject | [Csnd] Re: csound-smultron utilities for 64Bit csound? |
There is no Csound5.1 doubles version. This version starte with Csound5.2 ----- Original Message ----- From: "Schumacher Marlon" |