diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-08 12:50:14 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-08 12:50:14 -0400 |
| commit | 639090ecf30581f3aedcc20ad32bb2707d721ca5 (patch) | |
| tree | 4b16d5a0134999a8b28bbb5078d62d76cfc20ea6 | |
| parent | af0d1cada0023872535e15227c192504f8692a6d (diff) | |
fixes #910: Feature Request: Support for additional Image Formats
| -rw-r--r-- | MediaBrowser.Server.Implementations/Library/Resolvers/PhotoResolver.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/Resolvers/PhotoResolver.cs b/MediaBrowser.Server.Implementations/Library/Resolvers/PhotoResolver.cs index 02960ea7e..d1cf7d668 100644 --- a/MediaBrowser.Server.Implementations/Library/Resolvers/PhotoResolver.cs +++ b/MediaBrowser.Server.Implementations/Library/Resolvers/PhotoResolver.cs @@ -30,7 +30,8 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers return null; } - protected static string[] ImageExtensions = { ".tiff", ".jpeg", ".jpg", ".png", ".aiff" }; + // Some common file name extensions for RAW picture files include: .cr2, .crw, .dng, .nef, .orf, .rw2, .pef, .arw, .sr2, .srf, and .tif. + protected static string[] ImageExtensions = { ".tiff", ".jpeg", ".jpg", ".png", ".aiff", ".cr2", ".crw", "dng", ".nef", ".orf", ".pef", ".arw" }; private static readonly string[] IgnoreFiles = { |
