-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmpct.conf.php.sample
64 lines (62 loc) · 1.6 KB
/
mpct.conf.php.sample
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
/**
* Copy this file to ~/.mpct.conf.php to override default behavior.
*
* The internal parameters that may be overridden are listed near the top of
* the main script and at the bottom of the README.
*
* The modes feature allows you to set up an entire set of flags to be
* referred to easily with the -o flag.
*
* The order of parameter precedence goes:
* - $paramDefaults static array at the top of the script
* - $p settings in this file
* - the mode arrays, added in order
* - command-line flags
*
*/
$p = array(
'mpc' => '/usr/local/bin/mpc',
'latestRoot' => '/Volumes/storage/music/tmp/stage2',
'mpdRoot' => '/Volumes/storage/music',
'modes' => array(
'whole' => array(
'latestRoot' => '/Volumes/storage/music',
'deep' => 3,
'num' => 200,
),
),
);
$map = array(
'am' => 'Ambient',
'ab' => 'Ambient Beats',
'bb' => 'Breakbeat',
'bc' => 'Breakcore, Gabber, and Noise',
'ch' => 'Chill Out and Dub',
'cl' => 'Classical',
'co' => 'Compilations',
'dj' => 'DJ Beats',
'db' => 'Drum \'n Bass',
'dt' => 'Dub Techno',
'du' => 'Dubstep',
'el' => 'Electronic and Electro',
'fo' => 'Folk',
'go' => 'Goa',
'ho' => 'House',
'id' => 'IDM',
'ja' => 'Jazz',
'me' => 'Metal',
'mi' => 'Minimalistic',
'po' => 'Pop',
'pr' => 'Post-rock',
'ra' => 'Rap and Hip Hop',
're' => 'Reggae and Dub',
'ro' => 'Rock',
'sl' => 'Soul',
'so' => 'Soundtracks',
'te' => 'Techno',
'tr' => 'Trance',
'th' => 'Trip-Hop',
'we' => 'Weird',
'wo' => 'World and New Age',
);