Browse Source

Add xiph tag parsing

Shadowghost 2 năm trước cách đây
mục cha
commit
4649e0e425
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 4 0
      MediaBrowser.Providers/MediaInfo/AudioFileProber.cs

+ 4 - 0
MediaBrowser.Providers/MediaInfo/AudioFileProber.cs

@@ -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);