forked from vdellamea/jamulus-server-remote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
30 lines (24 loc) · 806 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php // Jamulus Server Remote
// v0.4 - 20210110
// Vincenzo Della Mea
// CONFIGURATION FILE
$SERVERNAME="BAND NAME"; //up to you
$ADMINPASSWORD= "secret1"; // change it!
$MUSICIANPASSWORD="secret2"; // change it!
$RECORDINGS="/home/jamulus/recording/"; //change this only if you are adapting to your server
$DEBUG=false; //in case of issues, set it at true and you will see some more infos
// AUTOMIX SETTINGS
$MIX="/home/jamulus/mix/"; //as previous
$CONSOLIDATED="/home/jamulus/consolidated/";
$CFORMAT="mp3"; // also flac, wav, etc
$AUDIONORMALIZATION=false; //Experimental - not yet good
// Bandmates names to be used for "informed" automix
// name => left percentage (right is 1-left)
$BANDMATES=array(
'Jimi' =>0.55,
'Eric' =>0.45,
'John' =>0.5,
'Patti' =>0.5,
'Stevie'=> 0.3,
);
?>