10 lines
372 B
C#
10 lines
372 B
C#
namespace ErsatzTV.Core.FFmpeg;
|
|
|
|
public record ConcatPlaylist(string Scheme, string Host, string ChannelNumber)
|
|
{
|
|
public override string ToString() =>
|
|
$@"ffconcat version 1.0
|
|
file http://localhost:{Settings.ListenPort}/ffmpeg/stream/{ChannelNumber}?mode=ts-legacy
|
|
file http://localhost:{Settings.ListenPort}/ffmpeg/stream/{ChannelNumber}?mode=ts-legacy";
|
|
}
|