1MOPIDY(1) Mopidy MOPIDY(1)
2
3
4
6 mopidy - music server
7
9 mopidy [-h] [–version] [-q] [-v] [–config CONFIG_FILES] [-o CON‐
10 FIG_OVERRIDES] [COMMAND] …
11
13 Mopidy is a music server which can play music both from multiple
14 sources, like your local hard drive, radio streams, and from Spotify
15 and SoundCloud. Searches combines results from all music sources, and
16 you can mix tracks from all sources in your play queue. Your playlists
17 from Spotify or SoundCloud are also available for use.
18
19 The mopidy command is used to start the server.
20
22 --help, -h
23 Show help message and exit.
24
25 --version
26 Show Mopidy’s version number and exit.
27
28 --quiet, -q
29 Show less output: warning level and higher.
30
31 --verbose, -v
32 Show more output. Repeat up to four times for even more.
33
34 --config <file|directory>
35 Specify config files and directories to use. To use multiple
36 config files or directories, separate them with a colon. The
37 later files override the earlier ones if there’s a conflict.
38 When specifying a directory, all files ending in .conf in the
39 directory are used.
40
41 --option <option>, -o <option>
42 Specify additional config values in the section/key=value for‐
43 mat. Can be provided multiple times.
44
46 config Show the current effective config. All configuration sources are
47 merged together to show the effective document. Secret values
48 like passwords are masked out. Config for disabled extensions
49 are not included.
50
51 deps Show dependencies, their versions and installation location.
52
54 Additionally, extensions can provide extra commands. Run mopidy –help
55 for a list of what is available on your system and command-specific
56 help. Commands for disabled extensions will be listed, but can not be
57 run.
58
60 /etc/mopidy/mopidy.conf
61 System wide Mopidy configuration file.
62
63 ~/.config/mopidy/mopidy.conf
64 Your personal Mopidy configuration file. Overrides any configs
65 from the system wide configuration file.
66
68 To start the music server, run:
69
70 mopidy
71
72 To start the server with an additional config file, that can override
73 configs set in the default config files, run:
74
75 mopidy --config ./my-config.conf
76
77 To start the server and change a config value directly on the command
78 line, run:
79
80 mopidy --option mpd/enabled=false
81
82 The --option flag may be repeated multiple times to change multiple
83 configs:
84
85 mopidy -o mpd/enabled=false -o spotify/bitrate=320
86
87 The mopidy config output shows the effect of the --option flags:
88
89 mopidy -o mpd/enabled=false -o spotify/bitrate=320 config
90
92 Report bugs to Mopidy’s issue tracker at <‐
93 https://github.com/mopidy/mopidy/issues>
94
96 2009-2023, Stein Magnus Jodal and contributors
97
98
99
100
1013.4 2021 MOPIDY(1)