media-stream-library
Version:
Media stream library for Node & the Web.
18 lines (17 loc) • 520 B
TypeScript
import { AuthConfig } from '../components/auth';
import { RtspConfig } from '../components/rtsp-session';
import { RtspMjpegPipeline } from './rtsp-mjpeg-pipeline';
interface RtspAuthConfig {
rtsp?: RtspConfig;
auth?: AuthConfig;
}
/**
* CliMjpegPipeline
*
* A pipeline which connects to an RTSP server over TCP and can process JPEG
* over RTP data producing a stream of JPEG images.
*/
export declare class CliMjpegPipeline extends RtspMjpegPipeline {
constructor(config: RtspAuthConfig);
}
export {};