mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Add hls support on server
This commit is contained in:
@@ -48,6 +48,7 @@ storage:
|
||||
tmp: 'storage/tmp/' # Used to download data (imports etc), store uploaded files before processing...
|
||||
avatars: 'storage/avatars/'
|
||||
videos: 'storage/videos/'
|
||||
playlists: 'storage/playlists/'
|
||||
redundancy: 'storage/redundancy/'
|
||||
logs: 'storage/logs/'
|
||||
previews: 'storage/previews/'
|
||||
@@ -138,6 +139,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...)
|
||||
|
||||
@@ -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...)
|
||||
|
||||
@@ -13,6 +13,7 @@ storage:
|
||||
tmp: 'test1/tmp/'
|
||||
avatars: 'test1/avatars/'
|
||||
videos: 'test1/videos/'
|
||||
playlists: 'test1/playlists/'
|
||||
redundancy: 'test1/redundancy/'
|
||||
logs: 'test1/logs/'
|
||||
previews: 'test1/previews/'
|
||||
|
||||
@@ -13,6 +13,7 @@ storage:
|
||||
tmp: 'test2/tmp/'
|
||||
avatars: 'test2/avatars/'
|
||||
videos: 'test2/videos/'
|
||||
playlists: 'test2/playlists/'
|
||||
redundancy: 'test2/redundancy/'
|
||||
logs: 'test2/logs/'
|
||||
previews: 'test2/previews/'
|
||||
|
||||
@@ -13,6 +13,7 @@ storage:
|
||||
tmp: 'test3/tmp/'
|
||||
avatars: 'test3/avatars/'
|
||||
videos: 'test3/videos/'
|
||||
playlists: 'test3/playlists/'
|
||||
redundancy: 'test3/redundancy/'
|
||||
logs: 'test3/logs/'
|
||||
previews: 'test3/previews/'
|
||||
|
||||
@@ -13,6 +13,7 @@ storage:
|
||||
tmp: 'test4/tmp/'
|
||||
avatars: 'test4/avatars/'
|
||||
videos: 'test4/videos/'
|
||||
playlists: 'test4/playlists/'
|
||||
redundancy: 'test4/redundancy/'
|
||||
logs: 'test4/logs/'
|
||||
previews: 'test4/previews/'
|
||||
|
||||
@@ -13,6 +13,7 @@ storage:
|
||||
tmp: 'test5/tmp/'
|
||||
avatars: 'test5/avatars/'
|
||||
videos: 'test5/videos/'
|
||||
playlists: 'test5/playlists/'
|
||||
redundancy: 'test5/redundancy/'
|
||||
logs: 'test5/logs/'
|
||||
previews: 'test5/previews/'
|
||||
|
||||
@@ -13,6 +13,7 @@ storage:
|
||||
tmp: 'test6/tmp/'
|
||||
avatars: 'test6/avatars/'
|
||||
videos: 'test6/videos/'
|
||||
playlists: 'test6/playlists/'
|
||||
redundancy: 'test6/redundancy/'
|
||||
logs: 'test6/logs/'
|
||||
previews: 'test6/previews/'
|
||||
|
||||
@@ -62,6 +62,8 @@ transcoding:
|
||||
480p: true
|
||||
720p: true
|
||||
1080p: true
|
||||
hls:
|
||||
enabled: true
|
||||
|
||||
import:
|
||||
videos:
|
||||
|
||||
Reference in New Issue
Block a user