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.
24 lines
576 B
24 lines
576 B
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.FFmpeg; |
|
|
|
namespace ErsatzTV.Application.Streaming; |
|
|
|
public record GetPlayoutItemProcessByChannelNumber( |
|
string ChannelNumber, |
|
StreamingMode Mode, |
|
DateTimeOffset Now, |
|
bool StartAtZero, |
|
bool HlsRealtime, |
|
DateTimeOffset ChannelStart, |
|
TimeSpan PtsOffset, |
|
Option<FrameRate> TargetFramerate, |
|
bool IsTroubleshooting, |
|
Option<int> FFmpegProfileId) : FFmpegProcessRequest( |
|
ChannelNumber, |
|
Mode, |
|
Now, |
|
StartAtZero, |
|
HlsRealtime, |
|
ChannelStart, |
|
PtsOffset, |
|
FFmpegProfileId);
|
|
|