Skip to content

Commit 6717993

Browse files
docs :)
1 parent 1a03291 commit 6717993

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,36 @@
11
# Docker.HandBrakeCLI-Python3
22
HandBrakeCLI + Python3 in a Docker
3+
4+
5+
## Build
6+
```bash
7+
docker build --build-arg SETLANG=de_DE.UTF-8 -t lovebootcaptain/handbrakecli-python3:latest
8+
```
9+
## Run
10+
```bash
11+
docker run
12+
--entrypoint bash
13+
-v /Volumes/video:/root/input
14+
-v /Volumes/video/transcoded:/root/output
15+
--env LC_ALL=de_DE.UTF-8
16+
--env LANG=de_DE.UTF-8
17+
--env LANGUAGE=de_DE:de
18+
--env TZ=Europe/Berlin
19+
--name handbrakecli-python3
20+
-h docker-handbrake
21+
lovebootcaptain/handbrakecli-python3:latest
22+
```
23+
## Usage of included scripts
24+
25+
`convert`
26+
27+
- lets you convert a single file
28+
29+
`LoopConverter [file extension to convert]`
30+
31+
- uses `convert` on any file in a folder that matches the `[file extension]
32+
33+
**Example**
34+
35+
- `convert my_funny_video.mkv`
36+
- `LoopConverter mky /path/to/your/folder/`

0 commit comments

Comments
 (0)