UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

24 lines (23 loc) 1.34 kB
import BitmovinResource from './BitmovinResource'; import InsertableContentInput from './InsertableContentInput'; import InsertableContentStatus from './InsertableContentStatus'; /** * @export * @class InsertableContent */ export declare class InsertableContent extends BitmovinResource { /** * Either a list of movie files to be inserted in the live stream or a single image file. The movie files must have a video stream at stream position 0, which matches the codec, resolution and framerate of the livestream. The number of audio streams must also be the same and they have to match the sample format, number of channels and sample rate of the audio streams of the livestream. Supported image formats are: `.Y.U.V`, `Alias PIX`, `animated GIF`, `APNG`, `BMP`, `DPX`, `FITS`, `JPEG`, `JPEG 2000`, `JPEG-LS`, `PAM`, `PBM`, `PCX`, `PGM`, `PGMYUV`, `PNG`, `PPM`, `SGI`, `Sun Rasterfile`, `TIFF`, `Truevision Targa`, `WebP`, `XBM`, `XFace`, `XPM`, `XWD` * @type {InsertableContentInput[]} * @memberof InsertableContent */ inputs?: InsertableContentInput[]; /** * Status of the insertable content. * @type {InsertableContentStatus} * @memberof InsertableContent */ status?: InsertableContentStatus; constructor(obj?: Partial<InsertableContent>); } export default InsertableContent;