12 lines
299 B
C#
12 lines
299 B
C#
using System.Collections.Concurrent;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.FFmpeg;
|
|
|
|
public interface IFFmpegSegmenterService
|
|
{
|
|
ConcurrentDictionary<string, IHlsSessionWorker> SessionWorkers { get; }
|
|
|
|
void TouchChannel(string channelNumber);
|
|
void PlayoutUpdated(string channelNumber);
|
|
}
|