Level meter disappearing

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

Level meter disappearing

by James Harkins-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Just saw something odd in latest svn (just updated a few minutes ago to r9117, cleaned targets and rebuilt the client). 10.4 .11, Intel.

Boot the server, then hit L in the server window to bring up the level meter.
Run this:

(
SynthDef(\bell, { |amp = 0.5, out = 0|
var exciter = PinkNoise.ar(amp)
* Decay2.kr(Impulse.kr(0), 0.01, 0.1),
sig = Klank.ar(`[
{ ExpRand(100, 800) } ! 5,
0.1,
{ Rand(1.0, 3.0) } ! 5,
], exciter);
DetectSilence.ar(sig, doneAction: 2);
Out.ar(out, sig ! 2);
}).memStore;
)

a = Synth(\bell);

When the synth becomes silent and frees itself, all the channels disappear from the output side on the right. This appears to be consistently reproducible on my machine (out of 3-5 trials, no idea if it would work successfully sometime later).

Then I thought maybe if I resize the window with the mouse, it would refresh. That made the entire window disappear, just leaving a white void covering the area where the window used to be. Nothing I could do then but close the window with cmd-W.

Anyone else?
hjh


: H. James Harkins
.::!:.:.......:.::........:..!.::.::...:..:...:.:.:.:..:

"Come said the Muse,
Sing me a song no poet has yet chanted,
Sing me the universal."  -- Whitman


Re: Level meter disappearing

by Josh Parmenter :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Intel - 10.5.6, the active channels in the output flicker, but refresh right away for me... couldn't get all of them to disappear at all...

Best,

Josh

On Apr 25, 2009, at 8:21 PM, James Harkins wrote:

Just saw something odd in latest svn (just updated a few minutes ago to r9117, cleaned targets and rebuilt the client). 10.4 .11, Intel.

Boot the server, then hit L in the server window to bring up the level meter.
Run this:

(
SynthDef(\bell, { |amp = 0.5, out = 0|
var exciter = PinkNoise.ar(amp)
* Decay2.kr(Impulse.kr(0), 0.01, 0.1),
sig = Klank.ar(`[
{ ExpRand(100, 800) } ! 5,
0.1,
{ Rand(1.0, 3.0) } ! 5,
], exciter);
DetectSilence.ar(sig, doneAction: 2);
Out.ar(out, sig ! 2);
}).memStore;
)

a = Synth(\bell);

When the synth becomes silent and frees itself, all the channels disappear from the output side on the right. This appears to be consistently reproducible on my machine (out of 3-5 trials, no idea if it would work successfully sometime later).

Then I thought maybe if I resize the window with the mouse, it would refresh. That made the entire window disappear, just leaving a white void covering the area where the window used to be. Nothing I could do then but close the window with cmd-W.

Anyone else?
hjh


: H. James Harkins
.::!:.:.......:.::........:..!.::.::...:..:...:.:.:.:..:

"Come said the Muse,
Sing me a song no poet has yet chanted,
Sing me the universal."  -- Whitman


******************************************

/* Joshua D. Parmenter

http://www.realizedsound.net/josh/


“Every composer – at all times and in all cases – gives his own interpretation of how modern society is structured: whether actively or passively, consciously or unconsciously, he makes choices in this regard. He may be conservative or he may subject himself to continual renewal; or he may strive for a revolutionary, historical or social palingenesis." - Luigi Nono

*/


Re: Level meter disappearing

by blackrain-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

10.4 hmm 10? I think.
yeah they go mia here.

cheers,

x

On Sat, Apr 25, 2009 at 10:36 PM, Josh Parmenter <josh@...> wrote:

