Rohit Dhore
Rohit Dhore

Reputation: 191

AS3 Broadcast live video using FMS and save that video for VOD

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

Answers (2)

UniCoder
UniCoder

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

loxxy
loxxy

Reputation: 13151

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

ns.publish("lecture", "record");

Upvotes: 2

Related Questions