[m in output dialog

View: New views
10 Messages — Rating Filter:   Alert me  

[m in output dialog

by Ben McAllister :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Folks -

I've recently moved to a mac, and see a lot of '[m's interspersed with output to the csound dialog.  For example:
 *** PortMIDI: error: device number is out of range
 *** error opening MIDI in device: -1 (Unknown MIDI error)
inactive allocs returned to freespace
end of score.           overall amps:      0.0
       overall samples out of range:        0
1 errors in performance
Elapsed time at end of performance: real: 1.056s, CPU: 0.060s

(hope that came through ok).

As well, I'm seeing alot of 'blueTimePointer' messages.  I'm trying to debug an instrument with printf, and these extraneous messages kind of get in the way ;)  Anyone seen this type of thing before?

Thanks - Ben

------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@...
https://lists.sourceforge.net/lists/listinfo/bluemusic-users

Re: [m in output dialog

by Jan Jacob Hofmann :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Dear Ben,

yes, I am working on a Mac too and it looks very, very familiar to  
me. If I remember well, this got solved when Steven told me to open  
the blue command file in a text editor and replace the Xmx-256m in  
the last row with Xmx-1024m so the result looks like this:

java -Xms32m -Xmx1024m -DBLUE_HOME="$BLUE_HOME" -cp $BLUE_LIBS  
blue.Blue "$@"

this won't remove the error, but maybe the [m



All the best,

Jan Jacob



Am 07.05.2009 um 01:49 schrieb Ben McAllister:

> Hi Folks -
>
> I've recently moved to a mac, and see a lot of '[m's interspersed  
> with output to the csound dialog.  For example:
>  *** PortMIDI: error: device number is out of range
>  *** error opening MIDI in device: -1 (Unknown MIDI error)
> inactive allocs returned to freespace
> end of score.           overall amps:      0.0
>        overall samples out of range:        0
> 1 errors in performance
> Elapsed time at end of performance: real: 1.056s, CPU: 0.060s
>
> (hope that came through ok).
>
> As well, I'm seeing alot of 'blueTimePointer' messages.  I'm trying  
> to debug an instrument with printf, and these extraneous messages  
> kind of get in the way ;)  Anyone seen this type of thing before?
>
> Thanks - Ben
> ----------------------------------------------------------------------
> --------
> The NEW KODAK i700 Series Scanners deliver under ANY circumstances!  
> Your
> production scanning environment may not be a perfect world - but  
> thanks to
> Kodak, there's a perfect scanner to get the job done! With the NEW  
> KODAK i700
> Series Scanner you'll get full speed at 300 dpi even with all image
> processing features enabled. http://p.sf.net/sfu/kodak- 
> com_______________________________________________
> Bluemusic-users mailing list
> Bluemusic-users@...
> https://lists.sourceforge.net/lists/listinfo/bluemusic-users


------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@...
https://lists.sourceforge.net/lists/listinfo/bluemusic-users

Re: [m in output dialog

by Steven Yi :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Ben,

This happens if you have color text set to on.  It really should be
turned off in blue, but it can be turned on if you are outputing to
the system console.  If you go to program options, check to see that
"Message Colors Enabled" is deselected.  When that is off, it'll tell
Csound not to color the text using ANSI markup.  I'm pretty sure that
should fix it.

The blueTimePointer=xxx text is usually intercepted by blue to get the
current time when running Csound and not using the API.  When the [m
gets prepended, that throws everything off.

Let me know if that does it for you!
steven

On Wed, May 6, 2009 at 4:49 PM, Ben McAllister <benmca@...> wrote:

> Hi Folks -
>
> I've recently moved to a mac, and see a lot of '[m's interspersed with
> output to the csound dialog.  For example:
> [m *** PortMIDI: [merror: device number is out of range [m
> [m *** error opening MIDI in device: -1 (Unknown MIDI error) [m
> [minactive allocs returned to freespace
> end of score.           overall amps:      0.0
>        overall samples out of range:        0
> 1 errors in performance
> Elapsed time at end of performance: real: 1.056s, CPU: 0.060s
>
> (hope that came through ok).
>
> As well, I'm seeing alot of 'blueTimePointer' messages.  I'm trying to debug
> an instrument with printf, and these extraneous messages kind of get in the
> way ;)  Anyone seen this type of thing before?
>
> Thanks - Ben
>
> ------------------------------------------------------------------------------
> The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
> production scanning environment may not be a perfect world - but thanks to
> Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
> i700
> Series Scanner you'll get full speed at 300 dpi even with all image
> processing features enabled. http://p.sf.net/sfu/kodak-com
> _______________________________________________
> Bluemusic-users mailing list
> Bluemusic-users@...
> https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>
>

------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@...
https://lists.sourceforge.net/lists/listinfo/bluemusic-users

Re: [m in output dialog

by Ben McAllister :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

That did it - Thanks!
b

On Thu, May 7, 2009 at 8:06 AM, Jan Jacob Hofmann <jjh@...> wrote:
Dear Ben,

yes, I am working on a Mac too and it looks very, very familiar to
me. If I remember well, this got solved when Steven told me to open
the blue command file in a text editor and replace the Xmx-256m in
the last row with Xmx-1024m so the result looks like this:

java -Xms32m -Xmx1024m -DBLUE_HOME="$BLUE_HOME" -cp $BLUE_LIBS
blue.Blue "$@"

this won't remove the error, but maybe the [m



All the best,

Jan Jacob



Am 07.05.2009 um 01:49 schrieb Ben McAllister:

> Hi Folks -
>
> I've recently moved to a mac, and see a lot of '[m's interspersed
> with output to the csound dialog.  For example:
>  [m *** PortMIDI:  [merror: device number is out of range [m
>  [m *** error opening MIDI in device: -1 (Unknown MIDI error) [m
>  [minactive allocs returned to freespace
> end of score.           overall amps:      0.0
>        overall samples out of range:        0
> 1 errors in performance
> Elapsed time at end of performance: real: 1.056s, CPU: 0.060s
>
> (hope that came through ok).
>
> As well, I'm seeing alot of 'blueTimePointer' messages.  I'm trying
> to debug an instrument with printf, and these extraneous messages
> kind of get in the way ;)  Anyone seen this type of thing before?
>
> Thanks - Ben
> ----------------------------------------------------------------------
> --------
> The NEW KODAK i700 Series Scanners deliver under ANY circumstances!
> Your
> production scanning environment may not be a perfect world - but
> thanks to
> Kodak, there's a perfect scanner to get the job done! With the NEW
> KODAK i700
> Series Scanner you'll get full speed at 300 dpi even with all image
> processing features enabled. http://p.sf.net/sfu/kodak-
> com_______________________________________________
> Bluemusic-users mailing list
> Bluemusic-users@...
> https://lists.sourceforge.net/lists/listinfo/bluemusic-users


------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@...
https://lists.sourceforge.net/lists/listinfo/bluemusic-users



--
Listen Faster: http://www.listenfaster.com - audio, film and technology


------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@...
https://lists.sourceforge.net/lists/listinfo/bluemusic-users

Re: [m in output dialog

by Ben McAllister :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Steven -

Jan Jacob's solution fixed the issue.  FWIW: the Message Colors Enabled was unchecked to begin with. 
Thanks - b

On Thu, May 7, 2009 at 1:30 PM, Steven Yi <stevenyi@...> wrote:
Hi Ben,

This happens if you have color text set to on.  It really should be
turned off in blue, but it can be turned on if you are outputing to
the system console.  If you go to program options, check to see that
"Message Colors Enabled" is deselected.  When that is off, it'll tell
Csound not to color the text using ANSI markup.  I'm pretty sure that
should fix it.

The blueTimePointer=xxx text is usually intercepted by blue to get the
current time when running Csound and not using the API.  When the [m
gets prepended, that throws everything off.

Let me know if that does it for you!
steven

On Wed, May 6, 2009 at 4:49 PM, Ben McAllister <benmca@...> wrote:
> Hi Folks -
>
> I've recently moved to a mac, and see a lot of '[m's interspersed with
> output to the csound dialog.  For example:
> [m *** PortMIDI: [merror: device number is out of range [m
> [m *** error opening MIDI in device: -1 (Unknown MIDI error) [m
> [minactive allocs returned to freespace
> end of score.           overall amps:      0.0
>        overall samples out of range:        0
> 1 errors in performance
> Elapsed time at end of performance: real: 1.056s, CPU: 0.060s
>
> (hope that came through ok).
>
> As well, I'm seeing alot of 'blueTimePointer' messages.  I'm trying to debug
> an instrument with printf, and these extraneous messages kind of get in the
> way ;)  Anyone seen this type of thing before?
>
> Thanks - Ben
>
> ------------------------------------------------------------------------------
> The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
> production scanning environment may not be a perfect world - but thanks to
> Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
> i700
> Series Scanner you'll get full speed at 300 dpi even with all image
> processing features enabled. http://p.sf.net/sfu/kodak-com
> _______________________________________________
> Bluemusic-users mailing list
> Bluemusic-users@...
> https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>
>

------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@...
https://lists.sourceforge.net/lists/listinfo/bluemusic-users



--
Listen Faster: http://www.listenfaster.com - audio, film and technology


------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@...
https://lists.sourceforge.net/lists/listinfo/bluemusic-users

Re: [m in output dialog

by Steven Yi :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Okay, I don't quite understand how increasing the max ram for the VM
fixed the output issue, but glad to hear it did! :)

steven

On Thu, May 7, 2009 at 8:06 AM, Jan Jacob Hofmann
<jjh@...> wrote:

> Dear Ben,
>
> yes, I am working on a Mac too and it looks very, very familiar to
> me. If I remember well, this got solved when Steven told me to open
> the blue command file in a text editor and replace the Xmx-256m in
> the last row with Xmx-1024m so the result looks like this:
>
> java -Xms32m -Xmx1024m -DBLUE_HOME="$BLUE_HOME" -cp $BLUE_LIBS
> blue.Blue "$@"
>
> this won't remove the error, but maybe the [m
>
>
>
> All the best,
>
> Jan Jacob
>
>
>
> Am 07.05.2009 um 01:49 schrieb Ben McAllister:
>
>> Hi Folks -
>>
>> I've recently moved to a mac, and see a lot of '[m's interspersed
>> with output to the csound dialog.  For example:
>>  [m *** PortMIDI:  [merror: device number is out of range [m
>>  [m *** error opening MIDI in device: -1 (Unknown MIDI error) [m
>>  [minactive allocs returned to freespace
>> end of score.           overall amps:      0.0
>>        overall samples out of range:        0
>> 1 errors in performance
>> Elapsed time at end of performance: real: 1.056s, CPU: 0.060s
>>
>> (hope that came through ok).
>>
>> As well, I'm seeing alot of 'blueTimePointer' messages.  I'm trying
>> to debug an instrument with printf, and these extraneous messages
>> kind of get in the way ;)  Anyone seen this type of thing before?
>>
>> Thanks - Ben
>> ----------------------------------------------------------------------
>> --------
>> The NEW KODAK i700 Series Scanners deliver under ANY circumstances!
>> Your
>> production scanning environment may not be a perfect world - but
>> thanks to
>> Kodak, there's a perfect scanner to get the job done! With the NEW
>> KODAK i700
>> Series Scanner you'll get full speed at 300 dpi even with all image
>> processing features enabled. http://p.sf.net/sfu/kodak-
>> com_______________________________________________
>> Bluemusic-users mailing list
>> Bluemusic-users@...
>> https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>
>
> ------------------------------------------------------------------------------
> The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
> production scanning environment may not be a perfect world - but thanks to
> Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
> Series Scanner you'll get full speed at 300 dpi even with all image
> processing features enabled. http://p.sf.net/sfu/kodak-com
> _______________________________________________
> Bluemusic-users mailing list
> Bluemusic-users@...
> https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>

------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@...
https://lists.sourceforge.net/lists/listinfo/bluemusic-users

Re: [m in output dialog

by Ben McAllister :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I know I know!

On Thu, May 7, 2009 at 10:00 PM, Steven Yi <stevenyi@...> wrote:
Okay, I don't quite understand how increasing the max ram for the VM
fixed the output issue, but glad to hear it did! :)

steven

On Thu, May 7, 2009 at 8:06 AM, Jan Jacob Hofmann
<jjh@...> wrote:
> Dear Ben,
>
> yes, I am working on a Mac too and it looks very, very familiar to
> me. If I remember well, this got solved when Steven told me to open
> the blue command file in a text editor and replace the Xmx-256m in
> the last row with Xmx-1024m so the result looks like this:
>
> java -Xms32m -Xmx1024m -DBLUE_HOME="$BLUE_HOME" -cp $BLUE_LIBS
> blue.Blue "$@"
>
> this won't remove the error, but maybe the [m
>
>
>
> All the best,
>
> Jan Jacob
>
>
>
> Am 07.05.2009 um 01:49 schrieb Ben McAllister:
>
>> Hi Folks -
>>
>> I've recently moved to a mac, and see a lot of '[m's interspersed
>> with output to the csound dialog.  For example:
>>  [m *** PortMIDI:  [merror: device number is out of range [m
>>  [m *** error opening MIDI in device: -1 (Unknown MIDI error) [m
>>  [minactive allocs returned to freespace
>> end of score.           overall amps:      0.0
>>        overall samples out of range:        0
>> 1 errors in performance
>> Elapsed time at end of performance: real: 1.056s, CPU: 0.060s
>>
>> (hope that came through ok).
>>
>> As well, I'm seeing alot of 'blueTimePointer' messages.  I'm trying
>> to debug an instrument with printf, and these extraneous messages
>> kind of get in the way ;)  Anyone seen this type of thing before?
>>
>> Thanks - Ben
>> ----------------------------------------------------------------------
>> --------
>> The NEW KODAK i700 Series Scanners deliver under ANY circumstances!
>> Your
>> production scanning environment may not be a perfect world - but
>> thanks to
>> Kodak, there's a perfect scanner to get the job done! With the NEW
>> KODAK i700
>> Series Scanner you'll get full speed at 300 dpi even with all image
>> processing features enabled. http://p.sf.net/sfu/kodak-
>> com_______________________________________________
>> Bluemusic-users mailing list
>> Bluemusic-users@...
>> https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>
>
> ------------------------------------------------------------------------------
> The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
> production scanning environment may not be a perfect world - but thanks to
> Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
> Series Scanner you'll get full speed at 300 dpi even with all image
> processing features enabled. http://p.sf.net/sfu/kodak-com
> _______________________________________________
> Bluemusic-users mailing list
> Bluemusic-users@...
> https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>

------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@...
https://lists.sourceforge.net/lists/listinfo/bluemusic-users



--
Listen Faster: http://www.listenfaster.com - audio, film and technology


------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@...
https://lists.sourceforge.net/lists/listinfo/bluemusic-users

Re: [m in output dialog

by Ben McAllister :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I spoke too soon.  False positive: This fixed the problem on the first run, but now it's back.  Changing message color flag did nothing either. b

On Fri, May 8, 2009 at 2:37 PM, Ben McAllister <benmca@...> wrote:
I know I know!


On Thu, May 7, 2009 at 10:00 PM, Steven Yi <stevenyi@...> wrote:
Okay, I don't quite understand how increasing the max ram for the VM
fixed the output issue, but glad to hear it did! :)

steven

On Thu, May 7, 2009 at 8:06 AM, Jan Jacob Hofmann
<jjh@...> wrote:
> Dear Ben,
>
> yes, I am working on a Mac too and it looks very, very familiar to
> me. If I remember well, this got solved when Steven told me to open
> the blue command file in a text editor and replace the Xmx-256m in
> the last row with Xmx-1024m so the result looks like this:
>
> java -Xms32m -Xmx1024m -DBLUE_HOME="$BLUE_HOME" -cp $BLUE_LIBS
> blue.Blue "$@"
>
> this won't remove the error, but maybe the [m
>
>
>
> All the best,
>
> Jan Jacob
>
>
>
> Am 07.05.2009 um 01:49 schrieb Ben McAllister:
>
>> Hi Folks -
>>
>> I've recently moved to a mac, and see a lot of '[m's interspersed
>> with output to the csound dialog.  For example:
>>  [m *** PortMIDI:  [merror: device number is out of range [m
>>  [m *** error opening MIDI in device: -1 (Unknown MIDI error) [m
>>  [minactive allocs returned to freespace
>> end of score.           overall amps:      0.0
>>        overall samples out of range:        0
>> 1 errors in performance
>> Elapsed time at end of performance: real: 1.056s, CPU: 0.060s
>>
>> (hope that came through ok).
>>
>> As well, I'm seeing alot of 'blueTimePointer' messages.  I'm trying
>> to debug an instrument with printf, and these extraneous messages
>> kind of get in the way ;)  Anyone seen this type of thing before?
>>
>> Thanks - Ben
>> ----------------------------------------------------------------------
>> --------
>> The NEW KODAK i700 Series Scanners deliver under ANY circumstances!
>> Your
>> production scanning environment may not be a perfect world - but
>> thanks to
>> Kodak, there's a perfect scanner to get the job done! With the NEW
>> KODAK i700
>> Series Scanner you'll get full speed at 300 dpi even with all image
>> processing features enabled. http://p.sf.net/sfu/kodak-
>> com_______________________________________________
>> Bluemusic-users mailing list
>> Bluemusic-users@...
>> https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>
>
> ------------------------------------------------------------------------------
> The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
> production scanning environment may not be a perfect world - but thanks to
> Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
> Series Scanner you'll get full speed at 300 dpi even with all image
> processing features enabled. http://p.sf.net/sfu/kodak-com
> _______________________________________________
> Bluemusic-users mailing list
> Bluemusic-users@...
> https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>

------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@...
https://lists.sourceforge.net/lists/listinfo/bluemusic-users



--
Listen Faster: http://www.listenfaster.com - audio, film and technology




--
Listen Faster: http://www.listenfaster.com - audio, film and technology


------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@...
https://lists.sourceforge.net/lists/listinfo/bluemusic-users

Re: [m in output dialog

by Steven Yi :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Ben,

Do you have a .csoundrc file in your home directory? I wonder if
there's something there setting something. (Just want to rule that out
first before moving further)

Thanks!
steven

On Tue, May 12, 2009 at 9:00 AM, Ben McAllister <benmca@...> wrote:

> I spoke too soon.  False positive: This fixed the problem on the first run,
> but now it's back.  Changing message color flag did nothing either. b
>
> On Fri, May 8, 2009 at 2:37 PM, Ben McAllister <benmca@...> wrote:
>>
>> I know I know!
>>
>> On Thu, May 7, 2009 at 10:00 PM, Steven Yi <stevenyi@...> wrote:
>>>
>>> Okay, I don't quite understand how increasing the max ram for the VM
>>> fixed the output issue, but glad to hear it did! :)
>>>
>>> steven
>>>
>>> On Thu, May 7, 2009 at 8:06 AM, Jan Jacob Hofmann
>>> <jjh@...> wrote:
>>> > Dear Ben,
>>> >
>>> > yes, I am working on a Mac too and it looks very, very familiar to
>>> > me. If I remember well, this got solved when Steven told me to open
>>> > the blue command file in a text editor and replace the Xmx-256m in
>>> > the last row with Xmx-1024m so the result looks like this:
>>> >
>>> > java -Xms32m -Xmx1024m -DBLUE_HOME="$BLUE_HOME" -cp $BLUE_LIBS
>>> > blue.Blue "$@"
>>> >
>>> > this won't remove the error, but maybe the [m
>>> >
>>> >
>>> >
>>> > All the best,
>>> >
>>> > Jan Jacob
>>> >
>>> >
>>> >
>>> > Am 07.05.2009 um 01:49 schrieb Ben McAllister:
>>> >
>>> >> Hi Folks -
>>> >>
>>> >> I've recently moved to a mac, and see a lot of '[m's interspersed
>>> >> with output to the csound dialog.  For example:
>>> >>  [m *** PortMIDI:  [merror: device number is out of range [m
>>> >>  [m *** error opening MIDI in device: -1 (Unknown MIDI error) [m
>>> >>  [minactive allocs returned to freespace
>>> >> end of score.           overall amps:      0.0
>>> >>        overall samples out of range:        0
>>> >> 1 errors in performance
>>> >> Elapsed time at end of performance: real: 1.056s, CPU: 0.060s
>>> >>
>>> >> (hope that came through ok).
>>> >>
>>> >> As well, I'm seeing alot of 'blueTimePointer' messages.  I'm trying
>>> >> to debug an instrument with printf, and these extraneous messages
>>> >> kind of get in the way ;)  Anyone seen this type of thing before?
>>> >>
>>> >> Thanks - Ben
>>> >> ----------------------------------------------------------------------
>>> >> --------
>>> >> The NEW KODAK i700 Series Scanners deliver under ANY circumstances!
>>> >> Your
>>> >> production scanning environment may not be a perfect world - but
>>> >> thanks to
>>> >> Kodak, there's a perfect scanner to get the job done! With the NEW
>>> >> KODAK i700
>>> >> Series Scanner you'll get full speed at 300 dpi even with all image
>>> >> processing features enabled. http://p.sf.net/sfu/kodak-
>>> >> com_______________________________________________
>>> >> Bluemusic-users mailing list
>>> >> Bluemusic-users@...
>>> >> https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>>> >
>>> >
>>> >
>>> > ------------------------------------------------------------------------------
>>> > The NEW KODAK i700 Series Scanners deliver under ANY circumstances!
>>> > Your
>>> > production scanning environment may not be a perfect world - but thanks
>>> > to
>>> > Kodak, there's a perfect scanner to get the job done! With the NEW
>>> > KODAK i700
>>> > Series Scanner you'll get full speed at 300 dpi even with all image
>>> > processing features enabled. http://p.sf.net/sfu/kodak-com
>>> > _______________________________________________
>>> > Bluemusic-users mailing list
>>> > Bluemusic-users@...
>>> > https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>>> >
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
>>> production scanning environment may not be a perfect world - but thanks
>>> to
>>> Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
>>> i700
>>> Series Scanner you'll get full speed at 300 dpi even with all image
>>> processing features enabled. http://p.sf.net/sfu/kodak-com
>>> _______________________________________________
>>> Bluemusic-users mailing list
>>> Bluemusic-users@...
>>> https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>>
>>
>>
>> --
>> Listen Faster: http://www.listenfaster.com - audio, film and technology
>>
>
>
>
> --
> Listen Faster: http://www.listenfaster.com - audio, film and technology
>
>
> ------------------------------------------------------------------------------
> The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
> production scanning environment may not be a perfect world - but thanks to
> Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
> i700
> Series Scanner you'll get full speed at 300 dpi even with all image
> processing features enabled. http://p.sf.net/sfu/kodak-com
> _______________________________________________
> Bluemusic-users mailing list
> Bluemusic-users@...
> https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>
>

------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@...
https://lists.sourceforge.net/lists/listinfo/bluemusic-users

Re: [m in output dialog

by Ben McAllister :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I don't - a .csound directory with g_cfg.dat, p_cfg.dat and u_cfg.dat inside, but no .csoundrc.


On Tue, May 12, 2009 at 9:44 AM, Steven Yi <stevenyi@...> wrote:
Hi Ben,

Do you have a .csoundrc file in your home directory? I wonder if
there's something there setting something. (Just want to rule that out
first before moving further)

Thanks!
steven

On Tue, May 12, 2009 at 9:00 AM, Ben McAllister <benmca@...> wrote:
> I spoke too soon.  False positive: This fixed the problem on the first run,
> but now it's back.  Changing message color flag did nothing either. b
>
> On Fri, May 8, 2009 at 2:37 PM, Ben McAllister <benmca@...> wrote:
>>
>> I know I know!
>>
>> On Thu, May 7, 2009 at 10:00 PM, Steven Yi <stevenyi@...> wrote:
>>>
>>> Okay, I don't quite understand how increasing the max ram for the VM
>>> fixed the output issue, but glad to hear it did! :)
>>>
>>> steven
>>>
>>> On Thu, May 7, 2009 at 8:06 AM, Jan Jacob Hofmann
>>> <jjh@...> wrote:
>>> > Dear Ben,
>>> >
>>> > yes, I am working on a Mac too and it looks very, very familiar to
>>> > me. If I remember well, this got solved when Steven told me to open
>>> > the blue command file in a text editor and replace the Xmx-256m in
>>> > the last row with Xmx-1024m so the result looks like this:
>>> >
>>> > java -Xms32m -Xmx1024m -DBLUE_HOME="$BLUE_HOME" -cp $BLUE_LIBS
>>> > blue.Blue "$@"
>>> >
>>> > this won't remove the error, but maybe the [m
>>> >
>>> >
>>> >
>>> > All the best,
>>> >
>>> > Jan Jacob
>>> >
>>> >
>>> >
>>> > Am 07.05.2009 um 01:49 schrieb Ben McAllister:
>>> >
>>> >> Hi Folks -
>>> >>
>>> >> I've recently moved to a mac, and see a lot of '[m's interspersed
>>> >> with output to the csound dialog.  For example:
>>> >>  [m *** PortMIDI:  [merror: device number is out of range [m
>>> >>  [m *** error opening MIDI in device: -1 (Unknown MIDI error) [m
>>> >>  [minactive allocs returned to freespace
>>> >> end of score.           overall amps:      0.0
>>> >>        overall samples out of range:        0
>>> >> 1 errors in performance
>>> >> Elapsed time at end of performance: real: 1.056s, CPU: 0.060s
>>> >>
>>> >> (hope that came through ok).
>>> >>
>>> >> As well, I'm seeing alot of 'blueTimePointer' messages.  I'm trying
>>> >> to debug an instrument with printf, and these extraneous messages
>>> >> kind of get in the way ;)  Anyone seen this type of thing before?
>>> >>
>>> >> Thanks - Ben
>>> >> ----------------------------------------------------------------------
>>> >> --------
>>> >> The NEW KODAK i700 Series Scanners deliver under ANY circumstances!
>>> >> Your
>>> >> production scanning environment may not be a perfect world - but
>>> >> thanks to
>>> >> Kodak, there's a perfect scanner to get the job done! With the NEW
>>> >> KODAK i700
>>> >> Series Scanner you'll get full speed at 300 dpi even with all image
>>> >> processing features enabled. http://p.sf.net/sfu/kodak-
>>> >> com_______________________________________________
>>> >> Bluemusic-users mailing list
>>> >> Bluemusic-users@...
>>> >> https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>>> >
>>> >
>>> >
>>> > ------------------------------------------------------------------------------
>>> > The NEW KODAK i700 Series Scanners deliver under ANY circumstances!
>>> > Your
>>> > production scanning environment may not be a perfect world - but thanks
>>> > to
>>> > Kodak, there's a perfect scanner to get the job done! With the NEW
>>> > KODAK i700
>>> > Series Scanner you'll get full speed at 300 dpi even with all image
>>> > processing features enabled. http://p.sf.net/sfu/kodak-com
>>> > _______________________________________________
>>> > Bluemusic-users mailing list
>>> > Bluemusic-users@...
>>> > https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>>> >
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
>>> production scanning environment may not be a perfect world - but thanks
>>> to
>>> Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
>>> i700
>>> Series Scanner you'll get full speed at 300 dpi even with all image
>>> processing features enabled. http://p.sf.net/sfu/kodak-com
>>> _______________________________________________
>>> Bluemusic-users mailing list
>>> Bluemusic-users@...
>>> https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>>
>>
>>
>> --
>> Listen Faster: http://www.listenfaster.com - audio, film and technology
>>
>
>
>
> --
> Listen Faster: http://www.listenfaster.com - audio, film and technology
>
>
> ------------------------------------------------------------------------------
> The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
> production scanning environment may not be a perfect world - but thanks to
> Kodak, there's a perfect scanner to get the job done! With the NEW KODAK
> i700
> Series Scanner you'll get full speed at 300 dpi even with all image
> processing features enabled. http://p.sf.net/sfu/kodak-com
> _______________________________________________
> Bluemusic-users mailing list
> Bluemusic-users@...
> https://lists.sourceforge.net/lists/listinfo/bluemusic-users
>
>

------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@...
https://lists.sourceforge.net/lists/listinfo/bluemusic-users



--
Listen Faster: http://www.listenfaster.com - audio, film and technology


------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Bluemusic-users mailing list
Bluemusic-users@...
https://lists.sourceforge.net/lists/listinfo/bluemusic-users