diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs
index 0116f5d42a..78f4e3fc24 100644
--- a/MediaBrowser.Controller/Entities/Video.cs
+++ b/MediaBrowser.Controller/Entities/Video.cs
@@ -44,12 +44,6 @@ namespace MediaBrowser.Controller.Entities
///
/// The video3 D format.
public Video3DFormat? Video3DFormat { get; set; }
-
- ///
- /// Gets or sets the format of the video.
- ///
- /// The format of the video.
- public VideoFormat VideoFormat { get; set; }
///
/// Gets or sets the media streams.
diff --git a/MediaBrowser.Model.net35/MediaBrowser.Model.net35.csproj b/MediaBrowser.Model.net35/MediaBrowser.Model.net35.csproj
index 6bce2a8337..92cef12c92 100644
--- a/MediaBrowser.Model.net35/MediaBrowser.Model.net35.csproj
+++ b/MediaBrowser.Model.net35/MediaBrowser.Model.net35.csproj
@@ -160,9 +160,6 @@
Entities\Video3DFormat.cs
-
- Entities\VideoFormat.cs
-
Entities\VideoType.cs
diff --git a/MediaBrowser.Model/Dto/BaseItemDto.cs b/MediaBrowser.Model/Dto/BaseItemDto.cs
index 149029b597..1494795dab 100644
--- a/MediaBrowser.Model/Dto/BaseItemDto.cs
+++ b/MediaBrowser.Model/Dto/BaseItemDto.cs
@@ -422,12 +422,6 @@ namespace MediaBrowser.Model.Dto
/// The chapters.
public List Chapters { get; set; }
- ///
- /// Gets or sets the video format.
- ///
- /// The video format.
- public VideoFormat? VideoFormat { get; set; }
-
///
/// Gets or sets the type of the location.
///
diff --git a/MediaBrowser.Model/Entities/VideoFormat.cs b/MediaBrowser.Model/Entities/VideoFormat.cs
deleted file mode 100644
index ad04203e25..0000000000
--- a/MediaBrowser.Model/Entities/VideoFormat.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-namespace MediaBrowser.Model.Entities
-{
- ///
- /// Enum VideoFormat
- ///
- public enum VideoFormat
- {
- ///
- /// The standard
- ///
- Standard,
- ///
- /// The digital3 D
- ///
- Digital3D,
- ///
- /// The SBS3 D
- ///
- Sbs3D
- }
-}
diff --git a/MediaBrowser.Model/MediaBrowser.Model.csproj b/MediaBrowser.Model/MediaBrowser.Model.csproj
index 6b1c728e28..e4b68bc3a3 100644
--- a/MediaBrowser.Model/MediaBrowser.Model.csproj
+++ b/MediaBrowser.Model/MediaBrowser.Model.csproj
@@ -87,7 +87,6 @@
-