make transcoding cache configurable
[noxon-gateway.git] / data / config.php.dist
index 67288599d1df8f95a057b8bf2ba78f8717f07d3f..1720268a06edc9338e2f3efca93ccb31d44afea3 100644 (file)
@@ -10,4 +10,17 @@ $mediatomb = array(
         'internetradio/Kindergeschichten/'
     ),
 );
+
+//MIME types in addition to MP3 files that the clients
+//support (and do not need transcoding for)
+$clientSupport = [
+    '127.0.0.1' => [
+        'audio/ogg' => true,
+    ],
+];
+
+//if this is set, transcode caching is activated
+$cacheDir = null;
+//http-accessible cache dir URL
+$cacheDirUrl = null;
 ?>