From f6769b73f2a82273e67689e8bc1c9d7b005ee866 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 20 Sep 2014 11:48:23 -0400 Subject: add MediaInfo to improve media analysis for video files --- MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs (limited to 'MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs') diff --git a/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs b/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs new file mode 100644 index 0000000000..b3a0dc237b --- /dev/null +++ b/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; + +namespace MediaBrowser.Controller.Entities +{ + public interface IHasSpecialFeatures + { + /// + /// Gets or sets the special feature ids. + /// + /// The special feature ids. + List SpecialFeatureIds { get; set; } + } +} -- cgit v1.2.3