mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Add xiph tag parsing
This commit is contained in:
parent
fa9820b1fd
commit
4649e0e425
@ -138,6 +138,10 @@ namespace MediaBrowser.Providers.MediaInfo
|
|||||||
{
|
{
|
||||||
tags = file.GetTag(TagTypes.Apple);
|
tags = file.GetTag(TagTypes.Apple);
|
||||||
}
|
}
|
||||||
|
else if (tagTypes.HasFlag(TagTypes.Xiph))
|
||||||
|
{
|
||||||
|
tags = file.GetTag(TagTypes.Xiph);
|
||||||
|
}
|
||||||
else if (tagTypes.HasFlag(TagTypes.AudibleMetadata))
|
else if (tagTypes.HasFlag(TagTypes.AudibleMetadata))
|
||||||
{
|
{
|
||||||
tags = file.GetTag(TagTypes.AudibleMetadata);
|
tags = file.GetTag(TagTypes.AudibleMetadata);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user