diff options
Diffstat (limited to 'config/default.yaml')
-rw-r--r-- | config/default.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/default.yaml b/config/default.yaml index e54c93ac5..6f78fb7e9 100644 --- a/config/default.yaml +++ b/config/default.yaml | |||
@@ -201,7 +201,7 @@ object_storage: | |||
201 | # Useful when you want to use a CDN/external proxy | 201 | # Useful when you want to use a CDN/external proxy |
202 | base_url: '' # Example: 'https://mirror.example.com' | 202 | base_url: '' # Example: 'https://mirror.example.com' |
203 | 203 | ||
204 | # Same settings but for webtorrent videos | 204 | # Same settings but for web videos |
205 | videos: | 205 | videos: |
206 | bucket_name: 'videos' | 206 | bucket_name: 'videos' |
207 | prefix: '' | 207 | prefix: '' |
@@ -480,18 +480,18 @@ transcoding: | |||
480 | # Transcode and keep original resolution, even if it's above your maximum enabled resolution | 480 | # Transcode and keep original resolution, even if it's above your maximum enabled resolution |
481 | always_transcode_original_resolution: true | 481 | always_transcode_original_resolution: true |
482 | 482 | ||
483 | # Generate videos in a WebTorrent format (what we do since the first PeerTube release) | 483 | # Generate videos in a web compatible format |
484 | # If you also enabled the hls format, it will multiply videos storage by 2 | 484 | # If you also enabled the hls format, it will multiply videos storage by 2 |
485 | # If disabled, breaks federation with PeerTube instances < 2.1 | 485 | # If disabled, breaks federation with PeerTube instances < 2.1 |
486 | webtorrent: | 486 | webtorrent: |
487 | enabled: false | 487 | enabled: false |
488 | 488 | ||
489 | # /!\ Requires ffmpeg >= 4.1 | 489 | # /!\ Requires ffmpeg >= 4.1 |
490 | # Generate HLS playlists and fragmented MP4 files. Better playback than with WebTorrent: | 490 | # Generate HLS playlists and fragmented MP4 files. Better playback than with Web Videos: |
491 | # * Resolution change is smoother | 491 | # * Resolution change is smoother |
492 | # * Faster playback in particular with long videos | 492 | # * Faster playback in particular with long videos |
493 | # * More stable playback (less bugs/infinite loading) | 493 | # * More stable playback (less bugs/infinite loading) |
494 | # If you also enabled the webtorrent format, it will multiply videos storage by 2 | 494 | # If you also enabled the web videos format, it will multiply videos storage by 2 |
495 | hls: | 495 | hls: |
496 | enabled: true | 496 | enabled: true |
497 | 497 | ||