try to detect 3d type

This commit is contained in:
Luke Pulverenti
2016-08-09 01:08:36 -04:00
parent cbb6a9495d
commit 112d5d6348
2 changed files with 8 additions and 0 deletions

View File

@@ -168,6 +168,12 @@ namespace MediaBrowser.MediaEncoding.Probing
}
ExtractTimestamp(info);
var stereoMode = GetDictionaryValue(tags, "stereo_mode");
if (string.Equals(stereoMode, "left_right", StringComparison.OrdinalIgnoreCase))
{
info.Video3DFormat = Video3DFormat.FullSideBySide;
}
}
return info;