From 51b671dec74f5742ee66400c60b2b43742dd79e2 Mon Sep 17 00:00:00 2001 From: Jason Dove Date: Sun, 28 Mar 2021 06:48:10 -0500 Subject: [PATCH] load concat playlist from localhost --- ErsatzTV.Core/FFmpeg/FFmpegProcessService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ErsatzTV.Core/FFmpeg/FFmpegProcessService.cs b/ErsatzTV.Core/FFmpeg/FFmpegProcessService.cs index 0b2febdef..5fbc208b0 100644 --- a/ErsatzTV.Core/FFmpeg/FFmpegProcessService.cs +++ b/ErsatzTV.Core/FFmpeg/FFmpegProcessService.cs @@ -121,7 +121,7 @@ namespace ErsatzTV.Core.FFmpeg .WithFormatFlags(playbackSettings.FormatFlags) .WithRealtimeOutput(playbackSettings.RealtimeOutput) .WithInfiniteLoop() - .WithConcat($"{scheme}://{host}/ffmpeg/concat/{channel.Number}") + .WithConcat($"http://localhost:8409/ffmpeg/concat/{channel.Number}") .WithMetadata(channel) .WithFormat("mpegts") .WithPipe()