FMS3 Recorded stream playback speed too high

Ask a Question related to Macromedia Flash Flashcom, Design and Development.

  1. #1

    Default FMS3 Recorded stream playback speed too high

    Hi, is there a change between FMS2 and FMIS3 in stram.play() ?

    I need to publish a stream from the server which has been recorded with FMS
    just before.
    When I play back this stream on the client, it runs much too fast and
    pauses from time to time to reload
    the next video data and then runs full speed to the next pause.
    I tried setting bandwidth limits with no effect.
    I tried different fps settings when recording with no effect.
    I tried different fps settings when playing back with no effect.

    On FMS2 this worked nicely. (No, I can't switch back.)
    I suspect the problem to be some server side buffering or so, but I can't find
    a solution.
    Can anybody else ? Maybe some pointers to the server configuration docs ?

    On the server:
    myStream = Stream.get( playVideoName );
    myStream.play( "streamnametoplay", 0 );

    On the client:
    ns = new NetStream( netConn );
    video.attachNetStream( ns );
    ns.play( 'streamnametoplay' );

    Thanks for any hints

    therabrab Guest

  2. Similar Questions and Discussions

    1. Flash player version for recorded stream playback
      I'm having difficulty to determine which flash player version is required by users when playing FLV files using the video object in flash (so no...
    2. playback more than one recorded streams insynchronization.
      http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&catid=578&threadid=1195558&enterthread=y
    3. End of recorded stream losts
      I want to create a simple application which records the stream from webcam then plays it. But when I want to play it the end of stream is missing....
    4. Recorded FLV playback on Win2k3
      Hello -- I have a FMS 2.0 running on a Windows 2003 Standard Server with a single applciation setup. I have changed the default applications...
    5. Playback of recorded stream
      Can a video or audio stream recorded through FMS be played back via a regular, non-streaming Flash file? The audio and video clips would be short...
  3. #2

    Default Re: FMS3 Recorded stream playback speed too high

    :grin; Solved.

    On the client side, simply use (for example)
    ns.bufferTime = 2;
    before playing the stream. Now the video plays at original speed.



    therabrab Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139