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
This commit is contained in:
Jason Dove
2021-11-25 18:47:22 -06:00
committed by GitHub
parent 21b90a1b6c
commit 0edfb71f8d
16 changed files with 96 additions and 7 deletions
@@ -0,0 +1,9 @@
using ErsatzTV.Core.FFmpeg;
namespace ErsatzTV.Core.Interfaces.FFmpeg
{
public interface ITempFilePool
{
string GetNextTempFile(TempFileCategory category);
}
}