Skip to content

Commit

Permalink
update build
Browse files Browse the repository at this point in the history
  • Loading branch information
riimuru committed Nov 28, 2022
1 parent 4909824 commit 01a4afd
Show file tree
Hide file tree
Showing 78 changed files with 4,419 additions and 2,864 deletions.
14 changes: 14 additions & 0 deletions dist/extractors/asianload.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { VideoExtractor, IVideo, ISubtitle } from '../models';
declare class AsianLoad extends VideoExtractor {
protected serverName: string;
protected sources: IVideo[];
private readonly keys;
extract: (videoUrl: URL) => Promise<{
sources: IVideo[];
} & {
subtitles: ISubtitle[];
}>;
private generateEncryptedAjaxParams;
private decryptAjaxData;
}
export default AsianLoad;
72 changes: 72 additions & 0 deletions dist/extractors/asianload.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/extractors/asianload.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions dist/extractors/bilibili.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
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;
66 changes: 66 additions & 0 deletions dist/extractors/bilibili.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/extractors/bilibili.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions dist/extractors/filemoon.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { VideoExtractor, IVideo } from '../models';
/**
* work in progress
*/
declare class Filemoon extends VideoExtractor {
protected serverName: string;
protected sources: IVideo[];
private readonly host;
extract: (videoUrl: URL) => Promise<IVideo[]>;
}
export default Filemoon;
38 changes: 38 additions & 0 deletions dist/extractors/filemoon.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/extractors/filemoon.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions dist/extractors/gogocdn.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { VideoExtractor, IVideo } from '../models';
declare class GogoCDN extends VideoExtractor {
protected serverName: string;
protected sources: IVideo[];
private readonly keys;
private referer;
extract: (videoUrl: URL) => Promise<IVideo[]>;
private addSources;
private generateEncryptedAjaxParams;
private decryptAjaxData;
}
export default GogoCDN;
Loading

0 comments on commit 01a4afd

Please sign in to comment.