* rework hls segmenter to start more quickly * don't use realtime encoding for hls until we're at least a minute ahead * ugly but functional playlist filtering
8 lines
171 B
C#
8 lines
171 B
C#
using System;
|
|
using System.Diagnostics;
|
|
|
|
namespace ErsatzTV.Application.Streaming
|
|
{
|
|
public record PlayoutItemProcessModel(Process Process, DateTimeOffset Until);
|
|
}
|