Csound Csound-dev Csound-tekno Search About

[Csnd] Differences between using Csound from the Command Line and from CsoundQT(d/f)

Date2012-09-21 10:43
FromDave Mooney
Subject[Csnd] Differences between using Csound from the Command Line and from CsoundQT(d/f)
Hi!, 

A couple of weeks ago I was having difficulties building/running the Loris
opcodes but with Victor’s help managed to get them working successfully.
Since then I've been using them from csound via the command line without
incident.

I want now to create a composition using just/or primarily the loris opcodes
and to make life easier wanted to run them from CsoundQT(d or f) or Csound~
via Max6. When I tried to compile the testfile that I could run from the
command line using csoundqt or the csound~ object, I ran into some problems.
Specifically it’s as though CsoundQt and Csound~ aren’t seeing the opcodes
at all or are having difficulties finding/ loading the additional libraries.

This is what csoundqt’s console produces when I try to run the file that was
successfully being run from the command line. 

WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjacko.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjackTransport.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/librtjack.dylib'
(-1)
Csound version 5.18.02 (double samples) Sep 1 2012
Creating options
Creating orchestra
Creating score
Loading command-line libraries:
using callback interface
error: syntax error, unexpected T_IDENT_K (token "ktime") line 31:
>>> lorisread ktime  <<<
Unexpected untyped word lorisread when expecting a variable
Parsing failed due to invalid input!
Stopping on parser failure

The test file contents are below

; tryit.csd - a Csound structured data file 
; for testing the Loris unit generators
;
; To try this out, copy flute and clarinet
; SDIF files from the test directory into
; this directory, naming them flute.sdif
; and clarinet.sdif.
;

--opcode-lib=/usr/local/lib/libloris.dylib


; originally tryit.orc
sr = 44100
kr = 4410
ksmps = 10
nchnls = 1
; 
; Play the partials in clarinet.sdif 
; from 0 to 3 sec with 1 ms fadetime 
; and no frequency , amplitude, or 
; bandwidth modification.
;
instr 1
ktime linseg 0, p3, 3.0 ; linear time function from 0 to 3 seconds
lorisread ktime, "partials.sdif", 1, 1, 1, 1, .001
asig lorisplay 1, 1, 1, 1
out asig
endin


; originally tryit.sco
; make sinusoid in table 1
f 1 0 4096 10 1
; play instr 1
; strt dur
i 1 0 3
e



I’m thinking the difficulties I’m having are not specifically to do with the
Loris opcodes themselves but rather to with my understanding of how csound
works and how the frontends work. 

My question is…. If I have built a set of additional opcodes (eg Loris or
fluid for example) and can run these successfullly from the command line,
should I not be able to do the same from CsoundQt or similar?
Or do I need to rebuild csoundqt or indeed whatever im using in order to
make use of these additional opcodes. 
Or is there something simpler like pointing to the libraries in a different
manner (ie different to using the --opcode-lib=/usr/local/lib/libloris.dylib
flag) that I don’t know about?

Thanks a million!

Cheers
Dave




--
View this message in context: http://csound.1045644.n5.nabble.com/Differences-between-using-Csound-from-the-Command-Line-and-from-CsoundQT-d-f-tp5715983.html
Sent from the Csound - General mailing list archive at Nabble.com.


Date2012-09-21 18:59
FromAndres Cabrera
SubjectRe: [Csnd] Differences between using Csound from the Command Line and

Hi Dave,

The problem here is not command line vs. Front end, but floats  vs. doubles. It seems you built Loris for  floats and you are using CsoundQt for doubles. If you build Loris for doubles ir should work.

Cheers,
Andres

On Sep 21, 2012 2:43 AM, "Dave Mooney" <dave.e.mooney@gmail.com> wrote:
Hi!,

A couple of weeks ago I was having difficulties building/running the Loris
opcodes but with Victor’s help managed to get them working successfully.
Since then I've been using them from csound via the command line without
incident.

I want now to create a composition using just/or primarily the loris opcodes
and to make life easier wanted to run them from CsoundQT(d or f) or Csound~
via Max6. When I tried to compile the testfile that I could run from the
command line using csoundqt or the csound~ object, I ran into some problems.
Specifically it’s as though CsoundQt and Csound~ aren’t seeing the opcodes
at all or are having difficulties finding/ loading the additional libraries.

This is what csoundqt’s console produces when I try to run the file that was
successfully being run from the command line.

WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjacko.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjackTransport.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/librtjack.dylib'
(-1)
Csound version 5.18.02 (double samples) Sep 1 2012
Creating options
Creating orchestra
Creating score
Loading command-line libraries:
using callback interface
error: syntax error, unexpected T_IDENT_K (token "ktime") line 31:
>>> lorisread ktime  <<<
Unexpected untyped word lorisread when expecting a variable
Parsing failed due to invalid input!
Stopping on parser failure

The test file contents are below
<CsoundSynthesizer>
; tryit.csd - a Csound structured data file
; for testing the Loris unit generators
;
; To try this out, copy flute and clarinet
; SDIF files from the test directory into
; this directory, naming them flute.sdif
; and clarinet.sdif.
;
<CsOptions>
--opcode-lib=/usr/local/lib/libloris.dylib
</CsOptions>
<CsInstruments>
; originally tryit.orc
sr = 44100
kr = 4410
ksmps = 10
nchnls = 1
;
; Play the partials in clarinet.sdif
; from 0 to 3 sec with 1 ms fadetime
; and no frequency , amplitude, or
; bandwidth modification.
;
instr 1
ktime linseg 0, p3, 3.0 ; linear time function from 0 to 3 seconds
lorisread ktime, "partials.sdif", 1, 1, 1, 1, .001
asig lorisplay 1, 1, 1, 1
out asig
endin
</CsInstruments>
<CsScore>
; originally tryit.sco
; make sinusoid in table 1
f 1 0 4096 10 1
; play instr 1
; strt dur
i 1 0 3
e
</CsScore>
</CsoundSynthesizer>

I’m thinking the difficulties I’m having are not specifically to do with the
Loris opcodes themselves but rather to with my understanding of how csound
works and how the frontends work.

