mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
* a * acceleration * addition * altogether * api clients * artist * associated * bandwidth * cannot * capabilities * case-insensitive * case-sensitive * configuration * delimiter * dependent * diacritics * directors * enable * explicitly * filters * finish * have * hierarchy * implicit * include * information * into * its * keepalive * localization * macos * manual * matching * metadata * nonexistent * options * overridden * parsed * parser * playback * preferring * processes * processing * provider * ratings * retrieval * running * segments * separate * should * station * subdirectories * superseded * supported * system * than * the * throws * transpose * valid * was link: forum or chat rooms Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
using System;
|
|
using System.Collections;
|
|
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;
|
|
|
|
/// <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);
|
|
}
|