Skip to content

Commit 9439c21

Browse files
authored
Merge pull request #9 from linuxserver/ffmpeg
add ffmpeg and click'n'load port
2 parents cafcc7f + 58325c0 commit 9439c21

File tree

5 files changed

+10
-2
lines changed

5 files changed

+10
-2
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ RUN \
2323
echo "**** install packages ****" && \
2424
apk add --no-cache \
2525
curl \
26+
ffmpeg \
2627
libjpeg-turbo \
2728
p7zip \
2829
py3-pip \

Dockerfile.aarch64

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ RUN \
2323
echo "**** install packages ****" && \
2424
apk add --no-cache \
2525
curl \
26+
ffmpeg \
2627
libjpeg-turbo \
2728
p7zip \
2829
py3-pip \

Dockerfile.armhf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ RUN \
2323
echo "**** install packages ****" && \
2424
apk add --no-cache \
2525
curl \
26+
ffmpeg \
2627
libjpeg-turbo \
2728
p7zip \
2829
py3-pip \

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ services:
9797
- /path/to/downloads:/downloads
9898
ports:
9999
- 8000:8000
100+
- 9666:9666 #optional
100101
restart: unless-stopped
101102
```
102103
@@ -109,6 +110,7 @@ docker run -d \
109110
-e PGID=1000 \
110111
-e TZ=Europe/London \
111112
-p 8000:8000 \
113+
-p 9666:9666 `#optional` \
112114
-v /path/to/appdata/config:/config \
113115
-v /path/to/downloads:/downloads \
114116
--restart unless-stopped \
@@ -122,6 +124,7 @@ Container images are configured using parameters passed at runtime (such as thos
122124
| Parameter | Function |
123125
| :----: | --- |
124126
| `-p 8000` | Allows HTTP access to the application |
127+
| `-p 9666` | Click'n'Load port. |
125128
| `-e PUID=1000` | for UserID - see below for explanation |
126129
| `-e PGID=1000` | for GroupID - see below for explanation |
127130
| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London |
@@ -237,5 +240,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
237240

238241
## Versions
239242

243+
* **02.02.22:** - Add ffmpeg for the Youtube plugin.
240244
* **24.01.22:** - Replace unrar with p7zip.
241245
* **24.01.22:** - Initial release.

readme-vars.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ param_env_vars:
3434
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"}
3535

3636
# optional params
37-
opt_param_usage_include_ports: false
37+
opt_param_usage_include_ports: true
3838
opt_param_ports:
39-
- { external_port: "7227", internal_port: "7227", port_desc: "pyLoad control port" }
39+
- { external_port: "9666", internal_port: "9666", port_desc: "Click'n'Load port." }
4040

4141

4242
# application setup block
@@ -50,5 +50,6 @@ app_setup_block: |
5050
5151
# changelog
5252
changelogs:
53+
- { date: "02.02.22:", desc: "Add ffmpeg for the Youtube plugin." }
5354
- { date: "24.01.22:", desc: "Replace unrar with p7zip." }
5455
- { date: "24.01.22:", desc: "Initial release." }

0 commit comments

Comments
 (0)