Sfoglia il codice sorgente

More video mime types

LukePulverenti Luke Pulverenti luke pulverenti 13 anni fa
parent
commit
537b3553b8
1 ha cambiato i file con 15 aggiunte e 1 eliminazioni
  1. 15 1
      MediaBrowser.Common/Net/MimeTypes.cs

+ 15 - 1
MediaBrowser.Common/Net/MimeTypes.cs

@@ -57,6 +57,14 @@ namespace MediaBrowser.Common.Net
             {
                 return "video/x-ms-asf";
             }
+            else if (ext.EndsWith("3gp", StringComparison.OrdinalIgnoreCase))
+            {
+                return "video/3gpp";
+            }
+            else if (ext.EndsWith("ts", StringComparison.OrdinalIgnoreCase))
+            {
+                return "video/mp2t";
+            }
 
             // Type text
             else if (ext.EndsWith("css", StringComparison.OrdinalIgnoreCase))
@@ -127,7 +135,13 @@ namespace MediaBrowser.Common.Net
             {
                 return "audio/ogg";
             }
-           
+
+            // Playlists
+            else if (ext.EndsWith("m3u8", StringComparison.OrdinalIgnoreCase))
+            {
+                return "application/x-mpegURL";
+            }
+
             throw new InvalidOperationException("Argument not supported: " + path);
         }
     }