diff options
author | Chocobozzz <me@florianbigard.com> | 2021-11-25 16:24:15 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-11-25 16:24:15 +0100 |
commit | 50a66a69a0cde2cc3f9d46acf7fd03f99d275b0c (patch) | |
tree | 57d1efcfc467408d1a8f5228c69bdda5539e6045 /client/src/app | |
parent | 1255f22de407d01649f595f3a0e72865a2cccd08 (diff) | |
download | PeerTube-50a66a69a0cde2cc3f9d46acf7fd03f99d275b0c.tar.gz PeerTube-50a66a69a0cde2cc3f9d46acf7fd03f99d275b0c.tar.zst PeerTube-50a66a69a0cde2cc3f9d46acf7fd03f99d275b0c.zip |
Optimize HLS/WebTorrent videos only
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/+admin/overview/videos/video-admin.service.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/+admin/overview/videos/video-admin.service.ts b/client/src/app/+admin/overview/videos/video-admin.service.ts index 6a0e8dade..4b9357fb7 100644 --- a/client/src/app/+admin/overview/videos/video-admin.service.ts +++ b/client/src/app/+admin/overview/videos/video-admin.service.ts | |||
@@ -59,19 +59,19 @@ export class VideoAdminService { | |||
59 | title: $localize`Video files`, | 59 | title: $localize`Video files`, |
60 | children: [ | 60 | children: [ |
61 | { | 61 | { |
62 | value: 'webtorrent:true', | 62 | value: 'webtorrent:true isLocal:true', |
63 | label: $localize`With WebTorrent` | 63 | label: $localize`With WebTorrent` |
64 | }, | 64 | }, |
65 | { | 65 | { |
66 | value: 'webtorrent:false', | 66 | value: 'webtorrent:false isLocal:true', |
67 | label: $localize`Without WebTorrent` | 67 | label: $localize`Without WebTorrent` |
68 | }, | 68 | }, |
69 | { | 69 | { |
70 | value: 'hls:true', | 70 | value: 'hls:true isLocal:true', |
71 | label: $localize`With HLS` | 71 | label: $localize`With HLS` |
72 | }, | 72 | }, |
73 | { | 73 | { |
74 | value: 'hls:false', | 74 | value: 'hls:false isLocal:true', |
75 | label: $localize`Without HLS` | 75 | label: $localize`Without HLS` |
76 | } | 76 | } |
77 | ] | 77 | ] |