In order to this you would have to make some change to your client because you if i am not wrong you need VOD playback for each client - not live. When you play using Server-side - it becomes available as live stream and not as VOD stream. So client needs to issue appropriate play command from using NetStream.play method and passing correct parameters. However this does not mean you have to different client code for each client subscriber. Below is my workflow suggestion for you: Client makes a connection and passes its user credentials & filename it wants to play Server-side code examines user credentials and accepts/rejects connection. If Accept, onAcceptConnection gets called and based client and filename - there is callback to client with needed "startTime" and duration In client code - the callback assigns the values returned from server to defined variables and this defined variables are used in NetStream.play method. I hope above workflow explanation helps you to get started.
... View more