IPathManager.cs 554 B

1234567891011121314151617
  1. using MediaBrowser.Controller.Entities;
  2. namespace MediaBrowser.Controller.IO;
  3. /// <summary>
  4. /// Interface ITrickplayManager.
  5. /// </summary>
  6. public interface IPathManager
  7. {
  8. /// <summary>
  9. /// Gets the path to the trickplay image base folder.
  10. /// </summary>
  11. /// <param name="item">The item.</param>
  12. /// <param name="saveWithMedia">Whether or not the tile should be saved next to the media file.</param>
  13. /// <returns>The absolute path.</returns>
  14. public string GetTrickplayDirectory(BaseItem item, bool saveWithMedia = false);
  15. }