using MediaBrowser.Controller.Entities; namespace MediaBrowser.Controller.IO; /// /// Interface ITrickplayManager. /// public interface IPathManager { /// /// Gets the path to the trickplay image base folder. /// /// The item. /// Whether or not the tile should be saved next to the media file. /// The absolute path. public string GetTrickplayDirectory(BaseItem item, bool saveWithMedia = false); }