My question is…. If I have built a set of additional opcodes (eg Loris or
fluid for example) and can run these successfullly from the command line,
should I not be able to do the same from CsoundQt or similar?
Or do I need to rebuild csoundqt or indeed whatever im using in order to
make use of these additional opcodes.
Or is there something simpler like pointing to the libraries in a different
manner (ie different to using the --opcode-lib=/usr/local/lib/libloris.dylib
flag) that I don’t know about?

Thanks a million!

Cheers
Dave




--
View this message in context: http://csound.1045644.n5.nabble.com/Differences-between-using-Csound-from-the-Command-Line-and-from-CsoundQT-d-f-tp5715983.html
Sent from the Csound - General mailing list archive at Nabble.com.


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"


Date2012-09-22 11:20
FromDave Mooney
Subject[Csnd] Re: Differences between using Csound from the Command Line and
Hey Andres thanks a million for getting back to me. I've tried the same .csd
file from both CsoundQT(f) and CsoundQt(d) but seem to be getting the same
results. 

The code below is from cSound run using floats.  Also I think I've built the
opcodes for doubles as per Victor's instructions  here
 
. Any ideas what I'm doing wrong? Thanks again!

Dave


WARNING: could not open library
'/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjacko.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjackTransport.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/librtjack.dylib'
(-1)
Csound version 5.18.02 (float samples) Sep  1 2012
Creating options
Creating orchestra
Creating score
Loading command-line libraries:
using callback interface

error: syntax error, unexpected T_OPCODE  (token "linseg") line 30:
>>>    ktime  =  linseg <<<
Parsing failed due to invalid input!
Stopping on parser failure




--
View this message in context: http://csound.1045644.n5.nabble.com/Differences-between-using-Csound-from-the-Command-Line-and-from-CsoundQT-d-f-tp5715983p5716011.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2012-09-22 11:49
FromSteven Yi
SubjectRe: [Csnd] Re: Differences between using Csound from the Command Line and
Hi Dave,

I haven't been following this thread too closely, but that looks like
a legitimate error:

ktime  =  linseg

Is that what is in the CSD file?

steven

On Sat, Sep 22, 2012 at 11:20 AM, Dave Mooney  wrote:
> Hey Andres thanks a million for getting back to me. I've tried the same .csd
> file from both CsoundQT(f) and CsoundQt(d) but seem to be getting the same
> results.
>
> The code below is from cSound run using floats.  Also I think I've built the
> opcodes for doubles as per Victor's instructions  here
> 
> . Any ideas what I'm doing wrong? Thanks again!
>
> Dave
>
>
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjacko.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjackTransport.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/librtjack.dylib'
> (-1)
> Csound version 5.18.02 (float samples) Sep  1 2012
> Creating options
> Creating orchestra
> Creating score
> Loading command-line libraries:
> using callback interface
>
> error: syntax error, unexpected T_OPCODE  (token "linseg") line 30:
>>>>    ktime  =  linseg <<<
> Parsing failed due to invalid input!
> Stopping on parser failure
>
>
>
>
> --
> View this message in context: http://csound.1045644.n5.nabble.com/Differences-between-using-Csound-from-the-Command-Line-and-from-CsoundQT-d-f-tp5715983p5716011.html
> Sent from the Csound - General mailing list archive at Nabble.com.
>
>
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>

Date2012-09-23 17:47
FromDave Mooney
Subject[Csnd] Re: Differences between using Csound from the Command Line and
Heya Steven cheers for looking through the problem. The code used is shown
below followed by the console output messages, any ideas? Thanks lot

Regards
Dave



; tryit.csd - a Csound structured data file 
; for testing the Loris unit generators
;
; To try this out, copy flute and clarinet
; SDIF files from the test directory into
; this directory, naming them flute.sdif
; and clarinet.sdif.
;


 --opcode-lib=/usr/local/lib/libloris.dylib




; originally tryit.orc
sr = 44100
kr = 4410
ksmps = 10
nchnls = 1

; 
; Play the partials in clarinet.sdif 
; from 0 to 3 sec with 1 ms fadetime 
; and no frequency , amplitude, or 
; bandwidth modification.
;
instr 1
    ktime  linseg      0, p3, 3.0    ; linear time function from 0 to 3
seconds
             lorisread  ktime, "partials.sdif", 1, 1, 1, 1, .001
    asig     lorisplay   1, 1, 1, 1
             out         asig
endin




; originally tryit.sco
; make sinusoid in table 1
f 1 0 4096 10 1

; play instr 1
;     strt   dur
i 1    0      3


e






WARNING: could not open library
'/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjacko.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjackTransport.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/librtjack.dylib'
(-1)
Csound version 5.18.02 (float samples) Sep  1 2012
Creating options
Creating orchestra
Creating score
Loading command-line libraries:
using callback interface

error: syntax error, unexpected T_IDENT_K  (token "ktime") line 31:
>>>             lorisread  ktime <<<
Unexpected untyped word lorisread when expecting a variable
Parsing failed due to invalid input!
Stopping on parser failure




--
View this message in context: http://csound.1045644.n5.nabble.com/Differences-between-using-Csound-from-the-Command-Line-and-from-CsoundQT-d-f-tp5715983p5716078.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2012-09-23 23:24
FromSteven Yi
SubjectRe: [Csnd] Re: Differences between using Csound from the Command Line and
Hi Dave,

The problem is back to loris opcodes not being read by csound.  This
can be confirmed with "csound -z" to see what csound has available.
Did you place the loris library in
'/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/'
?

steven

