Package org.red5.client
Class PublishModes
- java.lang.Object
-
- org.red5.client.PublishModes
-
public final class PublishModes extends Object
Publish modes according Adobe ActionScript 3 documentation Quoting http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/NetStream.html#publish%28%29 If you pass "record", the server publishes and records live data, saving the recorded data to a new file with a name matching the value passed to the name parameter. If the file exists, it is overwritten. If you pass "append", the server publishes and records live data, appending the recorded data to a file with a name that matches the value passed to the name parameter. If no file matching the name parameter is found, it is created. If you pass "appendWithGap", additional information about time coordination is passed to help the server determine the correct transition point when dynamic streaming. If you omit this parameter or pass "live", the server publishes live data without recording it. If a file with a name that matches the value passed to the name parameter exists, it is deleted.- Author:
- Stoian Ivanov (s.ivanov_at_teracomm.bg)
-
-
Constructor Summary
Constructors Constructor Description PublishModes()
-
-
-
Field Detail
-
LIVE
public static final String LIVE
- See Also:
- Constant Field Values
-
RECORD
public static final String RECORD
- See Also:
- Constant Field Values
-
APPEND
public static final String APPEND
- See Also:
- Constant Field Values
-
APPENDWITHGAP
public static final String APPENDWITHGAP
- See Also:
- Constant Field Values
-
-