MPEG4Recorder(String, Stream, Stream) Constructor |
Initialize an MPEG4 recorder, which will mux the data from connected audio and video handlers to an MP4 audio/video file.
The actual file write will be done when Multiplex() is called.
Namespace: Ozeki.MediaAssembly: OzekiSDK (in OzekiSDK.dll) Version: 10.4.13.0
Syntaxpublic MPEG4Recorder(
string path,
Stream videoStream,
Stream audioStream
)
Public Sub New (
path As String,
videoStream As Stream,
audioStream As Stream
)
public:
MPEG4Recorder(
String^ path,
Stream^ videoStream,
Stream^ audioStream
)
new :
path : string *
videoStream : Stream *
audioStream : Stream -> MPEG4Recorder
Parameters
- path String
- Path to MP4 file to write.
- videoStream Stream
- The temporary stream the video data will be written.
- audioStream Stream
- The temporary stream the audio data will be written.
See Also