Skip to main content
calmchessplayer
Inspiring
January 26, 2010
Question

server side netstream.time

  • January 26, 2010
  • 2 replies
  • 527 views

I'm using the following code to attempt to get netStream.time on the serverside.....i've tried various ways googled it but have come up short...what code do i need to use so i can track a streams progress from the server side?

myStream = Stream.get("home1");


setInterval(time,5000,myStream.time);

function time(myStream){
  trace(myStream);
}

    This topic has been closed for replies.

    2 replies

    calmchessplayer
    Inspiring
    January 27, 2010

    after an hours worth of google searches i figure it out you have to play the stream on the serverside before you can get netstream.time

    calmchessplayer
    Inspiring
    January 27, 2010

    I just noticed something in my above code i'm creating a empty netstream instead of attaching to the currently playing netstream......how do i connect to a .flv and get netStream.time after its already begun to run?