Files
ersatztv/ErsatzTV.Core/FFmpeg/TempFileCategory.cs
T
Jason DoveandGitHub 0edfb71f8d limit disk use and keep cover art aspect ratio (#502)
* use temp file pool to limit disk use

* keep aspect ratio and crop when scaling cover art for blurred background

* fix typo
2021-11-25 18:47:22 -06:00

10 lines
154 B
C#

namespace ErsatzTV.Core.FFmpeg
{
public enum TempFileCategory
{
DrawText = 0,
SongBackground = 1,
CoverArt = 2
}
}