Skip to main content
Participant
February 27, 2007
Question

Set a time limit to videorecord

  • February 27, 2007
  • 2 replies
  • 319 views
How can I set a time limit to videorecord component?
    This topic is closed to new replies. Start a new post to keep the conversation going.

    2 replies

    Inspiring
    February 27, 2007
    sure do this..

    record = setInterval (stoprec,3000);

    function stoprec(){
    netStream.publish("live");
    clearInterval(record);
    }

    that will make it go from publish("record"); to publish live after 3 seconds stoping the recording.
    Participant
    February 28, 2007
    but i'm using flash media server components...