Re: [Flashcoders] flv playback speed control

2007-08-30 Thread sean
There is no built in functionality for this, however, you could use the NetStream.seek() function and call that in an Interval. By changing the interval call time and by changing the seek location integer from an incremented one to a decremented one, you'll be able to speed up the play back going

[Flashcoders] flv playback speed control

2007-08-24 Thread james o
can flv's be slowed down and or sped up programmatically? any thoughts, directions or brain storms would be beneficial. thanks, ./james { primaxSTUDIO : http://primaxSTUDIO.com : 513.772.1223 } ___ Flashcoders@chattyfig.figleaf.com To change your

RE: [Flashcoders] flv playback speed control

2007-08-24 Thread Kerry Thompson
James O wrote: can flv's be slowed down and or sped up programmatically? How about using stop(); and the beginning of your movie, and set a timer to call a function that advances the frame. You could vary the speed by advancing the frame every call, every second call, every third call, etc. Or,