Skip to main content
September 24, 2010
Question

Question about download progress from FMS

  • September 24, 2010
  • 2 replies
  • 689 views

Hi, I've installed FMS 3.5 , download video files from it. But how can I determine video download progress, when properties bytesTotal and bytesLoaded of my netStream object  = 0 ? amountLoaded = ns.bytesLoaded / ns.bytesTotal;  - doesn't work

    This topic has been closed for replies.

    2 replies

    September 25, 2010

    So, what method should I use to determine streaming download progress? Do I have to write any server-side script?

    September 24, 2010

    BytesLoaded and bytestotal are only for progressive download. There is no concept of bytesloaded and bytestotal for RTMP streams.

    Petro_O__Bochan
    Inspiring
    September 25, 2010

    Client side - AS2: ns.setBufferTime(5); AS3: ns.bufferTime = 5.

    September 25, 2010

    What? Buffer time is not the same as load progress.