Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/julianolorenzato/abs
⏩ [POC] An on-demand video streaming platform based on the HLS and MPEG-DASH protocol.
https://github.com/julianolorenzato/abs
dash ffmpeg hls project streaming video
Last synced: about 5 hours ago
JSON representation
⏩ [POC] An on-demand video streaming platform based on the HLS and MPEG-DASH protocol.
- Host: GitHub
- URL: https://github.com/julianolorenzato/abs
- Owner: julianolorenzato
- Created: 2024-03-30T15:43:45.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-07T21:36:50.000Z (7 months ago)
- Last Synced: 2024-04-08T19:06:56.597Z (7 months ago)
- Topics: dash, ffmpeg, hls, project, streaming, video
- Language: Clojure
- Homepage:
- Size: 91.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Adaptive Bitrate Streaming (Proof of Concept)This project is a proof of concept for an on-demand video streaming platform that supports adaptive bitrate streaming via the HLS (HTTP Live Streaming) protocol. It converts uploaded video files into HLS format using FFmpeg and makes them available for playback using the Video.js HTML video player.
> Note: Support to MPEG-DASH is still not available.
## Features
- On-demand video streaming.
- Adaptive bitrate streaming using HLS.## How to run
To run this project locally, follow these steps:
### Prerequisites
- Docker
- Docker Compose### Instructions
1. Clone this repository to your local machine.
```
git clone https://github.com/julianolorenzato/abs.git
```2. Navigate to the project directory and start the containers using Docker Compose
```
cd abs && docker compose up --build
```### Usage
On the homepage, use the provided form to upload new videos.
1. Select a video file.
2. Enter a title for the video.
3. Submit the form.
4. After uploading, you can watch the video in the player by appending ?v=[YOUR-VIDEO-TITLE] to the URL.Example: http://localhost:8080?v=your-video-title
The video will be played using adaptive bitrate streaming.