A simple application built with Angular, Node.js, and FFmpeg for implementing HTTP Live Streaming (HLS) and Adaptive Bitrate Streaming. It allows video conversion to HLS format and seamless playback with adaptive quality switching based on network conditions.
- Git clone the project repository on your local system
git clone https://github.com/deepeshdm/StreamPlus.git
- Install dependencies in package.json
cd StreamPlus
npm install
- Also clone & setup Backend of this project - link . Once backend server is running, change "environment.ts" to point to your backend server
export const environment = {
nodeapi : 'http://localhost:3000'
};