mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 23:19:30 -06:00
updated music info helper title to avoid parsing cover
This commit is contained in:
@@ -96,11 +96,14 @@ namespace FileFlows.MusicNodes
|
||||
}
|
||||
else if (lowLine.StartsWith("artist") || lowLine.StartsWith("album_artist"))
|
||||
{
|
||||
if(string.IsNullOrWhiteSpace(mi.Artist))
|
||||
if (string.IsNullOrWhiteSpace(mi.Artist))
|
||||
mi.Artist = line.Substring(colonIndex + 1).Trim();
|
||||
}
|
||||
else if (lowLine.StartsWith("title"))
|
||||
mi.Title = line.Substring(colonIndex + 1).Trim();
|
||||
else if (lowLine.StartsWith("title") && lowLine.Contains(".jpg") == false)
|
||||
{
|
||||
if(string.IsNullOrWhiteSpace(mi.Title))
|
||||
mi.Title = line.Substring(colonIndex + 1).Trim();
|
||||
}
|
||||
else if (lowLine.StartsWith("album"))
|
||||
mi.Album = line.Substring(colonIndex + 1).Trim();
|
||||
else if (lowLine.StartsWith("disc"))
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user