* use temp file pool to limit disk use * keep aspect ratio and crop when scaling cover art for blurred background * fix typo
10 lines
184 B
C#
10 lines
184 B
C#
using ErsatzTV.Core.FFmpeg;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.FFmpeg
|
|
{
|
|
public interface ITempFilePool
|
|
{
|
|
string GetNextTempFile(TempFileCategory category);
|
|
}
|
|
}
|