Allow to setup transcoding in the docker image
This commit is contained in:
parent
af5262f113
commit
a4ac1c999e
|
@ -53,6 +53,26 @@ transcoding:
|
||||||
enabled:
|
enabled:
|
||||||
__name: "PEERTUBE_TRANSCODING_ENABLED"
|
__name: "PEERTUBE_TRANSCODING_ENABLED"
|
||||||
__format: "json"
|
__format: "json"
|
||||||
|
threads:
|
||||||
|
__name: "PEERTUBE_TRANSCODING_THREADS"
|
||||||
|
__format: "json"
|
||||||
|
resolutions:
|
||||||
|
240p:
|
||||||
|
__name: "PEERTUBE_TRANSCODING_240P"
|
||||||
|
__format: "json"
|
||||||
|
360p:
|
||||||
|
__name: "PEERTUBE_TRANSCODING_360P"
|
||||||
|
__format: "json"
|
||||||
|
480p:
|
||||||
|
__name: "PEERTUBE_TRANSCODING_480P"
|
||||||
|
__format: "json"
|
||||||
|
720p:
|
||||||
|
__name: "PEERTUBE_TRANSCODING_720P"
|
||||||
|
__format: "json"
|
||||||
|
1080:
|
||||||
|
__name: "PEERTUBE_TRANSCODING_1080P"
|
||||||
|
__format: "json"
|
||||||
|
|
||||||
|
|
||||||
instance:
|
instance:
|
||||||
name: "PEERTUBE_INSTANCE_NAME"
|
name: "PEERTUBE_INSTANCE_NAME"
|
||||||
|
|
|
@ -45,3 +45,9 @@ log:
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
email: null
|
email: null
|
||||||
|
|
||||||
|
transcoding:
|
||||||
|
resolutions:
|
||||||
|
360: true
|
||||||
|
720: true
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue