1

I want to broadcast live video I am using FMS to brodacast live video. I want to save that video to view again back, may be after some days or week.

I know how to publish live

ns.publish("appName","live");

But I want to save this video and view back when user request to see it again (not as live - as video on demand).

4

2 回答 2

2

Check the Adobe documentation for NetStream. You simply use "record" instead of "live" :

ns.publish("lecture", "record");
于 2012-08-03T05:07:20.660 回答
1

IF you don't want to replace your saved file each time... use appned mode for publish

ns.publish("appName","append");
于 2015-02-24T10:21:46.663 回答