You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
959 B
37 lines
959 B
using System.Threading.Tasks;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Resolvers;
|
|
|
|
namespace MediaBrowser.Providers.Lyric;
|
|
|
|
/// <summary>
|
|
/// Interface ILyricsProvider.
|
|
/// </summary>
|
|
public interface ILyricProvider
|
|
{
|
|
/// <summary>
|
|
/// Gets a value indicating the provider name.
|
|
/// </summary>
|
|
string Name { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the priority.
|
|
/// </summary>
|
|
/// <value>The priority.</value>
|
|
ResolverPriority Priority { get; }
|
|
|
|
/// <summary>
|
|
/// Checks if an item has lyrics available.
|
|
/// </summary>
|
|
/// <param name="item">The media item.</param>
|
|
/// <returns>Whether lyrics where found or not.</returns>
|
|
bool HasLyrics(BaseItem item);
|
|
|
|
/// <summary>
|
|
/// Gets the lyrics.
|
|
/// </summary>
|
|
/// <param name="item">The media item.</param>
|
|
/// <returns>A task representing found lyrics.</returns>
|
|
Task<LyricFile?> GetLyrics(BaseItem item);
|
|
}
|