Skip to content

cmoore1776/h265ize

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

h265ize

Docker image for h265ize

With the container running, move videos to your input directory and h265ize will automatically convert them to h.265 as per your settings.

You can add any of the options mentioned on the official h265ize GitHub page after the image name.

standalone example

docker run --rm -it -u $(id -u) -v $(pwd)/input:/input -v $(pwd)/output:/output shamelesscookie/h265ize -q 19 -m medium

docker-compose example

version: '2'
services:
  rtmp:
    container_name: h265ize
    image: shamelesscookie/h265ize
    restart: always
    volumes:
      - /home/me/h265ize/input:/input
      - /home/me/h265ize/output:/output
    command: -q 19 -m medium

Releases

No releases published

Packages

No packages published