Giter VIP home page Giter VIP logo

barc's Introduction

Batch Archive Processing

Individual stream archives require some post processing in order to be consumable to end users. Barc is a tool for doing just that -- it can consume an individual stream archive and produce a single composition container of the media from the archive. Features include:

  • Support for high-definition composed archives
  • CSS-based layout management
    • Several predefined styles available for you to choose from
    • Custom stylesheets for complete customizability
  • Simple web API and job queue for running a batch processing server

CSS layout presets

For full documentation on layout usage, see Stylesheets.

Usage: Local

See Developers

Usage: web

A demo server is available for OpenTok customers. To process an individual stream archive, send an HTTP POST to https://kennel.wobbals.com/barc/job with the parameters of your job:

var request = require('request');

var body = {
  width: 640,
  height: 480,
  archiveURL: "https://example.com/archive.zip",
  cssPreset: "auto",
  callbackURL: "https://example.com/callback",
  version: "breckenridge"
};
var myJobId;

request.post({
  url: `${barcURL}/job`,
  json: body
}, (error, response, body) => {
  if (error) {
    console.log(error);
  } else {
    myJobId = body.jobId;
  }
});

barc's People

Contributors

alexander-torosh avatar matsubo 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.