From 287057050526e1f474c4f4d5d9a7ef3b7c677f2f Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 16 May 2023 09:12:50 +0200 Subject: Provide public RTMP URL to runners --- .../lib/live/shared/transcoding-wrapper/ffmpeg-transcoding-wrapper.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server/lib/live/shared/transcoding-wrapper/ffmpeg-transcoding-wrapper.ts') diff --git a/server/lib/live/shared/transcoding-wrapper/ffmpeg-transcoding-wrapper.ts b/server/lib/live/shared/transcoding-wrapper/ffmpeg-transcoding-wrapper.ts index 1f4c12bd4..c82970b88 100644 --- a/server/lib/live/shared/transcoding-wrapper/ffmpeg-transcoding-wrapper.ts +++ b/server/lib/live/shared/transcoding-wrapper/ffmpeg-transcoding-wrapper.ts @@ -15,7 +15,7 @@ export class FFmpegTranscodingWrapper extends AbstractTranscodingWrapper { async run () { this.ffmpegCommand = CONFIG.LIVE.TRANSCODING.ENABLED ? await this.buildFFmpegLive().getLiveTranscodingCommand({ - inputUrl: this.inputUrl, + inputUrl: this.inputLocalUrl, outPath: this.outDirectory, masterPlaylistName: this.streamingPlaylist.playlistFilename, @@ -31,7 +31,7 @@ export class FFmpegTranscodingWrapper extends AbstractTranscodingWrapper { hasAudio: this.hasAudio }) : this.buildFFmpegLive().getLiveMuxingCommand({ - inputUrl: this.inputUrl, + inputUrl: this.inputLocalUrl, outPath: this.outDirectory, masterPlaylistName: this.streamingPlaylist.playlistFilename, -- cgit v1.2.3