-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
* feat: Add kissasian provider * Update kissasian * Add streamwish extractor * Add mp4upload provider * [CodeFactor] Apply fixes * Update dist * Update imports --------- Co-authored-by: codefactor-io <[email protected]>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
import AsianLoad from './asianload'; | ||
import BilibiliExtractor from './bilibili'; | ||
import Filemoon from './filemoon'; | ||
import GogoCDN from './gogocdn'; | ||
import StreamSB from './streamsb'; | ||
import VidCloud from './vidcloud'; | ||
import MixDrop from './mixdrop'; | ||
import Kwik from './kwik'; | ||
import MixDrop from './mixdrop'; | ||
import Mp4Upload from './mp4upload'; | ||
import RapidCloud from './rapidcloud'; | ||
import StreamTape from './streamtape'; | ||
import VizCloud from './vizcloud'; | ||
import Filemoon from './filemoon'; | ||
import BilibiliExtractor from './bilibili'; | ||
import AsianLoad from './asianload'; | ||
import StreamLare from './streamlare'; | ||
import SmashyStream from './smashystream'; | ||
import StreamHub from './streamhub'; | ||
export { GogoCDN, StreamSB, VidCloud, MixDrop, Kwik, RapidCloud, StreamTape, VizCloud, Filemoon, BilibiliExtractor, AsianLoad, StreamHub, StreamLare, SmashyStream, }; | ||
import StreamLare from './streamlare'; | ||
import StreamSB from './streamsb'; | ||
import StreamTape from './streamtape'; | ||
import StreamWish from './streamwish'; | ||
import VidCloud from './vidcloud'; | ||
import VidMoly from './vidmoly'; | ||
import VizCloud from './vizcloud'; | ||
export { AsianLoad, BilibiliExtractor, Filemoon, GogoCDN, Kwik, MixDrop, Mp4Upload, RapidCloud, SmashyStream, StreamHub, StreamLare, StreamSB, StreamTape, StreamWish, VidCloud, VidMoly, VizCloud, }; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { VideoExtractor, IVideo } from '../models'; | ||
declare class Mp4Upload extends VideoExtractor { | ||
protected serverName: string; | ||
protected sources: IVideo[]; | ||
extract: (videoUrl: URL) => Promise<IVideo[]>; | ||
} | ||
export default Mp4Upload; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { VideoExtractor, IVideo } from '../models'; | ||
declare class StreamWish extends VideoExtractor { | ||
protected serverName: string; | ||
protected sources: IVideo[]; | ||
extract: (videoUrl: URL) => Promise<IVideo[]>; | ||
} | ||
export default StreamWish; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { VideoExtractor, IVideo } from '../models'; | ||
declare class VidMoly extends VideoExtractor { | ||
protected serverName: string; | ||
protected sources: IVideo[]; | ||
extract: (videoUrl: URL) => Promise<IVideo[]>; | ||
} | ||
export default VidMoly; |