On Sun, Sep 23, 2012 at 6:47 PM, Dave Mooney  wrote:
> Heya Steven cheers for looking through the problem. The code used is shown
> below followed by the console output messages, any ideas? Thanks lot
>
> Regards
> Dave
>
>
> 
> ; tryit.csd - a Csound structured data file
> ; for testing the Loris unit generators
> ;
> ; To try this out, copy flute and clarinet
> ; SDIF files from the test directory into
> ; this directory, naming them flute.sdif
> ; and clarinet.sdif.
> ;
> 
>
>  --opcode-lib=/usr/local/lib/libloris.dylib
>
> 
> 
>
> ; originally tryit.orc
> sr = 44100
> kr = 4410
> ksmps = 10
> nchnls = 1
>
> ;
> ; Play the partials in clarinet.sdif
> ; from 0 to 3 sec with 1 ms fadetime
> ; and no frequency , amplitude, or
> ; bandwidth modification.
> ;
> instr 1
>     ktime  linseg      0, p3, 3.0    ; linear time function from 0 to 3
> seconds
>              lorisread  ktime, "partials.sdif", 1, 1, 1, 1, .001
>     asig     lorisplay   1, 1, 1, 1
>              out         asig
> endin
>
>
> 
> 
> ; originally tryit.sco
> ; make sinusoid in table 1
> f 1 0 4096 10 1
>
> ; play instr 1
> ;     strt   dur
> i 1    0      3
>
>
> e
> 
>
> 
>
>
>
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjacko.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjackTransport.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/librtjack.dylib'
> (-1)
> Csound version 5.18.02 (float samples) Sep  1 2012
> Creating options
> Creating orchestra
> Creating score
> Loading command-line libraries:
> using callback interface
>
> error: syntax error, unexpected T_IDENT_K  (token "ktime") line 31:
>>>>             lorisread  ktime <<<
> Unexpected untyped word lorisread when expecting a variable
> Parsing failed due to invalid input!
> Stopping on parser failure
>
>
>
>
> --
> View this message in context: http://csound.1045644.n5.nabble.com/Differences-between-using-Csound-from-the-Command-Line-and-from-CsoundQT-d-f-tp5715983p5716078.html
> Sent from the Csound - General mailing list archive at Nabble.com.
>
>
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>

Date2012-09-24 10:14
FromDave Mooney
Subject[Csnd] Re: Differences between using Csound from the Command Line and
Heya Steven okay i've copied in the libloris13.0.0.dylib into the folder you
specified. When i run the csound -z command from the command line the loris
opcodes appear however when i run the same command from CSoundQT(d)/(f) they
don't.

When I run the tryit.csd from CsoundQT(d) I get the following: 

WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjacko.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjackTransport.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libloris.13.0.0.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/librtjack.dylib'
(-1)
Csound version 5.18.02 (double samples) Sep  1 2012
Creating options
Creating orchestra
Creating score
Loading command-line libraries:
using callback interface

error: syntax error, unexpected T_IDENT_K  (token "ktime") line 29:
>>>             lorisread  ktime <<<
Unexpected untyped word lorisread when expecting a variable
Parsing failed due to invalid input!
Stopping on parser failure


When I run tryit.csd from the command line it compiles properly and I get
the following.
Dave-Mooneys-MacBook-Pro:csound davemooney$ csound
--opcode-lib=/usr/local/lib/libloris.dylib tryit.csd
Csound version 5.18.02 (double samples) Sep  1 2012
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjacko.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjackTransport.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libloris.13.0.0.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/librtjack.dylib'
(-1)
UnifiedCSD: tryit.csd
Creating options
Creating orchestra
Creating score
Loading command-line libraries:
  /usr/local/lib/libloris.dylib
graph init 
using callback interface
Parsing successful!
Elapsed time at end of orchestra compile: real: 0.004s, CPU: 0.003s
Sorting score
Elapsed time at end of score sort: real: 0.004s, CPU: 0.003s
0dBFS level = 32768.0
orch now loaded
audio buffered in 1024 sample-frame blocks
writing 2048-byte blks of shorts to test.aif (AIFF)
SECTION 1:
ftable 1:
new alloc for instr 1:
B  0.000 ..  3.000 T  3.000 TT  3.000 M:   1145.5
Score finished in csoundPerform().
inactive allocs returned to freespace
end of score.		   overall amps:   1145.5
	   overall samples out of range:        0
0 errors in performance
Elapsed time at end of performance: real: 0.929s, CPU: 0.726s
1024 2048 sample blks of shorts written to test.aif (AIFF)


Any ideas? I didn't think i would have to copy the libraries around as i was
using the  --opcode-lib=/usr/local/lib/libloris.dylib flag but even having
done that csoundqt is still not seeing them though i can run the file from
the command line. BTW Thanks a million for your help, really appreciate it!

Dave



--
View this message in context: http://csound.1045644.n5.nabble.com/Differences-between-using-Csound-from-the-Command-Line-and-from-CsoundQT-d-f-tp5715983p5716089.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2012-09-24 10:21
FromTarmo Johannes
SubjectRe: [Csnd] Re: Differences between using Csound from the Command Line and

sorry, I did not follow the thread closely I am not sure it it helps,

 

but if

csound --opcode-lib=/usr/local/lib/libloris.dylib tryit.csd

 

have you tried to add the option '--opcode-lib=/usr/local/lib/libloris.dylib' to CsoundQt options? (Configure -> Run -> Additional command line options, also check that Use CsoundQt options is checked below).

 

The quection is, would csound would find other opcodes of csound this way?

 

greetings,

tarmo

 

On Monday 24 September 2012 02:14:38 Dave Mooney wrote:

> Heya Steven okay i've copied in the libloris13.0.0.dylib into the folder you

> specified. When i run the csound -z command from the command line the loris

> opcodes appear however when i run the same command from CSoundQT(d)/(f)

> they don't.

>

> When I run the tryit.csd from CsoundQT(d) I get the following:

>

> WARNING: could not open library

> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/

> libjacko.dylib' (-1)

> WARNING: could not open library

> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/

> libjackTransport.dylib' (-1)

> WARNING: could not open library

> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/

> libloris.13.0.0.dylib' (-1)

> WARNING: could not open library

> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/

> librtjack.dylib' (-1)

> Csound version 5.18.02 (double samples) Sep 1 2012

> Creating options

> Creating orchestra

> Creating score

> Loading command-line libraries:

> using callback interface

>

> error: syntax error, unexpected T_IDENT_K (token "ktime") line 29:

> >>> lorisread ktime <<<

>

> Unexpected untyped word lorisread when expecting a variable

> Parsing failed due to invalid input!

> Stopping on parser failure

>

>

> When I run tryit.csd from the command line it compiles properly and I get

> the following.

> Dave-Mooneys-MacBook-Pro:csound davemooney$ csound

> --opcode-lib=/usr/local/lib/libloris.dylib tryit.csd

> Csound version 5.18.02 (double samples) Sep 1 2012

> WARNING: could not open library

> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/

> libjacko.dylib' (-1)

> WARNING: could not open library

> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/

> libjackTransport.dylib' (-1)

> WARNING: could not open library

> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/

> libloris.13.0.0.dylib' (-1)

> WARNING: could not open library

> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/

> librtjack.dylib' (-1)

> UnifiedCSD: tryit.csd

> Creating options

> Creating orchestra

> Creating score

> Loading command-line libraries:

> /usr/local/lib/libloris.dylib

> graph init

> using callback interface

> Parsing successful!

> Elapsed time at end of orchestra compile: real: 0.004s, CPU: 0.003s

> Sorting score

> Elapsed time at end of score sort: real: 0.004s, CPU: 0.003s

> 0dBFS level = 32768.0

> orch now loaded

> audio buffered in 1024 sample-frame blocks

> writing 2048-byte blks of shorts to test.aif (AIFF)

> SECTION 1:

> ftable 1:

> new alloc for instr 1:

> B 0.000 .. 3.000 T 3.000 TT 3.000 M: 1145.5

> Score finished in csoundPerform().

> inactive allocs returned to freespace

> end of score. overall amps: 1145.5

> overall samples out of range: 0

> 0 errors in performance

> Elapsed time at end of performance: real: 0.929s, CPU: 0.726s

> 1024 2048 sample blks of shorts written to test.aif (AIFF)

>

>

> Any ideas? I didn't think i would have to copy the libraries around as i was

> using the --opcode-lib=/usr/local/lib/libloris.dylib flag but even having

> done that csoundqt is still not seeing them though i can run the file from

> the command line. BTW Thanks a million for your help, really appreciate it!

>

> Dave

>

>

>

> --

> View this message in context:

> http://csound.1045644.n5.nabble.com/Differences-between-using-Csound-from-t

> he-Command-Line-and-from-CsoundQT-d-f-tp5715983p5716089.html Sent from the

> Csound - General mailing list archive at Nabble.com.

>

>

> Send bugs reports to the Sourceforge bug tracker

> https://sourceforge.net/tracker/?group_id=81968&atid=564599

> Discussions of bugs and features can be posted here

> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe

> csound"


Date2012-09-24 11:21
FromSteven Yi
SubjectRe: [Csnd] Re: Differences between using Csound from the Command Line and
Attachmentsbuild.sh  
Hi Dave,

