* 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
11 lines
183 B
C#
11 lines
183 B
C#
using System;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.FFmpeg
|
|
{
|
|
public interface IHlsSessionWorker
|
|
{
|
|
DateTimeOffset PlaylistStart { get; }
|
|
void Touch();
|
|
}
|
|
}
|