Giter Club home page Giter Club logo

hls-googledrive's Introduction

Live Streaming Service

  • The goal of this project is to utilize the underlying infrastructure of Google Drive to host our own live streaming service.
  • Why Google Drive?
    • With the right recipe, we can literally scale to unlimited storage
    • Google's underlying CDN is kinda OP already. Streaming performance should be decent.

TODOS:

  • Upload -> Process:
    • Allow user to upload raw video to our service. The video will then be broken down into chunks, and distributed across multiple google drive accounts
  • Streaming:
    • Dynamically generate m3u8 file for processed videos
    • Ensure that the link to the chunk is alive. Two possible solutions are: Passive Health Monitoring (Heartbeat), or just lazily checks on demand. The most optimal approach still needs to be verified. Ideally, lazy checks should yield the best consistency, however, the latency might be too much for live streaming.
  • Possible LIVE STREAMING feature ( Like Twitch Live, Facebook Live, Youtube Live)

Notes:

  • https://github.com/googleapis/google-api-nodejs-client (Nodejs package)
  • https://cloud.google.com/iam/docs/service-accounts:
    • Each google account can create ~100 service accounts. Each service account is basically a google account.
      • Pros:
        • No manual login required, private secret is generated once and can be used forever
        • 15gb of free storage per service account ( 15 * 100 = 1.5TB / google account )
      • Cons:
        • No offical support to access the account through google drive UI (not really a con but something to keep in mind)
        • Reliability ???
  • ffmpeg -i test_upload.mp4 -acodec copy -vcodec copy -f hls -hls_time 20 -hls_list_size 0 output.m3u8
  • http://127.0.0.1:3000/watch?uploadId=5e6f50257714840985965d52 -- video player
  • http://127.0.0.1:3000/uploadInfo/5e6f50257714840985965d52 -- UploadInfo Page

Upload/File management

architecture

hls-googledrive's People

Contributors

vudung45 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.