]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html
Merge remote-tracking branch 'weblate/develop' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / config / edit-custom-config / edit-vod-transcoding.component.html
CommitLineData
5f46d28c
C
1<ng-container [formGroup]="form">
2
4c8749cb
C
3 <div class="row mt-4"> <!-- transcoding grid -->
4 <div class="col-12 col-lg-4 col-xl-3"></div>
5 <div class="col-12 col-lg-8">
5f46d28c 6
6f03f944 7 <div class="callout callout-orange">
5f46d28c
C
8 <span i18n>
9 Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically.
10 </span>
5b0ec7cd 11
5f46d28c 12 <span i18n>
f44cd95c 13 However, you may want to read <a class="link-orange" target="_blank" rel="noopener noreferrer" href="https://docs.joinpeertube.org/admin/configuration#vod-transcoding">our guidelines</a> before tweaking the following values.
5f46d28c 14 </span>
5f46d28c
C
15 </div>
16 </div>
17 </div>
18
4c8749cb
C
19 <div class="row mt-4"> <!-- transcoding grid -->
20 <div class="col-12 col-lg-4 col-xl-3">
5f46d28c
C
21 <div i18n class="inner-form-title">TRANSCODING</div>
22 <div i18n class="inner-form-description">
23 Process uploaded videos so that they are in a streamable form that any device can play. Though costly in
24 resources, this is a critical part of PeerTube, so tread carefully.
25 </div>
26 </div>
27
4c8749cb 28 <div class="col-12 col-lg-8 col-xl-9">
5f46d28c
C
29
30 <ng-container formGroupName="transcoding">
31
4c8749cb 32 <div class="col-12 col-xl-11">
5f46d28c
C
33 <my-peertube-checkbox inputName="transcodingEnabled" formControlName="enabled" [recommended]="true">
34 <ng-template ptTemplate="label">
35 <ng-container i18n>Transcoding enabled</ng-container>
36 </ng-template>
37
38 <ng-container ngProjectAs="extra">
39
40 <div class="callout callout-light pt-2 pb-0">
41 <label i18n>Input formats</label>
42
70e33515 43 <div class="form-group" [ngClass]="getTranscodingDisabledClass()">
5f46d28c
C
44 <my-peertube-checkbox
45 inputName="transcodingAllowAdditionalExtensions" formControlName="allowAdditionalExtensions"
46 i18n-labelText labelText="Allow additional extensions"
47 >
48 <ng-container ngProjectAs="description">
e78acf81 49 <span i18n>Allows users to upload videos with additional extensions than .mp4, .ogv and .webm (for example: .avi, .mov, .mkv etc).</span>
5f46d28c
C
50 </ng-container>
51 </my-peertube-checkbox>
52 </div>
53
70e33515 54 <div class="form-group" [ngClass]="getTranscodingDisabledClass()">
5f46d28c
C
55 <my-peertube-checkbox
56 inputName="transcodingAllowAudioFiles" formControlName="allowAudioFiles"
57 i18n-labelText labelText="Allow audio files upload"
58 >
59 <ng-container ngProjectAs="description">
60 <div i18n>Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</div>
61 <div i18n>The file will be merged in a still image video with the preview file on upload.</div>
62 </ng-container>
63 </my-peertube-checkbox>
64 </div>
65 </div>
66
67 <div class="callout callout-light pt-2 mt-2 pb-0">
68 <label i18n>Output formats</label>
69
70 <ng-container formGroupName="webtorrent">
70e33515 71 <div class="form-group" [ngClass]="getTranscodingDisabledClass()">
5f46d28c
C
72 <my-peertube-checkbox
73 inputName="transcodingWebTorrentEnabled" formControlName="enabled"
74 i18n-labelText labelText="WebTorrent enabled"
75 >
76 <ng-template ptTemplate="help">
70e33515
C
77 <ng-container>
78 <p i18n>If you also enabled HLS support, it will multiply videos storage by 2</p>
5f46d28c
C
79 </ng-container>
80 </ng-template>
81 </my-peertube-checkbox>
82 </div>
83 </ng-container>
84
85 <ng-container formGroupName="hls">
70e33515 86 <div class="form-group" [ngClass]="getTranscodingDisabledClass()">
5f46d28c
C
87 <my-peertube-checkbox
88 inputName="transcodingHlsEnabled" formControlName="enabled"
89 i18n-labelText labelText="HLS with P2P support enabled"
90 [recommended]="true"
91 >
92 <ng-template ptTemplate="help">
93 <ng-container i18n>
94 <strong>Requires ffmpeg >= 4.1</strong>
95
96 <p>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:</p>
97 <ul>
98 <li>Resolution change is smoother</li>
99 <li>Faster playback especially with long videos</li>
100 <li>More stable playback (less bugs/infinite loading)</li>
101 </ul>
102
103 <p>If you also enabled WebTorrent support, it will multiply videos storage by 2</p>
104 </ng-container>
105 </ng-template>
106 </my-peertube-checkbox>
107 </div>
108 </ng-container>
109
70e33515 110 <div class="form-group" [ngClass]="getTranscodingDisabledClass()">
7c9a2519 111 <label i18n>Resolutions to generate</label>
5f46d28c 112
5b0ec7cd 113 <div class="ms-2 d-flex flex-column">
84cae54e
C
114 <my-peertube-checkbox
115 inputName="transcodingAlwaysTranscodeOriginalResolution" formControlName="alwaysTranscodeOriginalResolution"
116 i18n-labelText labelText="Always transcode original resolution"
117 >
118 </my-peertube-checkbox>
119
120 <span class="mt-3 mb-2 small muted" i18n>
5b0ec7cd
C
121 The original file resolution will be the default target if no option is selected.
122 </span>
123
5f46d28c
C
124 <ng-container formGroupName="resolutions">
125 <div class="form-group" *ngFor="let resolution of resolutions">
126 <my-peertube-checkbox
127 [inputName]="getResolutionKey(resolution.id)" [formControlName]="resolution.id"
128 labelText="{{ resolution.label }}"
129 >
130 <ng-template *ngIf="resolution.description" ptTemplate="help">
131 <div [innerHTML]="resolution.description"></div>
132 </ng-template>
133 </my-peertube-checkbox>
134 </div>
5f46d28c
C
135 </ng-container>
136 </div>
137 </div>
138 </div>
139
140 </ng-container>
141 </my-peertube-checkbox>
142 </div>
143
70e33515 144 <div class="form-group mt-4" [ngClass]="getTranscodingDisabledClass()">
5f46d28c 145 <label i18n for="transcodingThreads">Transcoding threads</label>
5b0ec7cd
C
146
147 <span class="small muted ms-1">
70e33515
C
148 <ng-container *ngIf="getTotalTranscodingThreads().atMost" i18n>
149 will claim at most {{ getTotalTranscodingThreads().value }} {{ getTotalTranscodingThreads().unit }} with live transcoding
150 </ng-container>
151
152 <ng-container *ngIf="!getTotalTranscodingThreads().atMost" i18n>
153 will claim at least {{ getTotalTranscodingThreads().value }} {{ getTotalTranscodingThreads().unit }} with live transcoding
154 </ng-container>
5f46d28c
C
155 </span>
156
157 <my-select-custom-value
158 id="transcodingThreads"
159 [items]="transcodingThreadOptions"
160 formControlName="threads"
161 [clearable]="false"
162 ></my-select-custom-value>
163
164 <div *ngIf="formErrors.transcoding.threads" class="form-error">{{ formErrors.transcoding.threads }}</div>
165 </div>
166
4c8749cb 167 <div class="form-group" [ngClass]="getTranscodingDisabledClass()">
5f46d28c 168 <label i18n for="transcodingConcurrency">Transcoding jobs concurrency</label>
5b0ec7cd 169 <span class="small muted ms-1" i18n>allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart</span>
5f46d28c
C
170
171 <div class="number-with-unit">
172 <input type="number" name="transcodingConcurrency" formControlName="concurrency" />
173 <span i18n>jobs in parallel</span>
174 </div>
175
176 <div *ngIf="formErrors.transcoding.concurrency" class="form-error">{{ formErrors.transcoding.concurrency }}</div>
177 </div>
178
4c8749cb 179 <div class="form-group" [ngClass]="getTranscodingDisabledClass()">
5f46d28c 180 <label i18n for="transcodingProfile">Transcoding profile</label>
5b0ec7cd 181 <span class="small muted ms-1" i18n>new transcoding profiles can be added by PeerTube plugins</span>
5f46d28c
C
182
183 <my-select-options
184 id="transcodingProfile"
185 formControlName="profile"
b06f1ead 186 [items]="transcodingProfiles"
5f46d28c 187 [clearable]="false"
70e33515
C
188 ></my-select-options>
189
5f46d28c
C
190 <div *ngIf="formErrors.transcoding.profile" class="form-error">{{ formErrors.transcoding.profile }}</div>
191 </div>
192
193 </ng-container>
194
195 </div>
196 </div>
c729caf6 197
4c8749cb
C
198 <div class="row mt-2"> <!-- video studio grid -->
199 <div class="col-12 col-lg-4 col-xl-3">
92e66e04 200 <div i18n class="inner-form-title">VIDEO STUDIO</div>
c729caf6
C
201 <div i18n class="inner-form-description">
202 Allows your users to edit their video (cut, add intro/outro, add a watermark etc)
203 </div>
204 </div>
205
4c8749cb 206 <div class="col-12 col-lg-8 col-xl-9">
c729caf6 207
92e66e04 208 <ng-container formGroupName="videoStudio">
c729caf6
C
209 <div class="form-group" [ngClass]="getTranscodingDisabledClass()">
210 <my-peertube-checkbox
92e66e04
C
211 inputName="videoStudioEnabled" formControlName="enabled"
212 i18n-labelText labelText="Enable video studio"
c729caf6
C
213 >
214 <ng-container ngProjectAs="description" *ngIf="!isTranscodingEnabled()">
92e66e04 215 <span i18n>⚠️ You need to enable transcoding first to enable video studio</span>
c729caf6
C
216 </ng-container>
217 </my-peertube-checkbox>
218 </div>
219 </ng-container>
220 </div>
221 </div>
5f46d28c 222</ng-container>