* add basic mpegts script * use custom mpegts script * update changelog
15 lines
251 B
C#
15 lines
251 B
C#
namespace ErsatzTV.Core.FFmpeg;
|
|
|
|
public enum TempFileCategory
|
|
{
|
|
Subtitle = 0,
|
|
SongBackground = 1,
|
|
CoverArt = 2,
|
|
CachedArtwork = 3,
|
|
MpegTsScript = 4,
|
|
|
|
Fmp4LastSegment = 97,
|
|
BadTranscodeFolder = 98,
|
|
BadPlaylist = 99
|
|
}
|