Uses of Class
com.wowza.wms.livestreamrecord.manager.StreamRecorderParameters
-
Packages that use StreamRecorderParameters Package Description com.wowza.wms.livestreamrecord.manager -
-
Uses of StreamRecorderParameters in com.wowza.wms.livestreamrecord.manager
Methods in com.wowza.wms.livestreamrecord.manager that return StreamRecorderParameters Modifier and Type Method Description StreamRecorderParameters
IStreamRecorder. getRecorderParams()
Called to get the StreamRecorderParameters for the recorder
This is typically used to check or set the StreamRecorderParameters used to configure a recorder.Methods in com.wowza.wms.livestreamrecord.manager with parameters of type StreamRecorderParameters Modifier and Type Method Description IStreamRecorder
ILiveStreamRecordManagerActionNotify. recordFactory(String streamName, StreamRecorderParameters recordParams)
This notification is the first one to occur when the ILiveStreamRecordManager is requested to start a recording via any of the ILiveStreamRecordManager startRecording API's
It gives the listener the opportunity to return a custom class which implements the IStreamRecorder interface to handle the recording.
If the listener returns null, the LiveStreamRecordManager will internally create an new StreamRecorder to handle the recording.void
ILiveStreamRecordManager. startRecording(IApplicationInstance appInstance, StreamRecorderParameters params)
Used to tell the LiveStreamRecordManager to create StreamRecorders for all streams which are published to the specified application instance.void
ILiveStreamRecordManager. startRecording(IApplicationInstance appInstance, String streamName, StreamRecorderParameters params)
Used to tell the LiveStreamRecordManager to create a StreamRecorder for a specific stream in a specific application instance.Constructors in com.wowza.wms.livestreamrecord.manager with parameters of type StreamRecorderParameters Constructor Description StreamRecorderParameters(IApplicationInstance appInstance, StreamRecorderParameters params)
The constructor will copy another StreamRecorderParameters object.
-