Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

in adobe flash media server 4.0, how can I programmatically attached the path to the recorded file which is played by a client. e.g.,

in client side,

mynetStream.play ("myrecordedfile.flv")

how to redirect the playing to the file under e.g., c:\my_dynamic_file_path.

note that, the file path is changable based on the client's login name.

Thanks,

share|improve this question

1 Answer

I am not sure if the below is a good solution or not,

in client side:

mynetStream.play
("myrecordedfile.flv");

netconn.call ("playStream", null, "myrecordedfile.flv", username);

in flash media server side,

Client.prototype.playStream = function
(streamname, username) {

   var s = Stream.get (streamname);   
var file = username + "\" +
streamname;    s.play (file, 0, -1); 
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.