Remove all DB data on item removal, delete internal trickplay files (#13753)

This commit is contained in:
Tim Eisele
2025-03-23 17:05:13 +01:00
committed by GitHub
parent 8b6aec7ce5
commit 8db6a39e92
6 changed files with 170 additions and 92 deletions

View File

@@ -0,0 +1,17 @@
using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.IO;
/// <summary>
/// Interface ITrickplayManager.
/// </summary>
public interface IPathManager
{
/// <summary>
/// Gets the path to the trickplay image base folder.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="saveWithMedia">Whether or not the tile should be saved next to the media file.</param>
/// <returns>The absolute path.</returns>
public string GetTrickplayDirectory(BaseItem item, bool saveWithMedia = false);
}