- π¬ Stream Movies in Multiple Languages
- π Support for Multiple Video Qualities
- π― Advanced Search Functionality
- π± Responsive Design
- π Fast Loading Times
- π¨ Modern UI/UX
- π IMDB Integration
- πΊ HLS Stream Support
- Node.js 16+
- npm or yarn
- Docker (optional)
- Clone the repository
git clone https://github.com/BotCoder254/ChilingZone.git- Install dependencies
cd ChilingZone
npm install- Build and start the application
npm run build
npm run start# Build the image
docker build -t movieflix .
# Run the container
docker run -p 3000:3000 -it -d movieflixProvides information file and key for streaming.
Endpoint: /api/v1/mediaInfo?id=tt1877830
Response:
{
"success": true,
"data": {
"playlist": [
{
"title": "Hindi",
"id": "24b8c045e7fcd28fb2ee654de75a5771",
"file": "..."
},
{
"title": "English",
"id": "fd93fd0a7fc57f1e0c9c54110322a05f",
"file": "..."
}
],
"key": "..."
}
}Provides the streaming link.
Endpoint: /api/v1/getStream
Method: POST
Example:
fetch('/api/v1/getStream', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
file: '~8i-Mu-WONoEdJ9whQe+Ldow...',
key: 'rcbeUV3KoCw-dSFJ-vN$-JwI4OXlCmOaAx05HkWyclbx46SNcazmpYmnFTXoNjo'
})
})This project is licensed under the MIT License - see the LICENSE file for details.
Made with β€οΈ by BotCoder254 & SamuelDevp