Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 878 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 878 Bytes

StreamPlus - Adaptive HTTP Streaming

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.

Setup Locally 👩‍🔧

  1. Git clone the project repository on your local system
git clone https://github.com/deepeshdm/StreamPlus.git
  1. Install dependencies in package.json
cd StreamPlus
npm install
  1. 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'
};