https://github.com/jmcrafter26/sora-streamurl-extractors
https://github.com/jmcrafter26/sora-streamurl-extractors
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jmcrafter26/sora-streamurl-extractors
- Owner: JMcrafter26
- License: mit
- Created: 2025-03-24T17:39:57.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-03-24T18:04:41.000Z (2 months ago)
- Last Synced: 2025-03-24T18:43:34.928Z (2 months ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Stream URL Extractor Collection
This is a collection of tools to extract stream URLs from various streaming services. The tools are written in JavaScript and are made to use in a Sora module.
- [Stream URL Extractor Collection](#stream-url-extractor-collection)
- [Available Extractors](#available-extractors)
- [Example Usage](#example-usage)
- [License](#license)## Available Extractors
| Extractor | Author | Async |
| --- | --- | --- |
| [turbovid](./extractors/turbovid.js) | [JMcrafter26](https://github.com/JMcrafter26) | ✅ |
| [voe](./extractors/voe.js) | [Hamzo](https://github.com/hamzenis) | ✅ |
| [bigwarp](./extractors/bigwarp.js) | [JMcrafter26](https://github.com/JMcrafter26) | ✅ |
| [streamwish](./extractors/streamwish.js) | [50/50](https://github.com/50n50) | ✅ |## Example Usage
```javascript
const embedUrl = "https://somehoster.com/embed/123456";
const streamUrl = await extractStreamUrl(embedUrl);
console.log(streamUrl);
```The result will be the stream URL of the video.
You can find these extractors in action in the [Sora Modules Library](https://sora.jm26.net/library).
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.