mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Try to add extracted lyrics during scanning
The extraction process does not add the extracted lyrics to the audio media streams. Try to add it when tryExtractEmbeddedLyrics is true. Signed-off-by: gnattu <gnattuoc@me.com>
This commit is contained in:
parent
f2a5ccf102
commit
31237f778a
@ -136,6 +136,10 @@ namespace MediaBrowser.Providers.MediaInfo
|
|||||||
if (!audio.IsLocked)
|
if (!audio.IsLocked)
|
||||||
{
|
{
|
||||||
await FetchDataFromTags(audio, mediaInfo, options, tryExtractEmbeddedLyrics).ConfigureAwait(false);
|
await FetchDataFromTags(audio, mediaInfo, options, tryExtractEmbeddedLyrics).ConfigureAwait(false);
|
||||||
|
if (tryExtractEmbeddedLyrics)
|
||||||
|
{
|
||||||
|
AddExternalLyrics(audio, mediaStreams, options);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
audio.HasLyrics = mediaStreams.Any(s => s.Type == MediaStreamType.Lyric);
|
audio.HasLyrics = mediaStreams.Any(s => s.Type == MediaStreamType.Lyric);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user