UNPKG

consumet.custom

Version:

Nodejs library that provides high-level APIs for obtaining information on various entertainment media such as books, movies, comic books, anime, manga, and so on.

11 lines (10 loc) 419 B
import { ISource, IVideo, VideoExtractor } from '../models'; declare class BilibiliExtractor extends VideoExtractor { protected serverName: string; protected sources: IVideo[]; extract(episodeId: any): Promise<ISource>; toDash: (data: any) => string; videoSegment: (video: any, index?: number) => string; audioSegment: (audio: any, index?: number) => string; } export default BilibiliExtractor;