* use temp file pool to limit disk use * keep aspect ratio and crop when scaling cover art for blurred background * fix typo
10 lines
154 B
C#
10 lines
154 B
C#
namespace ErsatzTV.Core.FFmpeg
|
|
{
|
|
public enum TempFileCategory
|
|
{
|
|
DrawText = 0,
|
|
SongBackground = 1,
|
|
CoverArt = 2
|
|
}
|
|
}
|