mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-03 17:02:07 +01:00
48 lines
1.7 KiB
C#
48 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Model;
|
|
using MediaBrowser.Model.MediaSegments;
|
|
|
|
namespace MediaBrowser.Controller.MediaSegments;
|
|
|
|
/// <summary>
|
|
/// Provides methods for Obtaining the Media Segments from an Item.
|
|
/// </summary>
|
|
public interface IMediaSegmentProvider
|
|
{
|
|
/// <summary>
|
|
/// Gets the provider name.
|
|
/// </summary>
|
|
string Name { get; }
|
|
|
|
/// <summary>
|
|
/// Enumerates all Media Segments from an Media Item.
|
|
/// </summary>
|
|
/// <param name="request">Arguments to enumerate MediaSegments.</param>
|
|
/// <param name="cancellationToken">Abort token.</param>
|
|
/// <returns>A list of all MediaSegments found from this provider.</returns>
|
|
Task<IReadOnlyList<MediaSegmentDto>> GetMediaSegments(MediaSegmentGenerationRequest request, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Should return support state for the given item.
|
|
/// </summary>
|
|
/// <param name="item">The base item to extract segments from.</param>
|
|
/// <returns>True if item is supported, otherwise false.</returns>
|
|
ValueTask<bool> Supports(BaseItem item);
|
|
|
|
/// <summary>
|
|
/// Called when extracted segment data for an item is being pruned.
|
|
/// Providers should delete any cached analysis data they hold for the given item.
|
|
/// </summary>
|
|
/// <param name="itemId">The item whose data is being pruned.</param>
|
|
/// <param name="cancellationToken">Abort token.</param>
|
|
/// <returns>A task representing the asynchronous cleanup operation.</returns>
|
|
Task CleanupExtractedData(Guid itemId, CancellationToken cancellationToken)
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|