aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit/shared/video-edit.component.html
blob: 1c0ec72d1d6d5688af671c82d4ff582d553bd09e (plain) (tree)
1
2
3
4
5
6
7
8
9
                                           
                                             
 



                                       
                                  
                                      

                                                  
                                                                                         





                                                              
                                                         




                                                                                  
                                                        
                                                            



                                 



                                                                                              



                                                               








                                                                                                         
                                                                                                                                          




                                                                     
                
 
                                      
                                    

                                                                                                                                  



                                                         


                                                                                                             







                                                                  



                                                     
                                                                                                                                                                   



                                 


                                                                                                         







                                                                 



                                                                                         







                                                                  


                                                                                                           









                                                                                                                    
                                                                                                                 







                                                                               

                                                                                                       
                                                                            


                                             
                                                                                                                              


                                   
                                                                                                                                                            
                                              
                                                                           





                                                                                                                                                                       
 

                
                    

                   
                                                
                                     
 
                                 



                                                                      
                                                                                 

                                                                   
                
 
                                                                             
 





                                                                                                                                
 
                                                                                      
 

                                                                                                           
 

                                                                                          
 
                                                                                                                
 

                                                                                                                  
 

                                                                                          
 
                                                                                                                
 


                                                                                                                    
                
 
                                                                           
                                
                
 
              
                    

                   
                                               




                                          


                                                                       

                                    
                                                                      
                                                                                                                                                                                             


                                    
                                                                          
                                                                                                                                                              

                                                                                                            
                  
 
                                    











                                                                                                                              
 



                                                                                                                                                              

                  










                                                                                                                                 






                    

                                              
 
                                 

                                           
 
                                    



                                                                                                       
                                                          
                                   
                  
 

                                                       






                                                                                                
                                   
                                                                              




                                                                    
                  
                
 


                                                                                       






                                                                                                                 
                         

                                                                                                                                         











                                                                               
 




                                                                           
              
                    
                   
 






                                                               
                                                                                                                             






                                                                                                                                                            
        
 
                                  
      

                           
                                                                                                                                        
                              
<div class="video-edit" [formGroup]="form">
  <div ngbNav #nav="ngbNav" class="nav-tabs">

    <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>
                </ng-template>
              </my-help>

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

              <div *ngIf="formErrors.description" class="form-error">
                {{ formErrors.description }}
              </div>
            </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="waitTranscodingEnabled" 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>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</ng-container>
              </ng-template>
            </my-peertube-checkbox>

          </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	&#10004;</div>

                <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 === '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 alert-info">
              <my-live-documentation-link></my-live-documentation-link>
            </div>

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

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

              <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't stream multiple times in a normal live, but you can save a replay of it that will use the same URL
                </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. The URL for your viewers won't change but you cannot save replays of your lives
                </span>
              </div>
            </div>

            <div class="form-group" *ngIf="isSaveReplayEnabled()">
              <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>
        </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 preview</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"
                [classes]="{ 'input-error': formErrors['support'] }"
              ></my-markdown-textarea>
              <div *ngIf="formErrors.support" class="form-error">
                {{ formErrors.support }}
              </div>
            </div>
          </div>

          <div class="col-md-12 col-xl-4">
            <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="pluginFields.length !== 0">
      <a ngbNavLink i18n>Plugin settings</a>

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

          <div class="col-md-12 col-xl-8">
            <div *ngFor="let pluginSetting of pluginFields" class="form-group" [hidden]="isPluginFieldHidden(pluginSetting)">
              <my-dynamic-form-field [form]="pluginDataFormGroup" [formErrors]="formErrors" [setting]="pluginSetting.commonOptions"></my-dynamic-form-field>
            </div>
          </div>

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

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

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