diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-10-09 11:06:13 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-10-09 11:17:36 +0200 |
commit | 14d3270f363245d2c83fcc2ac109e39743b5627e (patch) | |
tree | 22a1d40675d372d53c35a4d7adf1fc1b4ceb1799 /config/production.yaml.example | |
parent | aa8b6df4a51c82eb91e6fd71a090b2128098af6b (diff) | |
download | PeerTube-14d3270f363245d2c83fcc2ac109e39743b5627e.tar.gz PeerTube-14d3270f363245d2c83fcc2ac109e39743b5627e.tar.zst PeerTube-14d3270f363245d2c83fcc2ac109e39743b5627e.zip |
Change how we handle resolution
It was an enum before, now we just use video height
Diffstat (limited to 'config/production.yaml.example')
-rw-r--r-- | config/production.yaml.example | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/production.yaml.example b/config/production.yaml.example index 987da12cc..f99c8927e 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example | |||
@@ -46,3 +46,9 @@ user: | |||
46 | transcoding: | 46 | transcoding: |
47 | enabled: false | 47 | enabled: false |
48 | threads: 2 | 48 | threads: 2 |
49 | resolutions: # Only created if the original video has a higher resolution | ||
50 | 240p: true | ||
51 | 360p: true | ||
52 | 480p: true | ||
53 | 720p: true | ||
54 | 1080p: true | ||