media-stream-library
Version:
Media stream library for Node & the Web.
18 lines (17 loc) • 504 B
TypeScript
import { AuthConfig } from '../components/auth';
import { RtspConfig } from '../components/rtsp-session';
import { RtspMp4Pipeline } from './rtsp-mp4-pipeline';
interface RtspAuthConfig {
rtsp?: RtspConfig;
auth?: AuthConfig;
}
/**
* CliMp4Pipeline
*
* A pipeline which connects to an RTSP server over TCP and process H.264/AAC
* over RTP to produce a stream of MP4 data.
*/
export declare class CliMp4Pipeline extends RtspMp4Pipeline {
constructor(config: RtspAuthConfig);
}
export {};