8000 GitHub - richul/clustercode: Distribute your video encoding tasks across a cluster of nodes!
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

richul/clustercode

 
 

Repository files navigation

clustercode

Automatically convert your movies and TV shows from one file format to another using ffmpeg in a cluster.

clustercode_webadmin

Features

  • Scans and encodes video files from a directory and encodes them using customizable profiles.
  • Encoded files are stored in an output directory.
  • Take advantage of having multiple computers: Each node encodes a video, enabling parallelization.
  • Works as a single node too.
  • No designated master. All nodes share the same state.
  • Supports arbiter nodes for providing a quorum. Quorums are needed to prevent a split-brain. Useful if you have a spare Raspberry Pi or NAS that is just poor at encoding.
  • Several and different cleanup strategies.
  • Supports Handbrake and ffmpeg
  • Basic REST API

Installation

  • The recommended platform is Docker.
  • Windows (download zip from releases tab).
  • Build it using Gradle if you prefer it another way.

I hate long docker run commands with tons of arguments, so here is a docker-compose template:

Docker Compose, non-swarm mode

version: "2.2"
services:
  clustercode:
    restart: always
    image: braindoctor/clustercode:latest
    container_name: clustercode
    cpu_shares: 512
    ports:
      - "7600:7600/tcp"
      - "8080"
    volumes:
      - "/path/to/input:/input"
      - "/path/to/output:/output"
      - "/path/to/profiles:/profiles"
# If you need modifications to the xml files, persist them:
#      - "/path/to/config:/usr/src/clustercode/config"
    environment:
    # overwrite any settings from the default using env vars!
      - CC_CLUSTER_JGROUPS_TCP_INITIAL_HOSTS=your.other.docker.node[7600],another.one[7600]
      - CC_CLUSTER_JGROUPS_EXT_ADDR=192.168.1.100

The external IP address is needed so that other nodes will be available to contact the local node. Use the physical address of the docker host.

Configuration

When you first start the container using docker compose, it will create a default configuration file in /usr/src/clustercode/config (in the container). You can view the settings in the clustercode.properties file and deviate from the default behaviour of the software. However, you should modify the settings via Environment variables (same key/values syntax). Environment variables always take precedence over the ones in clustercode.properties. If you made changes to the XML files, you need to mount a path from outside in order to have them persistent.

Project status

Development has slowly resumed in June 2018. Version 1.4.0 will probably not contain new features, but will be an internal refactoring that is long overdue. I intend to modularize the design using Gradle subprojects. Maybe even switch to Java 9, but definitely separate the Docker images into multi-stage base and gui images.

Future Plans

Head over here: https://github.com/ccremer/clustercode/projects

Docker Tags

  • experimental: latest automated build of the master branch
  • latest: stable build of a tagged commit from a release
  • tagged: tags following the 1.x.x pattern are specific releases

SSL

The REST API and WebAdmin are easy to support with SSL/https. Just put a reverse proxy in front of clustercode that handles https client connections and forwards the request via http to clustercode. Check out https://github.com/jwilder/nginx-proxy for an excellent docker nginx proxy with SSL support.

The cluster communication is more difficult to set up with encryption. Even though the traffic is binary and hard enough to intercept, it is not encrypted by default. You need to change the JGroups configuration. Instructions can be found in the manual.

Generally this image and software is built with flexibility and simplicity in mind, not security. Use it at your own risk.

About

Distribute your video encoding tasks across a cluster of nodes!

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 85.0%
  • JavaScript 8.3%
  • Vue 3.7%
  • HTML 1.6%
  • Dockerfile 0.9%
  • Batchfile 0.2%
  • Other 0.3%
0