diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-10-01 20:13:43 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-10-01 20:13:43 -0400 |
| commit | 1da8509ae5b09cb421ece67421f2a88544a2c940 (patch) | |
| tree | 253f4c152432f2ca2f9fb074b05650359a7ec23c /MediaBrowser.Controller/Entities/Video.cs | |
| parent | a452bc23b299b26cff3ff585862796c04ac5bc93 (diff) | |
update playback settings
Diffstat (limited to 'MediaBrowser.Controller/Entities/Video.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Video.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index ffb601dc46..8693d867cc 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -78,6 +78,14 @@ namespace MediaBrowser.Controller.Entities } } + public override double? GetDefaultPrimaryImageAspectRatio() + { + double value = 16; + value /= 9; + + return value; + } + public override string CreatePresentationUniqueKey() { if (!string.IsNullOrWhiteSpace(PrimaryVersionId)) |
