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.
29 lines
727 B
29 lines
727 B
1 year ago
|
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);
|
||
|
}
|