Package com.wowza.wms.stream
Interface IMediaWriterActionNotify
-
- All Known Implementing Classes:
MediaWriterActionNotifyBase
public interface IMediaWriterActionNotify
IMediaWriterActionNotify: listener interface for file writing with regard to recording streams.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onFLVAddMetadata(IMediaStream stream, java.util.Map<String,Object> extraMetadata)
Called just before metadata is written to the file (FLV only)void
onWriteComplete(IMediaStream stream, java.io.File file)
Called when writing is complete
-
-
-
Method Detail
-
onWriteComplete
void onWriteComplete(IMediaStream stream, java.io.File file)
Called when writing is complete- Parameters:
stream
- streamfile
- file handle
-
onFLVAddMetadata
void onFLVAddMetadata(IMediaStream stream, java.util.Map<String,Object> extraMetadata)
Called just before metadata is written to the file (FLV only)- Parameters:
stream
- streamextraMetadata
- additional metadata, add to this collection to add items to onMetadata event written to FLV file.
-
-