UNPKG

media-stream-library

Version:

Media stream library for Node & the Web.

15 lines (14 loc) 452 B
import { RtspConfig } from '../components/rtsp-session'; import { RtspPipeline } from './rtsp-pipeline'; /** * RtspMjpegPipeline * * A pipeline that can process JPEG RTP data, and converts it to streaming * motion JPEG format (sequence of JPEG images). * * The following handlers can be defined: * - all handlers from the RtspPipeline */ export declare class RtspMjpegPipeline extends RtspPipeline { constructor(rtspConfig?: RtspConfig); }