https://github.com/inside4ndroid/vidsrc-api-js
A working vidsrc extractor as an api in javascript
https://github.com/inside4ndroid/vidsrc-api-js
Last synced: 3 months ago
JSON representation
A working vidsrc extractor as an api in javascript
- Host: GitHub
- URL: https://github.com/inside4ndroid/vidsrc-api-js
- Owner: Inside4ndroid
- Created: 2024-06-23T18:03:00.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-12-08T23:28:28.000Z (6 months ago)
- Last Synced: 2025-02-14T02:06:43.923Z (4 months ago)
- Language: JavaScript
- Homepage: https://vidsrc-api-js-eosin.vercel.app
- Size: 40 KB
- Stars: 33
- Watchers: 5
- Forks: 21
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Unoffical vidsrc (embed.su) API! 👋
## Sponsorship / DonationsYour sponsorship is vital in helping me achieve this mission. With your support, I can:
Dedicate more time to developing and improving my projects
Cover costs for essential tools, services and premium hosting to run public projects
Provide detailed documentation and support for users
Every contribution, no matter the size, makes a significant impact.[Sponsor Me!](https://github.com/sponsors/Inside4ndroid)
Thank you for considering supporting my work!
### NOTE:
This is an api for id's provided at [TMDB](https://www.themoviedb.org/)
you must use the ID from the tmdb url like this :
so
```
MOVIES:https://www.themoviedb.org/movie/1034541-terrifier-3?language=en-GB
TV SHOWS:
https://www.themoviedb.org/tv/124364-from?language=en-GB
```
would be
```
MOVIES:`/{provider}/1034541`
TVSHOWS :
`/{provider}/124364?s=1&e=1` (s - Season / e - Episode)
```## Providers
The providers are currently :
```
embedsu
```## Example Movie
```
https://your-domain/embedsu/916224
```## Example Show
```
https://your-domain/embedsu/1429?s=1&e=1
```## Deployment
You can self host by doing the following :
1. `git clone https://github.com/Inside4ndroid/vidsrc-api-js.git`
2. `cd vidsrc-api-js`
3. `npm install`
4. `npm run main`"This no longer works on vercel due to the source blocking vercel requests but will work on your own server self hosted."