Reputation: 191
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).
Upvotes: 1
Views: 602
Reputation: 3233
IF you don't want to replace your saved file each time... use appned mode for publish
ns.publish("appName","append");
Upvotes: 1