From 092092969633bbcf6d4891a083ea497a7d5c3154 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 29 Jan 2019 08:37:25 +0100 Subject: Add hls support on server --- config/production.yaml.example | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'config/production.yaml.example') diff --git a/config/production.yaml.example b/config/production.yaml.example index 661eac0d5..98734bab6 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example @@ -49,6 +49,7 @@ storage: tmp: '/var/www/peertube/storage/tmp/' # Used to download data (imports etc), store uploaded files before processing... avatars: '/var/www/peertube/storage/avatars/' videos: '/var/www/peertube/storage/videos/' + playlists: '/var/www/peertube/storage/playlists/' redundancy: '/var/www/peertube/storage/videos/' logs: '/var/www/peertube/storage/logs/' previews: '/var/www/peertube/storage/previews/' @@ -151,6 +152,14 @@ transcoding: 480p: false 720p: false 1080p: false + # /!\ EXPERIMENTAL /!\ + # Generate HLS playlist/segments. Better playback than with WebTorrent: + # * Resolution change is smoother + # * Faster playback in particular with long videos + # * More stable playback (less bugs/infinite loading) + # /!\ Multiply videos storage by two /!\ + hls: + enabled: false import: # Add ability for your users to import remote videos (from YouTube, torrent...) -- cgit v1.2.3 From 9b712a2017e4ab3cf12cd6bd58278905520159d0 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 11 Feb 2019 11:46:08 +0100 Subject: Add ffmpeg version in config for hls transcoding --- config/production.yaml.example | 1 + 1 file changed, 1 insertion(+) (limited to 'config/production.yaml.example') diff --git a/config/production.yaml.example b/config/production.yaml.example index 98734bab6..c54e1a516 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example @@ -153,6 +153,7 @@ transcoding: 720p: false 1080p: false # /!\ EXPERIMENTAL /!\ + # /!\ Requires ffmpeg >= 3.4 # Generate HLS playlist/segments. Better playback than with WebTorrent: # * Resolution change is smoother # * Faster playback in particular with long videos -- cgit v1.2.3