Tag docker handbrake

Encode videos with Docker & Handbrake

Looking for a cheap solution to encode videos I created a docker container and an encoding script to automate this. Dockerfile: FROM ubuntu RUN /bin/bash -c ‘apt update && apt -y install handbrake-cli cpulimit psmisc’ COPY . / RUN /bin/bash…