> Intel - 10.5.6, the active channels in the output flicker, but refresh right
> away for me... couldn't get all of them to disappear at all...
> Best,
> Josh
> On Apr 25, 2009, at 8:21 PM, James Harkins wrote:
>
> Just saw something odd in latest svn (just updated a few minutes ago to
> r9117, cleaned targets and rebuilt the client). 10.4 .11, Intel.
> Boot the server, then hit L in the server window to bring up the level
> meter.
> Run this:
> (
> SynthDef(\bell, { |amp = 0.5, out = 0|
> var exciter = PinkNoise.ar(amp)
> * Decay2.kr(Impulse.kr(0), 0.01, 0.1),
> sig = Klank.ar(`[
> { ExpRand(100, 800) } ! 5,
> 0.1,
> { Rand(1.0, 3.0) } ! 5,
> ], exciter);
> DetectSilence.ar(sig, doneAction: 2);
> Out.ar(out, sig ! 2);
> }).memStore;
> )
> a = Synth(\bell);
> When the synth becomes silent and frees itself, all the channels disappear
> from the output side on the right. This appears to be consistently
> reproducible on my machine (out of 3-5 trials, no idea if it would work
> successfully sometime later).
> Then I thought maybe if I resize the window with the mouse, it would
> refresh. That made the entire window disappear, just leaving a white void
> covering the area where the window used to be. Nothing I could do then but
> close the window with cmd-W.
> Anyone else?
> hjh
>
> : H. James Harkins
> : jamshark70@...
> : http://www.dewdrop-world.net
> .::!:.:.......:.::........:..!.::.::...:..:...:.:.:.:..:
> "Come said the Muse,
> Sing me a song no poet has yet chanted,
> Sing me the universal."  -- Whitman
>
> ******************************************
>
> /* Joshua D. Parmenter
>
> http://www.realizedsound.net/josh/
>
> “Every composer – at all times and in all cases – gives his own
> interpretation of how modern society is structured: whether actively or
> passively, consciously or unconsciously, he makes choices in this regard. He
> may be conservative or he may subject himself to continual renewal; or he
> may strive for a revolutionary, historical or social palingenesis." - Luigi
> Nono
>
> */
>

_______________________________________________
sc-dev mailing list

info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/

Re: Level meter disappearing

by Scott Wilson-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Okay, I see where it's happening.

I'll sort it out.

S.

On 26 Apr 2009, at 08:59, blackrain wrote:

> 10.4 hmm 10? I think.
> yeah they go mia here.
>
> cheers,
>
> x
>
> On Sat, Apr 25, 2009 at 10:36 PM, Josh Parmenter <josh@...
> > wrote:
>> Intel - 10.5.6, the active channels in the output flicker, but  
>> refresh right
>> away for me... couldn't get all of them to disappear at all...
>> Best,
>> Josh
>> On Apr 25, 2009, at 8:21 PM, James Harkins wrote:
>>
>> Just saw something odd in latest svn (just updated a few minutes  
>> ago to
>> r9117, cleaned targets and rebuilt the client). 10.4 .11, Intel.
>> Boot the server, then hit L in the server window to bring up the  
>> level
>> meter.
>> Run this:
>> (
>> SynthDef(\bell, { |amp = 0.5, out = 0|
>> var exciter = PinkNoise.ar(amp)
>> * Decay2.kr(Impulse.kr(0), 0.01, 0.1),
>> sig = Klank.ar(`[
>> { ExpRand(100, 800) } ! 5,
>> 0.1,
>> { Rand(1.0, 3.0) } ! 5,
>> ], exciter);
>> DetectSilence.ar(sig, doneAction: 2);
>> Out.ar(out, sig ! 2);
>> }).memStore;
>> )
>> a = Synth(\bell);
>> When the synth becomes silent and frees itself, all the channels  
>> disappear
>> from the output side on the right. This appears to be consistently
>> reproducible on my machine (out of 3-5 trials, no idea if it would  
>> work
>> successfully sometime later).
>> Then I thought maybe if I resize the window with the mouse, it would
>> refresh. That made the entire window disappear, just leaving a  
>> white void
>> covering the area where the window used to be. Nothing I could do  
>> then but
>> close the window with cmd-W.
>> Anyone else?
>> hjh
>>
>> : H. James Harkins
>> : jamshark70@...
>> : http://www.dewdrop-world.net
>> .::!:.:.......:.::........:..!.::.::...:..:...:.:.:.:..:
>> "Come said the Muse,
>> Sing me a song no poet has yet chanted,
>> Sing me the universal."  -- Whitman
>>
>> ******************************************
>>
>> /* Joshua D. Parmenter
>>
>> http://www.realizedsound.net/josh/
>>
>> “Every composer – at all times and in all cases – gives his own
>> interpretation of how modern society is structured: whether  
>> actively or
>> passively, consciously or unconsciously, he makes choices in this  
>> regard. He
>> may be conservative or he may subject himself to continual renewal;  
>> or he
>> may strive for a revolutionary, historical or social palingenesis."  
>> - Luigi
>> Nono
>>
>> */
>>
>
> _______________________________________________
> sc-dev mailing list
>
> info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
> archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
> search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/


_______________________________________________
sc-dev mailing list

info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/