mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-03 05:34:16 -04:00
18 lines
554 B
C#
18 lines
554 B
C#
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);
|
|
}
|