support tagging 3d as mvc

This commit is contained in:
Luke Pulverenti
2016-02-11 14:11:28 -05:00
parent d3d95f2f1c
commit 1a2867ea55
7 changed files with 22 additions and 1 deletions

View File

@@ -242,6 +242,10 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers
{
video.Video3DFormat = Video3DFormat.HalfTopAndBottom;
}
else if (string.Equals(format3D, "mvc", StringComparison.OrdinalIgnoreCase))
{
video.Video3DFormat = Video3DFormat.MVC;
}
}
}