* hls segmenter wip * log message * close unused transcode sessions after 2 minutes * use frame rate for 2s keyframes in hls segmenter * add frame rate to media version * fix segmenter framerate calculation * automatically restart hls segmenter with next scheduled item * cleanup * update changelog * decrease segmenter start delay
10 lines
197 B
C#
10 lines
197 B
C#
namespace ErsatzTV.Core.Errors
|
|
{
|
|
public class ChannelHasProcess : BaseError
|
|
{
|
|
public ChannelHasProcess() : base("Channel already has ffmpeg process")
|
|
{
|
|
}
|
|
}
|
|
}
|