Add xiph tag parsing

This commit is contained in:
Shadowghost 2022-10-03 13:16:13 +02:00
parent fa9820b1fd
commit 4649e0e425
1 changed files with 4 additions and 0 deletions

View File

@ -138,6 +138,10 @@ namespace MediaBrowser.Providers.MediaInfo
{
tags = file.GetTag(TagTypes.Apple);
}
else if (tagTypes.HasFlag(TagTypes.Xiph))
{
tags = file.GetTag(TagTypes.Xiph);
}
else if (tagTypes.HasFlag(TagTypes.AudibleMetadata))
{
tags = file.GetTag(TagTypes.AudibleMetadata);