Add warning regarding transcoding

pull/636/head
Chocobozzz 2018-06-07 16:44:22 +02:00
parent fbd2ad19b6
commit 09f35e2a6f
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 7 additions and 4 deletions

View File

@ -176,6 +176,8 @@ Check this checkbox, save the configuration and test with a video URL of your in
<label for="transcodingEnabled"></label>
<label i18n for="transcodingEnabled">Transcoding enabled</label>
<my-help helpType="custom" i18n-customHtml customHtml="If you disable transcoding, many videos from your users will not work!"></my-help>
</div>
<ng-template [ngIf]="isTranscodingEnabled()">

View File

@ -74,11 +74,11 @@ user:
# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
# In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions.
# Uses a lot of CPU and increases storage!
# Please, do not disable transcoding since many uploaded videos will not work
transcoding:
enabled: true
threads: 1
resolutions: # Only created if the original video has a higher resolution
resolutions: # Only created if the original video has a higher resolution, uses more storage!
240p: false
360p: false
480p: false

View File

@ -87,11 +87,12 @@ user:
video_quota: -1
# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
# Uses a lot of CPU!
# In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions.
# Please, do not disable transcoding since many uploaded videos will not work
transcoding:
enabled: true
threads: 1
resolutions: # Only created if the original video has a higher resolution
resolutions: # Only created if the original video has a higher resolution, uses more storage!
240p: false
360p: false
480p: false