I just downloaded loris and compiled it, then inspected the library
with file and otool.  I suspect the issue is that the library is
compiled only for x86_64, and that csoundQT may be compiled with only
i386 (it's just a guess).  I've put together a build.sh shell script
to use that will run the loris build twice and create a fat binary of
libloris.13.0.0.dylib.  Place the build.sh script in the loris-1.8
folder and run it using:

sh build.sh

Could you give this a try and let me know if it works for both scenarios?

Thanks!
steven

On Mon, Sep 24, 2012 at 11:14 AM, Dave Mooney  wrote:
> Heya Steven okay i've copied in the libloris13.0.0.dylib into the folder you
> specified. When i run the csound -z command from the command line the loris
> opcodes appear however when i run the same command from CSoundQT(d)/(f) they
> don't.
>
> When I run the tryit.csd from CsoundQT(d) I get the following:
>
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjacko.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjackTransport.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libloris.13.0.0.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/librtjack.dylib'
> (-1)
> Csound version 5.18.02 (double samples) Sep  1 2012
> Creating options
> Creating orchestra
> Creating score
> Loading command-line libraries:
> using callback interface
>
> error: syntax error, unexpected T_IDENT_K  (token "ktime") line 29:
>>>>             lorisread  ktime <<<
> Unexpected untyped word lorisread when expecting a variable
> Parsing failed due to invalid input!
> Stopping on parser failure
>
>
> When I run tryit.csd from the command line it compiles properly and I get
> the following.
> Dave-Mooneys-MacBook-Pro:csound davemooney$ csound
> --opcode-lib=/usr/local/lib/libloris.dylib tryit.csd
> Csound version 5.18.02 (double samples) Sep  1 2012
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjacko.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjackTransport.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libloris.13.0.0.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/librtjack.dylib'
> (-1)
> UnifiedCSD: tryit.csd
> Creating options
> Creating orchestra
> Creating score
> Loading command-line libraries:
>   /usr/local/lib/libloris.dylib
> graph init
> using callback interface
> Parsing successful!
> Elapsed time at end of orchestra compile: real: 0.004s, CPU: 0.003s
> Sorting score
> Elapsed time at end of score sort: real: 0.004s, CPU: 0.003s
> 0dBFS level = 32768.0
> orch now loaded
> audio buffered in 1024 sample-frame blocks
> writing 2048-byte blks of shorts to test.aif (AIFF)
> SECTION 1:
> ftable 1:
> new alloc for instr 1:
> B  0.000 ..  3.000 T  3.000 TT  3.000 M:   1145.5
> Score finished in csoundPerform().
> inactive allocs returned to freespace
> end of score.              overall amps:   1145.5
>            overall samples out of range:        0
> 0 errors in performance
> Elapsed time at end of performance: real: 0.929s, CPU: 0.726s
> 1024 2048 sample blks of shorts written to test.aif (AIFF)
>
>
> Any ideas? I didn't think i would have to copy the libraries around as i was
> using the  --opcode-lib=/usr/local/lib/libloris.dylib flag but even having
> done that csoundqt is still not seeing them though i can run the file from
> the command line. BTW Thanks a million for your help, really appreciate it!
>
> Dave
>
>
>
> --
> View this message in context: http://csound.1045644.n5.nabble.com/Differences-between-using-Csound-from-the-Command-Line-and-from-CsoundQT-d-f-tp5715983p5716089.html
> Sent from the Csound - General mailing list archive at Nabble.com.
>
>
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>

Date2012-09-24 13:43
FromDave Mooney
Subject[Csnd] Re: Differences between using Csound from the Command Line and
Heya Steven, Thanks a lot for putting the script together,really--It's seems
to have helped and we're getting somewhere. So I ran the script and it
created two dylibs in the loris-1.8 folder. Next i went to test these new
dylibs with the tryit.csd by changing the flags to reference the dylibs in
the loris folder.


*When I ran the tryit.csd file using the flag 
--opcode-lib=/Users/davemooney/loris-1.8/libloris_i386.dylib in CsoundQT(f)
I got: 
*
WARNING: could not open library
'/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjacko.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjackTransport.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libloris.13.0.0.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/librtjack.dylib'
(-1)
Csound version 5.18.02 (float samples) Sep  1 2012
Creating options
Creating orchestra
Creating score
Loading command-line libraries:
WARNING: not loading 'libloris.13.0.0.dylib' (uses incompatible floating
point type)
using callback interface

error: syntax error, unexpected T_IDENT_K  (token "ktime") line 30:
>>>             lorisread  ktime <<<
Unexpected untyped word lorisread when expecting a variable
Parsing failed due to invalid input!
Stopping on parser failure

*When I ran the tryit.csd file using the flag 
--opcode-lib=/Users/davemooney/loris-1.8/libloris.13.0.0.dylib in
CsoundQT(f) I got: 
*
WARNING: could not open library
'/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjacko.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjackTransport.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libloris.13.0.0.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/librtjack.dylib'
(-1)
Csound version 5.18.02 (float samples) Sep  1 2012
Creating options
Creating orchestra
Creating score
Loading command-line libraries:
WARNING: not loading 'libloris_i386.dylib' (uses incompatible floating point
type)
using callback interface

error: syntax error, unexpected T_IDENT_K  (token "ktime") line 30:
>>>             lorisread  ktime <<<
Unexpected untyped word lorisread when expecting a variable
Parsing failed due to invalid input!
Stopping on parser failure

*When I ran the tryit.csd file using the flag 
--opcode-lib=/Users/davemooney/loris-1.8/libloris_i386.dylib in CsoundQT(d)
I got: 
*
130 1024 sample blks of 64-bit floats written to dac
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjacko.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjackTransport.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libloris.13.0.0.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/librtjack.dylib'
(-1)
Csound version 5.18.02 (double samples) Sep  1 2012
UnifiedCSD: /Users/davemooney/loris-1.8/csound/tryit.csd
Creating options
Creating orchestra
Creating score
Loading command-line libraries:
  /Users/davemooney/loris-1.8/libloris_i386.dylib
using callback interface
Parsing successful!
Elapsed time at end of orchestra compile: real: 0.004s, CPU: 0.004s
Sorting score
Elapsed time at end of score sort: real: 0.005s, CPU: 0.005s
midi channel 1 using instr 1
midi channel 2 using instr 1
midi channel 3 using instr 1
midi channel 4 using instr 1
midi channel 5 using instr 1
midi channel 6 using instr 1
midi channel 7 using instr 1
midi channel 8 using instr 1
midi channel 9 using instr 1
midi channel 10 using instr 1
midi channel 11 using instr 1
midi channel 12 using instr 1
midi channel 13 using instr 1
midi channel 14 using instr 1
midi channel 15 using instr 1
midi channel 16 using instr 1
0dBFS level = 32768.0
The available MIDI in devices are:
   0: Akai MPK25 Port 1 (CoreMIDI)
   1: Akai MPK25 Port 2 (CoreMIDI)
   2: Akai MPK25 Port 3 (CoreMIDI)
   3: micro lite Port 1 (CoreMIDI)
   4: micro lite Port 2 (CoreMIDI)
   5: micro lite Port 3 (CoreMIDI)
   6: micro lite Port 4 (CoreMIDI)
   7: micro lite Port 5 (CoreMIDI)
PortMIDI: Activated input device 0: 'Akai MPK25 Port 1' (CoreMIDI)
PortMIDI: Activated input device 1: 'Akai MPK25 Port 2' (CoreMIDI)
PortMIDI: Activated input device 2: 'Akai MPK25 Port 3' (CoreMIDI)
PortMIDI: Activated input device 3: 'micro lite Port 1' (CoreMIDI)
PortMIDI: Activated input device 4: 'micro lite Port 2' (CoreMIDI)
PortMIDI: Activated input device 5: 'micro lite Port 3' (CoreMIDI)
PortMIDI: Activated input device 6: 'micro lite Port 4' (CoreMIDI)
PortMIDI: Activated input device 7: 'micro lite Port 5' (CoreMIDI)
orch now loaded
audio buffered in 1024 sample-frame blocks
reading 2048-byte blks of shorts from adc (RAW)
PortAudio V19-devel (built Feb 12 2010 09:42:54)
PortAudio: available input devices:
   0: Built-in Microphone
   1: Built-in Input
   2: USBPre2
PortAudio: selected input device 'USBPre2'
PortAudio: available output devices:
   0: Built-in Output
   1: USBPre2
PortAudio: selected output device 'USBPre2'
WARNING: buffer size should be an integer multiple of ksmps in full-duplex
mode
writing 1024 sample blks of 64-bit floats to dac 
SECTION 1:
ftable 1:
new alloc for instr 1:
B  0.000 ..  3.000 T  3.000 TT  3.000 M:   1145.5
Score finished in csoundPerformKsmps().
inactive allocs returned to freespace
end of score.		   overall amps:   1145.5
	   overall samples out of range:        0
0 errors in performance
Elapsed time at end of performance: real: 3.435s, CPU: 3.261s

*When I ran the tryit.csd file using the flag 
--opcode-lib=/Users/davemooney/loris-1.8/libloris13.0.0.dylib in CsoundQT(d)
I got: 
*

WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjacko.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjackTransport.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libloris.13.0.0.dylib'
(-1)
WARNING: could not open library
'/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/librtjack.dylib'
(-1)
Csound version 5.18.02 (double samples) Sep  1 2012
UnifiedCSD: /Users/davemooney/loris-1.8/csound/tryit.csd
Creating options
Creating orchestra
Creating score
Loading command-line libraries:
  /Users/davemooney/loris-1.8/libloris.13.0.0.dylib
using callback interface
Parsing successful!
Inserting Parallelism Constructs into AST
[End Inserting Parallelism Constructs into AST]
Calculating Instrument weights from AST
Calculating Instrument weight from AST
[End Calculating Instrument weight from AST]
[End Calculating Instrument weights from AST]
Elapsed time at end of orchestra compile: real: 0.004s, CPU: 0.004s
Sorting score
Elapsed time at end of score sort: real: 0.004s, CPU: 0.004s
Multithread performance: insno:  -1  thread 1 of 12 starting.
Multithread performance: insno:  -1  thread 10 of 12 starting.
Multithread performance: insno:  -1  thread 2 of 12 starting.
Multithread performance: insno:  -1  thread 0 of 12 starting.
Multithread performance: insno:  -1  thread 3 of 12 starting.
Multithread performance: insno:  -1  thread 5 of 12 starting.
Multithread performance: insno:  -1  thread 4 of 12 starting.
Multithread performance: insno:  -1  thread 6 of 12 starting.
InstrWeightInfo: [Default]
  weight_min:      0
  weight_max:      0
  roots_avail_min: 0
  roots_avail_max: 0
Multithread performance: insno:  -1  thread 7 of 12 starting.
Multithread performance: insno:  -1  thread 8 of 12 starting.
Multithread performance: insno:  -1  thread 9 of 12 starting.
midi channel 1 using instr 1
midi channel 2 using instr 1
midi channel 3 using instr 1
midi channel 4 using instr 1
midi channel 5 using instr 1
midi channel 6 using instr 1
midi channel 7 using instr 1
midi channel 8 using instr 1
midi channel 9 using instr 1
midi channel 10 using instr 1
midi channel 11 using instr 1
midi channel 12 using instr 1
midi channel 13 using instr 1
midi channel 14 using instr 1
midi channel 15 using instr 1
midi channel 16 using instr 1
0dBFS level = 32768.0
The available MIDI in devices are:
   0: Akai MPK25 Port 1 (CoreMIDI)
   1: Akai MPK25 Port 2 (CoreMIDI)
   2: Akai MPK25 Port 3 (CoreMIDI)
   3: micro lite Port 1 (CoreMIDI)
   4: micro lite Port 2 (CoreMIDI)
   5: micro lite Port 3 (CoreMIDI)
   6: micro lite Port 4 (CoreMIDI)
   7: micro lite Port 5 (CoreMIDI)
PortMIDI: Activated input device 0: 'Akai MPK25 Port 1' (CoreMIDI)
PortMIDI: Activated input device 1: 'Akai MPK25 Port 2' (CoreMIDI)
PortMIDI: Activated input device 2: 'Akai MPK25 Port 3' (CoreMIDI)
PortMIDI: Activated input device 3: 'micro lite Port 1' (CoreMIDI)
PortMIDI: Activated input device 4: 'micro lite Port 2' (CoreMIDI)
PortMIDI: Activated input device 5: 'micro lite Port 3' (CoreMIDI)
PortMIDI: Activated input device 6: 'micro lite Port 4' (CoreMIDI)
PortMIDI: Activated input device 7: 'micro lite Port 5' (CoreMIDI)
orch now loaded
audio buffered in 4096 sample-frame blocks
reading 8192-byte blks of shorts from adc (RAW)
PortAudio V19-devel (built Feb 12 2010 09:42:54)
PortAudio: available input devices:
   0: Built-in Microphone
   1: Built-in Input
   2: USBPre2
PortAudio: selected input device 'USBPre2'
PortAudio: available output devices:
   0: Built-in Output
   1: USBPre2
PortAudio: selected output device 'USBPre2'
WARNING: buffer size should be an integer multiple of ksmps in full-duplex
mode
writing 4096 sample blks of 64-bit floats to dac 
SECTION 1:
ftable 1:
new alloc for instr 1:
B  0.000 ..  3.000 T  3.000 TT  3.000 M:   1145.5
Score finished in csoundPerformKsmps().
inactive allocs returned to freespace
end of score.		   overall amps:   1145.5
	   overall samples out of range:        0
0 errors in performance
Elapsed time at end of performance: real: 5.069s, CPU: 9.676s

So in short it seems to be working with CsoundQT(d) but not CsoundQT(f). Any
ideas what causing this and what would be required in order to make it work
for both versions of csound? Again thank you so much for your help, I really
appreciate it.

Dave





--
View this message in context: http://csound.1045644.n5.nabble.com/Differences-between-using-Csound-from-the-Command-Line-and-from-CsoundQT-d-f-tp5715983p5716093.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2012-09-24 16:36
FromSteven Yi
SubjectRe: [Csnd] Re: Differences between using Csound from the Command Line and
Hi Dave,

Okay, so it looks to me that the issue was indeed of building both
architectures.  Now, a few things:

1. The build script creates libloris_i386.dylib, but this should be
used, it's just a temporary file. The libloris.13.0.0.dylib is the one
to use.

2. The compiled lib now works for CsoundQT(d). Fantastic!  The
confirms it was a cpu architecture issue.  To explain this: we are
dealing with multiple build issues.  One is archictecture type, which
generally is 32-bit (i386) or 64-bit (x86_64).  On most current Apple
computers, the OS runs in 64-bit mode and runs on 64-bit CPU's.  You
can force the OS to run in 32-bit mode, but I don't think that's the
default anymore.  Now, applications can be built for i386 or x86_64,
or create what they call fat binaries that the builds for both
combined into a single file.  The builds for csound on OSX are built
as fat binaries, containing both i386 and x86_64 builds.

Before, when the build of libloris you did only had the x86_64 build,
that ran fine on the commandline as the commandline was running in
64-bit mode.  However, CsoundQT(d) was built with i386 (32-bit mode).
When it loaded and linked up with Csound, it was running in 32-bit
mode, so when it tried to run your x86_64-only build of libloris, it
failed.  Now that the build is a fat binary, it will work in both
32-bit and 64-bit scenarios.

3. The other issue is, Csound itself can be compiled in two different
ways: float and double.  This means whether it is using 32-bit
floating point numbers or 64-bit floating point numbers.  However,
this is different than the cpu architecture being 32-bit/64-bit.  So
not only do the architectures have match, so do the floating point
types for Csound and its libraries.  The libloris you now have works
for the double build of csound and double version of CsoundQT.  This
library will not work for float csound or CsoundQT(f).  To work with
CsoundQT(f), you will need to build libloris once again.  You can do
so by copying build.sh to build-f.sh, then, I think this will work by
modifying line 4 to:

export CPPFLAGS="-I/Library/Frameworks/CsoundLib.framework/Headers"

This will use the float csound lib to build which should generate one
compatible with the Csound float builds. You will then need to take
care to place the right libloris.13.0.0.dylib's in the right place.

Please give that a try and let me know if you run into further issues.

Cheers!
steven


On Mon, Sep 24, 2012 at 2:43 PM, Dave Mooney  wrote:
> Heya Steven, Thanks a lot for putting the script together,really--It's seems
> to have helped and we're getting somewhere. So I ran the script and it
> created two dylibs in the loris-1.8 folder. Next i went to test these new
> dylibs with the tryit.csd by changing the flags to reference the dylibs in
> the loris folder.
>
>
> *When I ran the tryit.csd file using the flag
> --opcode-lib=/Users/davemooney/loris-1.8/libloris_i386.dylib in CsoundQT(f)
> I got:
> *
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjacko.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjackTransport.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libloris.13.0.0.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/librtjack.dylib'
> (-1)
> Csound version 5.18.02 (float samples) Sep  1 2012
> Creating options
> Creating orchestra
> Creating score
> Loading command-line libraries:
> WARNING: not loading 'libloris.13.0.0.dylib' (uses incompatible floating
> point type)
> using callback interface
>
> error: syntax error, unexpected T_IDENT_K  (token "ktime") line 30:
>>>>             lorisread  ktime <<<
> Unexpected untyped word lorisread when expecting a variable
> Parsing failed due to invalid input!
> Stopping on parser failure
>
> *When I ran the tryit.csd file using the flag
> --opcode-lib=/Users/davemooney/loris-1.8/libloris.13.0.0.dylib in
> CsoundQT(f) I got:
> *
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjacko.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libjackTransport.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/libloris.13.0.0.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib.framework/Versions/5.2/Resources/Opcodes/librtjack.dylib'
> (-1)
> Csound version 5.18.02 (float samples) Sep  1 2012
> Creating options
> Creating orchestra
> Creating score
> Loading command-line libraries:
> WARNING: not loading 'libloris_i386.dylib' (uses incompatible floating point
> type)
> using callback interface
>
> error: syntax error, unexpected T_IDENT_K  (token "ktime") line 30:
>>>>             lorisread  ktime <<<
> Unexpected untyped word lorisread when expecting a variable
> Parsing failed due to invalid input!
> Stopping on parser failure
>
> *When I ran the tryit.csd file using the flag
> --opcode-lib=/Users/davemooney/loris-1.8/libloris_i386.dylib in CsoundQT(d)
> I got:
> *
> 130 1024 sample blks of 64-bit floats written to dac
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjacko.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjackTransport.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libloris.13.0.0.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/librtjack.dylib'
> (-1)
> Csound version 5.18.02 (double samples) Sep  1 2012
> UnifiedCSD: /Users/davemooney/loris-1.8/csound/tryit.csd
> Creating options
> Creating orchestra
> Creating score
> Loading command-line libraries:
>   /Users/davemooney/loris-1.8/libloris_i386.dylib
> using callback interface
> Parsing successful!
> Elapsed time at end of orchestra compile: real: 0.004s, CPU: 0.004s
> Sorting score
> Elapsed time at end of score sort: real: 0.005s, CPU: 0.005s
> midi channel 1 using instr 1
> midi channel 2 using instr 1
> midi channel 3 using instr 1
> midi channel 4 using instr 1
> midi channel 5 using instr 1
> midi channel 6 using instr 1
> midi channel 7 using instr 1
> midi channel 8 using instr 1
> midi channel 9 using instr 1
> midi channel 10 using instr 1
> midi channel 11 using instr 1
> midi channel 12 using instr 1
> midi channel 13 using instr 1
> midi channel 14 using instr 1
> midi channel 15 using instr 1
> midi channel 16 using instr 1
> 0dBFS level = 32768.0
> The available MIDI in devices are:
>    0: Akai MPK25 Port 1 (CoreMIDI)
>    1: Akai MPK25 Port 2 (CoreMIDI)
>    2: Akai MPK25 Port 3 (CoreMIDI)
>    3: micro lite Port 1 (CoreMIDI)
>    4: micro lite Port 2 (CoreMIDI)
>    5: micro lite Port 3 (CoreMIDI)
>    6: micro lite Port 4 (CoreMIDI)
>    7: micro lite Port 5 (CoreMIDI)
> PortMIDI: Activated input device 0: 'Akai MPK25 Port 1' (CoreMIDI)
> PortMIDI: Activated input device 1: 'Akai MPK25 Port 2' (CoreMIDI)
> PortMIDI: Activated input device 2: 'Akai MPK25 Port 3' (CoreMIDI)
> PortMIDI: Activated input device 3: 'micro lite Port 1' (CoreMIDI)
> PortMIDI: Activated input device 4: 'micro lite Port 2' (CoreMIDI)
> PortMIDI: Activated input device 5: 'micro lite Port 3' (CoreMIDI)
> PortMIDI: Activated input device 6: 'micro lite Port 4' (CoreMIDI)
> PortMIDI: Activated input device 7: 'micro lite Port 5' (CoreMIDI)
> orch now loaded
> audio buffered in 1024 sample-frame blocks
> reading 2048-byte blks of shorts from adc (RAW)
> PortAudio V19-devel (built Feb 12 2010 09:42:54)
> PortAudio: available input devices:
>    0: Built-in Microphone
>    1: Built-in Input
>    2: USBPre2
> PortAudio: selected input device 'USBPre2'
> PortAudio: available output devices:
>    0: Built-in Output
>    1: USBPre2
> PortAudio: selected output device 'USBPre2'
> WARNING: buffer size should be an integer multiple of ksmps in full-duplex
> mode
> writing 1024 sample blks of 64-bit floats to dac
> SECTION 1:
> ftable 1:
> new alloc for instr 1:
> B  0.000 ..  3.000 T  3.000 TT  3.000 M:   1145.5
> Score finished in csoundPerformKsmps().
> inactive allocs returned to freespace
> end of score.              overall amps:   1145.5
>            overall samples out of range:        0
> 0 errors in performance
> Elapsed time at end of performance: real: 3.435s, CPU: 3.261s
>
> *When I ran the tryit.csd file using the flag
> --opcode-lib=/Users/davemooney/loris-1.8/libloris13.0.0.dylib in CsoundQT(d)
> I got:
> *
>
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjacko.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libjackTransport.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/libloris.13.0.0.dylib'
> (-1)
> WARNING: could not open library
> '/Library/Frameworks/CsoundLib64.framework/Versions/5.2/Resources/Opcodes64/librtjack.dylib'
> (-1)
> Csound version 5.18.02 (double samples) Sep  1 2012
> UnifiedCSD: /Users/davemooney/loris-1.8/csound/tryit.csd
> Creating options
> Creating orchestra
> Creating score
> Loading command-line libraries:
>   /Users/davemooney/loris-1.8/libloris.13.0.0.dylib
> using callback interface
> Parsing successful!
> Inserting Parallelism Constructs into AST
> [End Inserting Parallelism Constructs into AST]
> Calculating Instrument weights from AST
> Calculating Instrument weight from AST
> [End Calculating Instrument weight from AST]
> [End Calculating Instrument weights from AST]
> Elapsed time at end of orchestra compile: real: 0.004s, CPU: 0.004s
> Sorting score
> Elapsed time at end of score sort: real: 0.004s, CPU: 0.004s
> Multithread performance: insno:  -1  thread 1 of 12 starting.
> Multithread performance: insno:  -1  thread 10 of 12 starting.
> Multithread performance: insno:  -1  thread 2 of 12 starting.
> Multithread performance: insno:  -1  thread 0 of 12 starting.
> Multithread performance: insno:  -1  thread 3 of 12 starting.
> Multithread performance: insno:  -1  thread 5 of 12 starting.
> Multithread performance: insno:  -1  thread 4 of 12 starting.
> Multithread performance: insno:  -1  thread 6 of 12 starting.
> InstrWeightInfo: [Default]
>   weight_min:      0
>   weight_max:      0
>   roots_avail_min: 0
>   roots_avail_max: 0
> Multithread performance: insno:  -1  thread 7 of 12 starting.
> Multithread performance: insno:  -1  thread 8 of 12 starting.
> Multithread performance: insno:  -1  thread 9 of 12 starting.
> midi channel 1 using instr 1
> midi channel 2 using instr 1
> midi channel 3 using instr 1
> midi channel 4 using instr 1
> midi channel 5 using instr 1
> midi channel 6 using instr 1
> midi channel 7 using instr 1
> midi channel 8 using instr 1
> midi channel 9 using instr 1
> midi channel 10 using instr 1
> midi channel 11 using instr 1
> midi channel 12 using instr 1
> midi channel 13 using instr 1
> midi channel 14 using instr 1
> midi channel 15 using instr 1
> midi channel 16 using instr 1
> 0dBFS level = 32768.0
> The available MIDI in devices are:
>    0: Akai MPK25 Port 1 (CoreMIDI)
>    1: Akai MPK25 Port 2 (CoreMIDI)
>    2: Akai MPK25 Port 3 (CoreMIDI)
>    3: micro lite Port 1 (CoreMIDI)
>    4: micro lite Port 2 (CoreMIDI)
>    5: micro lite Port 3 (CoreMIDI)
>    6: micro lite Port 4 (CoreMIDI)
>    7: micro lite Port 5 (CoreMIDI)
> PortMIDI: Activated input device 0: 'Akai MPK25 Port 1' (CoreMIDI)
> PortMIDI: Activated input device 1: 'Akai MPK25 Port 2' (CoreMIDI)
> PortMIDI: Activated input device 2: 'Akai MPK25 Port 3' (CoreMIDI)
> PortMIDI: Activated input device 3: 'micro lite Port 1' (CoreMIDI)
> PortMIDI: Activated input device 4: 'micro lite Port 2' (CoreMIDI)
> PortMIDI: Activated input device 5: 'micro lite Port 3' (CoreMIDI)
> PortMIDI: Activated input device 6: 'micro lite Port 4' (CoreMIDI)
> PortMIDI: Activated input device 7: 'micro lite Port 5' (CoreMIDI)
> orch now loaded
> audio buffered in 4096 sample-frame blocks
> reading 8192-byte blks of shorts from adc (RAW)
> PortAudio V19-devel (built Feb 12 2010 09:42:54)
> PortAudio: available input devices:
>    0: Built-in Microphone
>    1: Built-in Input
>    2: USBPre2
> PortAudio: selected input device 'USBPre2'
> PortAudio: available output devices:
>    0: Built-in Output
>    1: USBPre2
> PortAudio: selected output device 'USBPre2'
> WARNING: buffer size should be an integer multiple of ksmps in full-duplex
> mode
> writing 4096 sample blks of 64-bit floats to dac
> SECTION 1:
> ftable 1:
> new alloc for instr 1:
> B  0.000 ..  3.000 T  3.000 TT  3.000 M:   1145.5
> Score finished in csoundPerformKsmps().
> inactive allocs returned to freespace
> end of score.              overall amps:   1145.5
>            overall samples out of range:        0
> 0 errors in performance
> Elapsed time at end of performance: real: 5.069s, CPU: 9.676s
>
> So in short it seems to be working with CsoundQT(d) but not CsoundQT(f). Any
> ideas what causing this and what would be required in order to make it work
> for both versions of csound? Again thank you so much for your help, I really
> appreciate it.
>
> Dave
>
>
>
>
>
> --
> View this message in context: http://csound.1045644.n5.nabble.com/Differences-between-using-Csound-from-the-Command-Line-and-from-CsoundQT-d-f-tp5715983p5716093.html
> Sent from the Csound - General mailing list archive at Nabble.com.
>
>
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>

Date2012-09-25 09:17
FromDave Mooney
Subject[Csnd] Re: Differences between using Csound from the Command Line and
Hi Steven, just tried that there and it worked perfectly. I now have both
floats and doubles working! I really appreciate your help--I simply wouldn't
have known how or what to do to get this working in any reasonable time
frame so thanks a lot!

All the best!
Dave




--
View this message in context: http://csound.1045644.n5.nabble.com/Differences-between-using-Csound-from-the-Command-Line-and-from-CsoundQT-d-f-tp5715983p5716132.html
Sent from the Csound - General mailing list archive at Nabble.com.