Skip to main content
May 17, 2006
Question

getActivity for incomming netStream

  • May 17, 2006
  • 1 reply
  • 253 views
I have an app which makes a little clip dance when the microphone activity goes high enough. That's easy, just check Microphne.get().activityLevel

I also, however, have an incomming netStream which I'd like to do the same thing with, make the little clip dance when the activity on the incomming stream goes above a given level. This isn't so easy, there is no activityLevel properly on a netStream it seems.

Anyone have any clue how I might go about finding such a thing?

Thanks.
    This topic is closed to new replies. Start a new post to keep the conversation going.

    1 reply

    May 18, 2006
    Never mind.

    I'm putting the ActivityLevel into a .send() every few frames so that it's embedded into the stream so the code playing it back can find it. Doesn't feel like the ideal situation, but it's working.