Files
ersatztv/ErsatzTV.Application/Streaming/Queries/GetWrappedProcessByChannelNumber.cs
T
Jason DoveandGitHub a2fc99229e add watermark opacity expression (#2266)
* add watermark opacity expression

* implement watermark opacity expression parameters

* minor fixes
2025-08-06 18:26:44 +00:00

27 lines
617 B
C#

namespace ErsatzTV.Application.Streaming;
public record GetWrappedProcessByChannelNumber : FFmpegProcessRequest
{
public GetWrappedProcessByChannelNumber(
string scheme,
string host,
string accessToken,
string channelNumber) : base(
channelNumber,
"ts",
DateTimeOffset.Now,
false,
true,
DateTimeOffset.Now, // unused
0)
{
Scheme = scheme;
Host = host;
AccessToken = accessToken;
}
public string Scheme { get; }
public string Host { get; }
public string AccessToken { get; }
}