]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Change transcoding default conf options
authorChocobozzz <me@florianbigard.com>
Mon, 26 Feb 2018 09:00:44 +0000 (10:00 +0100)
committerChocobozzz <me@florianbigard.com>
Mon, 26 Feb 2018 09:49:27 +0000 (10:49 +0100)
config/default.yaml
config/production.yaml.example
config/test.yaml

index 0d0e788dd8e043416948e3f0ac99d97b045a8716..3243d016d6e9a61158cd122dcd2f52c543083a08 100644 (file)
@@ -61,14 +61,14 @@ user:
 # In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions.
 # Uses a lot of CPU and increases storage!
 transcoding:
-  enabled: false
+  enabled: true
   threads: 2
   resolutions: # Only created if the original video has a higher resolution
-    240p: true
-    360p: true
-    480p: true
-    720p: true
-    1080p: true
+    240p: false
+    360p: false
+    480p: false
+    720p: false
+    1080p: false
 
 instance:
   name: 'PeerTube'
index 0b15c7b960787b4244ab5292eb28a1ba0410f45a..b43d778e1bb6d14b2ff4a0625e8013207df1093c 100644 (file)
@@ -61,14 +61,14 @@ user:
 # If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
 # Uses a lot of CPU!
 transcoding:
-  enabled: false
+  enabled: true
   threads: 2
   resolutions: # Only created if the original video has a higher resolution
-    240p: true
-    360p: true
-    480p: true
-    720p: true
-    1080p: true
+    240p: false
+    360p: false
+    480p: false
+    720p: false
+    1080p: false
 
 instance:
   name: 'PeerTube'
index efca85aff40a788ddded4c6e2e6506741ccd34bb..b830a42e7d7aa0ba8480906bada7a0202ac2052b 100644 (file)
@@ -25,3 +25,9 @@ signup:
 transcoding:
   enabled: true
   threads: 2
+  resolutions:
+    240p: true
+    360p: true
+    480p: true
+    720p: true
+    1080p: true