1
0
Fork 0

Add more hints regarding live port

This commit is contained in:
Chocobozzz 2021-01-11 09:20:44 +01:00
parent 7e4e8119e1
commit 4f20856ed4
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
7 changed files with 20 additions and 2 deletions

View File

@ -889,8 +889,9 @@
<ng-container i18n>Allow live streaming</ng-container>
</ng-template>
<ng-container ngProjectAs="description" i18n>
⚠️ Enabling live streaming requires trust in your users and extra moderation work
<ng-container ngProjectAs="description">
<div i18n>⚠️ Enabling live streaming requires trust in your users and extra moderation work</div>
<div i18n>If enabled, your server needs to accept incoming TCP traffic on port {{ liveRTMPPort }}</div>
</ng-container>
<ng-container ngProjectAs="extra">

View File

@ -119,6 +119,10 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit, A
.map(t => t.name)
}
get liveRTMPPort () {
return this.serverConfig.live.rtmp.port
}
getTotalTranscodingThreads () {
const transcodingEnabled = this.form.value['transcoding']['enabled']
const transcodingThreads = this.form.value['transcoding']['threads']

View File

@ -83,6 +83,9 @@ export class ServerService {
transcoding: {
enabled: false,
enabledResolutions: []
},
rtmp: {
port: 1935
}
},
avatar: {

View File

@ -264,6 +264,7 @@ live:
# /!\ transcoding.enabled (and not live.transcoding.enabled) has to be true to create a replay
allow_replay: false
# Your firewall should accept traffic from this port in TCP if you enable live
rtmp:
port: 1935

View File

@ -278,6 +278,7 @@ live:
# /!\ transcoding.enabled (and not live.transcoding.enabled) has to be true to create a replay
allow_replay: true
# Your firewall should accept traffic from this port in TCP if you enable live
rtmp:
port: 1935

View File

@ -126,6 +126,10 @@ async function getConfig (req: express.Request, res: express.Response) {
transcoding: {
enabled: CONFIG.LIVE.TRANSCODING.ENABLED,
enabledResolutions: getEnabledResolutions('live')
},
rtmp: {
port: CONFIG.LIVE.RTMP.PORT
}
},
import: {

View File

@ -111,6 +111,10 @@ export interface ServerConfig {
enabledResolutions: number[]
}
rtmp: {
port: number
}
}
import: {