aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit/shared/video-edit.component.html
blob: b0da8497941e3dc4d23068a43282baafc75d1f2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
<div class="video-edit" [formGroup]="form">
  <div ngbNav #nav="ngbNav" class="nav-tabs">

    <ng-template #pluginSettingTemplate let-pluginSetting>
      <div class="form-group" [hidden]="isPluginFieldHidden(pluginSetting)">
        <my-dynamic-form-field [form]="pluginDataFormGroup" [formErrors]="formErrors['pluginData']" [setting]="pluginSetting.commonOptions"></my-dynamic-form-field>
      </div>
    </ng-template>

    <ng-container ngbNavItem>
      <a ngbNavLink i18n>Basic info</a>

      <ng-template ngbNavContent>
        <div class="form-columns">
          <div class="col-video-edit">
            <div class="form-group">
              <label i18n for="name">Title</label>
              <input type="text" id="name" class="form-control" formControlName="name" />
              <div *ngIf="formErrors.name" class="form-error">
                {{ formErrors.name }}
              </div>
            </div>

            <div class="form-group">
              <label i18n class="label-tags">Tags</label>

              <my-help>
                <ng-template ptTemplate="customHtml">
                  <ng-container i18n>
                    Tags could be used to suggest relevant recommendations. <br />
                    There is a maximum of 5 tags. <br />
                    Press <kbd>Enter</kbd> to add a new tag.
                  </ng-container>
                </ng-template>
              </my-help>

              <my-select-tags labelForId="label-tags" formControlName="tags"></my-select-tags>
              <div *ngIf="formErrors.tags" class="form-error">
                {{ formErrors.tags }}
              </div>
            </div>

            <div class="form-group">
              <label i18n for="description">Description</label>

              <my-help helpType="markdownText">
                <ng-template ptTemplate="preHtml">
                  <ng-container i18n>Video descriptions are truncated by default and require manual action to expand them.</ng-container>

                  <br />

                  <ng-container i18n>A timestamp (<i>00:05</i> for example) is automatically converted into a link to a part of the video.</ng-container>
                </ng-template>
              </my-help>

              <my-markdown-textarea
                formControlName="description" [markdownVideo]="videoToUpdate"
                [formError]="formErrors.description" [truncate]="250"
              ></my-markdown-textarea>
            </div>
          </div>

          <div class="col-video-edit">
            <div class="form-group">
              <label i18n for="channel">Channel</label>
              <my-select-channel labelForId="channel" [items]="userVideoChannels" formControlName="channelId"></my-select-channel>
            </div>

            <div class="form-group">
              <label i18n for="category">Category</label>
              <my-select-options
                labelForId="category" [items]="videoCategories" formControlName="category" [clearable]="true"
              ></my-select-options>

              <div *ngIf="formErrors.category" class="form-error">
                {{ formErrors.category }}
              </div>
            </div>

            <div class="form-group">
              <label i18n for="licence">Licence</label>

              <my-help>
                <ng-template ptTemplate="customHtml">
                  <ng-container i18n>
                    <a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">Choose</a> the appropriate licence for your work.
                  </ng-container>
                </ng-template>
              </my-help>

              <my-select-options
                labelForId="licence" [items]="videoLicences" formControlName="licence" [clearable]="true"
              ></my-select-options>

              <div *ngIf="formErrors.licence" class="form-error">
                {{ formErrors.licence }}
              </div>
            </div>

            <div class="form-group">
              <label i18n for="language">Language</label>
              <my-select-options
                labelForId="language" [items]="videoLanguages" formControlName="language"
                [clearable]="true" [searchable]="true" [groupBy]="'group'"
              ></my-select-options>

              <div *ngIf="formErrors.language" class="form-error">
                {{ formErrors.language }}
              </div>
            </div>

            <div class="form-group">
              <label i18n for="privacy">Privacy</label>
              <my-select-options
                labelForId="privacy" [items]="videoPrivacies" formControlName="privacy" [clearable]="false"
              ></my-select-options>

              <div *ngIf="formErrors.privacy" class="form-error">
                {{ formErrors.privacy }}
              </div>
            </div>

            <div *ngIf="schedulePublicationEnabled" class="form-group">
              <label i18n for="schedulePublicationAt">Schedule publication ({{ calendarTimezone }})</label>
              <p-calendar
                id="schedulePublicationAt" formControlName="schedulePublicationAt" [dateFormat]="calendarDateFormat"
                [firstDayOfWeek]="0" [minDate]="minScheduledDate" [showTime]="true" [hideOnDateTimeSelect]="true"
              >
              </p-calendar>

              <div *ngIf="formErrors.schedulePublicationAt" class="form-error">
                {{ formErrors.schedulePublicationAt }}
              </div>
            </div>

            <my-peertube-checkbox inputName="nsfw" formControlName="nsfw" helpPlacement="bottom-right">
              <ng-template ptTemplate="label">
                <ng-container i18n>Contains sensitive content</ng-container>
              </ng-template>

              <ng-template ptTemplate="help">
                <ng-container i18n>Some instances hide videos containing mature or explicit content by default.</ng-container>
              </ng-template>
            </my-peertube-checkbox>

            <my-peertube-checkbox *ngIf="!hideWaitTranscoding" inputName="waitTranscoding" formControlName="waitTranscoding" helpPlacement="bottom-right">
              <ng-template ptTemplate="label">
                <ng-container i18n>Publish after transcoding</ng-container>
              </ng-template>

              <ng-template ptTemplate="help">
                <ng-container i18n>The video may be unplayable during the transcoding process. It's the reason why we prefer to publish publicly the video after transcoding.</ng-container>
              </ng-template>
            </my-peertube-checkbox>

            <ng-container
              *ngFor="let pluginSetting of getPluginsFields('main')"
              [ngTemplateOutlet]="pluginSettingTemplate" [ngTemplateOutletContext]="{ $implicit: pluginSetting }"
            >
            </ng-container>
          </div>
        </div>
      </ng-template>
    </ng-container>

    <ng-container ngbNavItem *ngIf="!liveVideo">
      <a ngbNavLink i18n>Captions</a>

      <ng-template ngbNavContent>
        <div class="captions">

          <div class="captions-header">
            <a (click)="openAddCaptionModal()" class="create-caption">
              <my-global-icon iconName="add" aria-hidden="true"></my-global-icon>
              <ng-container i18n>Add another caption</ng-container>
            </a>
          </div>

          <div class="form-group" *ngFor="let videoCaption of videoCaptions">

            <div class="caption-entry">
              <ng-container *ngIf="!videoCaption.action">
                <a
                  i18n-title title="See the subtitle file" class="caption-entry-label" target="_blank" rel="noopener noreferrer"
                  [href]="videoCaption.captionPath"
                >{{ videoCaption.language.label }}</a>

                <div i18n class="caption-entry-state">Already uploaded on {{ videoCaption.updatedAt | date }}	&#10004;</div>

                <span i18n class="caption-entry-edit" (click)="openEditCaptionModal(videoCaption)">Edit</span>
                <span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Delete</span>
              </ng-container>

              <ng-container *ngIf="videoCaption.action === 'CREATE'">
                <span class="caption-entry-label">{{ videoCaption.language.label }}</span>

                <div i18n class="caption-entry-state caption-entry-state-create">Will be created on update</div>

                <span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Cancel create</span>
              </ng-container>

              <ng-container *ngIf="videoCaption.action === 'UPDATE'">
                <span class="caption-entry-label">{{ videoCaption.language.label }}</span>

                <div i18n class="caption-entry-state caption-entry-state-create">Will be edited on update</div>

                <span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Cancel edition</span>
              </ng-container>

              <ng-container *ngIf="videoCaption.action === 'REMOVE'">
                <span class="caption-entry-label">{{ videoCaption.language.label }}</span>

                <div i18n class="caption-entry-state caption-entry-state-delete">Will be deleted on update</div>

                <span i18n class="caption-entry-delete" (click)="deleteCaption(videoCaption)">Cancel deletion</span>
              </ng-container>
            </div>
          </div>

          <div i18n class="no-caption" *ngIf="videoCaptions?.length === 0">
            No captions for now.
          </div>

        </div>
      </ng-template>
    </ng-container>

    <ng-container ngbNavItem *ngIf="liveVideo">
      <a ngbNavLink i18n>Live settings</a>

      <ng-template ngbNavContent>
        <div class="row live-settings">
          <div class="col-md-12">
            <div class="alert pt-alert-primary">
              <my-live-documentation-link></my-live-documentation-link>
            </div>

            <div *ngIf="liveVideo.rtmpUrl" class="form-group">
              <label for="liveVideoRTMPUrl" i18n>Live RTMP Url</label>
              <my-input-text inputId="liveVideoRTMPUrl" [value]="liveVideo.rtmpUrl" [withToggle]="false" [withCopy]="true" [show]="true" [readonly]="true"></my-input-text>
            </div>

            <div *ngIf="liveVideo.rtmpsUrl" class="form-group">
              <label for="liveVideoRTMPSUrl" i18n>Live RTMPS Url</label>
              <my-input-text inputId="liveVideoRTMPSUrl" [value]="liveVideo.rtmpsUrl" [withToggle]="false" [withCopy]="true" [show]="true" [readonly]="true"></my-input-text>
            </div>

            <div class="form-group">
              <label for="liveVideoStreamKey" i18n>Live stream key</label>
              <my-input-text inputId="liveVideoStreamKey" [value]="liveVideo.streamKey" [withCopy]="true" [readonly]="true"></my-input-text>

              <div class="form-group-description" i18n>⚠️ Never share your stream key with anyone.</div>
            </div>

            <div class="form-group">
              <div class="peertube-radio-container">
                <input type="radio" formControlName="permanentLive" id="permanentLiveFalse" [value]="false">
                <label i18n for="permanentLiveFalse" class="radio">This is a normal live</label>

                <span class="form-group-description" i18n>
                  You can stream only once in a normal live. If you enable replay, it will be saved under the same URL as your live
                </span>
              </div>

              <div class="peertube-radio-container">
                <input type="radio" formControlName="permanentLive" id="permanentLiveTrue" [value]="true">
                <label i18n for="permanentLiveTrue" class="radio">This is a permanent/recurring live</label>

                <span class="form-group-description" i18n>
                  You can stream multiple times in a permanent/recurring live. If you enable replays, they will be saved as separate videos
                </span>
              </div>
            </div>

            <div class="form-group" *ngIf="isSaveReplayAllowed()">
              <my-peertube-checkbox inputName="liveVideoSaveReplay" formControlName="saveReplay">
                <ng-template ptTemplate="label">
                  <ng-container i18n>Automatically publish a replay when your live ends</ng-container>
                </ng-template>

                <ng-container ngProjectAs="description">
                  <span i18n>⚠️ If you enable this option, your live will be terminated if you exceed your video quota</span>
                </ng-container>
              </my-peertube-checkbox>
            </div>

            <div class="form-group mx-4" *ngIf="isSaveReplayEnabled()">
              <label i18n for="replayPrivacy">Privacy of the new replay</label>
              <my-select-options
                labelForId="replayPrivacy" [items]="videoPrivacies" [clearable]="false" formControlName="replayPrivacy"
              ></my-select-options>
            </div>

            <div class="form-group" *ngIf="isLatencyModeEnabled()">
              <label i18n for="latencyMode">Latency mode</label>
              <my-select-options
                labelForId="latencyMode" [items]="latencyModes" formControlName="latencyMode" [clearable]="true"
              ></my-select-options>

              <div *ngIf="formErrors.latencyMode" class="form-error">
                {{ formErrors.latencyMode }}
              </div>
            </div>
          </div>
        </div>
      </ng-template>

    </ng-container>


    <ng-container ngbNavItem>
      <a ngbNavLink i18n>Advanced settings</a>

      <ng-template ngbNavContent>
        <div class="row advanced-settings">
          <div class="col-md-12 col-xl-8">

            <div class="form-group">
              <label i18n for="previewfile">Video thumbnail</label>

              <my-preview-upload
                i18n-inputLabel inputLabel="Edit" inputName="previewfile" formControlName="previewfile"
                previewWidth="360px" previewHeight="200px"
              ></my-preview-upload>
            </div>

            <div class="form-group">
              <label i18n for="support">Support</label>
              <my-help helpType="markdownEnhanced">
                <ng-template ptTemplate="preHtml">
                  <ng-container i18n>
                    Short text to tell people how they can support you (membership platform...).
                  </ng-container>
                </ng-template>
              </my-help>

              <my-markdown-textarea
                id="support" formControlName="support" markdownType="enhanced"
                [formError]="formErrors['support']"
              ></my-markdown-textarea>
            </div>
          </div>

          <div class="col-md-12 col-xl-4">

            <div *ngIf="videoSource" class="form-group">
              <label i18n for="filename">Filename</label>

              <my-help>
                <ng-template ptTemplate="preHtml">
                  <ng-container i18n>
                    Name of the uploaded file
                  </ng-container>
                </ng-template>
              </my-help>

              <input type="text" [disabled]="true" id="filename" class="form-control" [value]="videoSource.filename" />
            </div>

            <div class="form-group originally-published-at">
              <label i18n for="originallyPublishedAt">Original publication date</label>
              <my-help>
                <ng-template ptTemplate="preHtml">
                  <ng-container i18n>
                    This is the date when the content was originally published (e.g. the release date for a film)
                  </ng-container>
                </ng-template>
              </my-help>
              <p-calendar
                id="originallyPublishedAt" formControlName="originallyPublishedAt" [dateFormat]="calendarDateFormat" [firstDayOfWeek]="0"
                [showTime]="true" [hideOnDateTimeSelect]="true" [monthNavigator]="true" [yearNavigator]="true" [yearRange]="myYearRange"
              >
              </p-calendar>

              <div *ngIf="formErrors.originallyPublishedAt" class="form-error">
                {{ formErrors.originallyPublishedAt }}
              </div>
            </div>

            <my-peertube-checkbox
              inputName="commentsEnabled" formControlName="commentsEnabled"
              i18n-labelText labelText="Enable video comments"
            ></my-peertube-checkbox>

            <my-peertube-checkbox
              inputName="downloadEnabled" formControlName="downloadEnabled"
              i18n-labelText labelText="Enable download"
            ></my-peertube-checkbox>
          </div>
        </div>
      </ng-template>
    </ng-container>

    <ng-container ngbNavItem *ngIf="getPluginsFields('plugin-settings').length !== 0">
      <a ngbNavLink i18n>Plugin settings</a>

      <ng-template ngbNavContent>
        <div class="row plugin-settings">

          <div class="col-md-12 col-xl-8">
            <ng-container
              *ngFor="let pluginSetting of getPluginsFields('plugin-settings')"
              [ngTemplateOutlet]="pluginSettingTemplate" [ngTemplateOutletContext]="{ $implicit: pluginSetting }"
            >
            </ng-container>
          </div>

        </div>
      </ng-template>
    </ng-container>
  </div>

  <div [ngbNavOutlet]="nav"></div>
</div>

<my-video-caption-add-modal
  #videoCaptionAddModal [existingCaptions]="getExistingCaptions()" [serverConfig]="serverConfig" (captionAdded)="onCaptionEdited($event)"
></my-video-caption-add-modal>