Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions dist/extension-registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,28 @@
"extractors": ["MegaUp"],
"isSourceEmbed": true,
"haveMultiServers": true
},
{
"id": "tollywood",
"name": "Tollywood",
"description": "Telugu and Tollywood movies streaming from MovieRulz with multiple servers",
"version": "1.0.0",
"author": {
"name": "RNConsumet Team",
"url": "https://github.com/uwumilabs"
},
"category": "movies",
"main": "https://raw.githubusercontent.com/uwumilabs/react-native-consumet/refs/heads/main/dist/providers/movies/tollywood/create-tollywood.js",
"factoryName": "createTollywood",
"baseUrl": "https://www.5movierulz.tires",
"logo": "https://www.5movierulz.tires/favicon.ico",
"languages": ["te", "hi", "en"],
"nsfw": false,
"status": "stable",
"lastUpdated": "2025-08-05T00:00:00Z",
"extractors": ["StreamTape"],
"isSourceEmbed": true,
"haveMultiServers": true
}
]
}
2 changes: 1 addition & 1 deletion dist/extractors/StreamP2P.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ declare class StreamP2P extends VideoExtractor {
extract(videoUrl: URL): Promise<IVideo[] | ISource>;
}
export default StreamP2P;
//# sourceMappingURL=streamp2p.d.ts.map
//# sourceMappingURL=StreamP2P.d.ts.map
2 changes: 1 addition & 1 deletion dist/extractors/StreamP2P.d.ts.map

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

2 changes: 1 addition & 1 deletion dist/extractors/StreamP2P.js

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

2 changes: 1 addition & 1 deletion dist/extractors/StreamP2P.js.map

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

4 changes: 4 additions & 0 deletions dist/providers/movies/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,19 @@ import HiMovies from './himovies/himovies';
import { createHiMovies } from './himovies/create-himovies';
import YFlix from './yflix/yflix';
import { createYFlix } from './yflix/create-yflix';
import Tollywood from './tollywood/tollywood';
import { createTollywood } from './tollywood/create-tollywood';
declare const _default: {
MultiMovies: typeof MultiMovies;
NetflixMirror: typeof NetflixMirror;
HiMovies: typeof HiMovies;
YFlix: typeof YFlix;
Tollywood: typeof Tollywood;
MultiStream: typeof MultiStream;
createHiMovies: typeof createHiMovies;
createMultiMovies: typeof createMultiMovies;
createYFlix: typeof createYFlix;
createTollywood: typeof createTollywood;
};
export default _default;
//# sourceMappingURL=index.d.ts.map
2 changes: 1 addition & 1 deletion dist/providers/movies/index.d.ts.map

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

4 changes: 4 additions & 0 deletions dist/providers/movies/index.js

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

2 changes: 1 addition & 1 deletion dist/providers/movies/index.js.map

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

25 changes: 25 additions & 0 deletions dist/providers/movies/tollywood/create-tollywood.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import { type IMovieInfo, type IEpisodeServer, type StreamingServers, type ISource, type IMovieResult, type ISearch, type ProviderContext } from '../../../models';
/**
* Tollywood Movie Provider for MovieRulz
* Scrapes 5movierulz.tires for Telugu/Tollywood movies
*/
export declare function createTollywood(ctx: ProviderContext, customBaseURL?: string): {
supportedTypes: Set<import("../../../models").TvType>;
search: (query: string, page?: number) => Promise<ISearch<IMovieResult>>;
fetchMediaInfo: (mediaId: string) => Promise<IMovieInfo>;
fetchEpisodeSources: (episodeId: string, mediaId: string, server?: StreamingServers) => Promise<ISource>;
fetchEpisodeServers: (episodeId: string, _mediaId: string) => Promise<IEpisodeServer[]>;
fetchTeluguFeatured: (page?: number) => Promise<ISearch<IMovieResult>>;
fetchTeluguByYear: (year: number, page?: number) => Promise<ISearch<IMovieResult>>;
fetchLatestMovies: () => Promise<IMovieResult[]>;
name: string;
languages: string[] | string;
classPath: string;
baseUrl: string;
isNSFW: boolean;
logo: string;
isWorking?: boolean;
isDubAvailableSeparately?: boolean;
};
export type TollywoodProviderInstance = ReturnType<typeof createTollywood>;
//# sourceMappingURL=create-tollywood.d.ts.map
1 change: 1 addition & 0 deletions dist/providers/movies/tollywood/create-tollywood.d.ts.map

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

Loading
Loading