Skip to content

AwalHossain/video-streaming-server

Repository files navigation

🎥 MERN Video Streaming Platform 🎥 (ONGOING)

This project is a full-stack video streaming service built with the MERN stack (MongoDB, Express.js, React.js, Node.js) and TypeScript. It allows users to upload videos, which are then processed and converted into multiple bitrates for adaptive streaming. The application follows a microservices architecture and uses various technologies like RabbitMQ (message broker), Socket.IO (real-time communication), FFmpeg (video processing), and BullMQ (job queues).

Project Diagram

🌐 Overview

The video streaming service aims to provide a smooth experience for users to upload, process, and stream videos with adaptive bitrate streaming. It tackles challenges like video processing, concurrency issues, and microservices integration by using modern technologies and architectural patterns.

🌟 Features

  • Adaptive Bitrate Streaming: Videos are converted into multiple bitrates, allowing users to stream at the highest quality based on their network conditions.
  • Real-time Video Processing: Uploaded videos are processed in real-time, converting them to MP4 format and generating multiple HLS bitrate streams using FFmpeg.
  • Microservices Architecture: The application is built with a decoupled microservices architecture for scalability, maintainability, and fault tolerance.
  • Message Queue Integration: RabbitMQ is used as a message broker to enable communication between microservices, facilitating asynchronous processing and real-time progress tracking.
  • Real-time Progress Tracking: Users receive real-time notifications and progress updates throughout the video processing workflow by RabbitMQ then pass the progress and notification to the Client side using Socket.IO.
  • Cloud Storage Integration: Processed video files are stored in Azure Blob Storage for efficient serving and scalability.

🏗️ Architecture

Project Diagram

The microservices architecture consists of three main components:

🖥️ API Server

Handles authentication, API requests, and manages video and user metadata in MongoDB.

🎞️ Video Processing Service

Processes videos in real-time, converts them to adaptive bitrates using FFmpeg, and stores processed files in Azure Blob Storage.

  1. Video Conversion: Converts any format video into MP4 and applies a watermark if an image is provided.
  2. Adaptive Bitrate Processing: Transforms the video into adaptive bitrate HLS format (480p & 1080p) for optimal streaming quality.
  3. CDN Upload: Upon successful conversion, the video is uploaded to a CDN bucket storage. This allows users to stream videos seamlessly from anywhere in the world.

BullMQ manages the job queue, passing one job to the next upon completion, with job data stored in Redis. Please note that this service is not exposed to any HTTP port, ensuring a secure video processing pipeline.

📡 Api-Gateway

Acts as a gateway between the frontend and backend services, routing requests and facilitating communication through RabbitMQ.

The microservices communicate with each other using RabbitMQ as an asynchronous message broker and, in some cases, HTTP requests. The API gateway communicates with the frontend using Socket.IO for real-time updates and progress tracking.

Challenges and Solutions

  1. Message Queue Setup: Setting up the internal message queue (RabbitMQ) was challenging due to the multi-step nature of video conversion. BullMQ was implemented to facilitate communication between each step.

  2. Adaptive Bitrate Conversion: Converting MP4 videos into multiple HLS bitrates using Node.js and FFmpeg required extensive testing and experimentation.

  3. Concurrency Issues: Microservices setup and RabbitMQ integration presented concurrency problems, leading to video file mixing during simultaneous uploads. Asynchronous mutex was applied to resolve this issue.

  4. Microservices Integration: Integrating the message broker with each server and ensuring proper communication posed additional complexities.

Future Enhancements

  • Implement advanced video analytics and recommendations.
  • Enhance security features, such as video encryption and access control.
  • Improve scalability by leveraging cloud-native technologies.
  • Implement caching mechanisms for improved performance.
  • Incorporate machine learning for intelligent video transcoding and bitrate optimization.

Additional Resources

🚀 Getting Started

📝 Note

This project is still under development. The README will be updated as the project progresses.

This project is not yet opensourced yet.

Thank you for your interest and stay tuned for more updates!.