29 lines
727 B
C#
29 lines
727 B
C#
|
using MediaBrowser.Controller.Resolvers;
|
||
|
using MediaBrowser.Providers.Lyric;
|
||
|
|
||
|
namespace MediaBrowser.Controller.Lyrics;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Interface ILyricParser.
|
||
|
/// </summary>
|
||
|
public interface ILyricParser
|
||
|
{
|
||
|
/// <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>
|
||
|
/// Parses the raw lyrics into a response.
|
||
|
/// </summary>
|
||
|
/// <param name="lyrics">The raw lyrics content.</param>
|
||
|
/// <returns>The parsed lyrics or null if invalid.</returns>
|
||
|
LyricResponse? ParseLyrics(LyricFile lyrics);
|
||
|
}
|