Add warning regarding transcoding
This commit is contained in:
parent
fbd2ad19b6
commit
09f35e2a6f
|
@ -176,6 +176,8 @@ Check this checkbox, save the configuration and test with a video URL of your in
|
||||||
|
|
||||||
<label for="transcodingEnabled"></label>
|
<label for="transcodingEnabled"></label>
|
||||||
<label i18n for="transcodingEnabled">Transcoding enabled</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>
|
</div>
|
||||||
|
|
||||||
<ng-template [ngIf]="isTranscodingEnabled()">
|
<ng-template [ngIf]="isTranscodingEnabled()">
|
||||||
|
|
|
@ -74,11 +74,11 @@ user:
|
||||||
|
|
||||||
# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
|
# 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.
|
# 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:
|
transcoding:
|
||||||
enabled: true
|
enabled: true
|
||||||
threads: 1
|
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
|
240p: false
|
||||||
360p: false
|
360p: false
|
||||||
480p: false
|
480p: false
|
||||||
|
|
|
@ -87,11 +87,12 @@ user:
|
||||||
video_quota: -1
|
video_quota: -1
|
||||||
|
|
||||||
# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
|
# 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:
|
transcoding:
|
||||||
enabled: true
|
enabled: true
|
||||||
threads: 1
|
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
|
240p: false
|
||||||
360p: false
|
360p: false
|
||||||
480p: false
|
480p: false
|
||||||
|
|
Loading…
Reference in New Issue