mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
539 B
22 lines
539 B
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.FFmpeg; |
|
|
|
namespace ErsatzTV.Application.Streaming; |
|
|
|
public record GetSlugProcessByChannelNumber( |
|
string ChannelNumber, |
|
StreamingMode Mode, |
|
DateTimeOffset Now, |
|
bool HlsRealtime, |
|
DateTimeOffset ChannelStart, |
|
TimeSpan PtsOffset, |
|
Option<FrameRate> TargetFramerate, |
|
Option<double> SlugSeconds) : FFmpegProcessRequest( |
|
ChannelNumber, |
|
Mode, |
|
Now, |
|
StartAtZero: true, |
|
HlsRealtime, |
|
ChannelStart, |
|
PtsOffset, |
|
FFmpegProfileId: Option<int>.None);
|
|
|