Can I have multiple sources for media_dir in mopidy.conf?

Is it possible to have more than one source of music files ?

sudo nano /etc/mopidy/mopidy.conf

[local]
media_dir = /home/pi/Music

Here I want to also include an additional source:

/media/pi/Seagate Expansion Drive/Music

Is this possible, and what is the syntax of the command to do this ?

Thanks !

You can only have one media_dir but you can point to other directories from it using symbolic links. Be sure to also enable the scan_follow_symlinks setting in your Mopidy config i.e.

ln -s "/media/pi/Seagate Expansion Drive/Music" /home/pi/Music/Seagate

With Mopidy config:

[local]
media_dir = /home/pi/Music
can_follow_symlinks = True

You might prefer to point media_dir to some other directory which just contains symlinks to your various sources e.g. media_dir = /somewhere/all_my_music and then

ln -s "/media/pi/Seagate Expansion Drive/Music" /somewhere/all_my_music/Seagate
ln -s /home/pi/Music /somewhere/all_my_music/Home

Thanks for the help.
Forgive my questions, but here is result , not sure what I’m doing wrong.
Created the file structure and added to the Mopidy config.

then tried to restart Mopidy, error message now says service does not exist.

Run “sudo mopidyctl local scan”
result:
pi@raspberrypi:~ sudo mopidyctl local scan Running "/usr/bin/mopidy --config /usr/share/mopidy/conf.d:/etc/mopidy/mopidy.conf local scan" as user mopidy INFO [MainThread] mopidy.__main__ Starting Mopidy 3.0.2 INFO [MainThread] mopidy.config Loading config from builtin defaults INFO [MainThread] mopidy.config Loading config from file:///usr/share/mopidy/conf.d/mopidy.conf INFO [MainThread] mopidy.config Loading config from file:///etc/mopidy/mopidy.conf INFO [MainThread] mopidy.config Loading config from command line options INFO [MainThread] mopidy.__main__ Enabled extensions: tunein, http, iris, file, stream, internetarchive, softwaremixer, somafm, m3u INFO [MainThread] mopidy.__main__ Disabled extensions: local WARNING [MainThread] mopidy.__main__ Found local configuration errors. The extension has been automatically disabled: WARNING [MainThread] mopidy.__main__ local/can_follow_symlinks unknown config key. Did you mean 'scan_follow_symlinks'? WARNING [MainThread] mopidy.__main__ Please fix the extension configuration errors or disable the extensions to silence these messages. ERROR [MainThread] mopidy.__main__ Unable to run command provided by disabled extension local pi@raspberrypi:~
pi@raspberrypi:~ pi@raspberrypi:~ sudo nano /etc/mopidy/mopidy.conf
pi@raspberrypi:~ $ sudo mopidyctl config
Running “/usr/bin/mopidy --config /usr/share/mopidy/conf.d:/etc/mopidy/mopidy.conf config” as user mopidy
[core]
cache_dir = /var/cache/mopidy
config_dir = /etc/mopidy
data_dir = /var/lib/mopidy
max_tracklist_length = 10000
restore_state = false

[logging]
verbosity = 0
format = %(levelname)-8s [%(threadName)s] %(name)s %(message)s
color = false
config_file =

[audio]
mixer = software
mixer_volume =
output = alsasink
buffer_time =

[proxy]
scheme =
hostname =
port =
username =
password =

[somafm]
enabled = true
encoding = mp3
quality = fast
dj_as_artist = true

[local]
enabled = false ; Extension disabled due to config errors.
media_dir = /home/pi/Music
scan_timeout = 1000
scan_flush_threshold = 100
scan_follow_symlinks = false
included_file_extensions =
excluded_file_extensions =
.cue
.directory
.html
.jpeg
.jpg
.log
.nfo
.pdf
.png
.txt
.zip
directories =
Albums local:directory?type=album
Artists local:directory?type=artist
Composers local:directory?type=artist&role=composer
Genres local:directory?type=genre
Performers local:directory?type=artist&role=performer
Release Years local:directory?type=date&format=%25Y
Tracks local:directory?type=track
Last Week’s Updates local:directory?max-age=604800
Last Month’s Updates local:directory?max-age=2592000
timeout = 10
use_artist_sortname = false
album_art_files =
*.jpg
*.jpeg
*.png

[iris]
enabled = true
country = NZ
locale = en_NZ
spotify_authorization_url = https://jamesbarnsley.co.nz/iris/auth_spotify.php
lastfm_authorization_url = https://jamesbarnsley.co.nz/iris/auth_lastfm.php
genius_authorization_url = https://jamesbarnsley.co.nz/iris/auth_genius.php
data_dir = $XDG_DATA_DIR/iris

[internetarchive]
enabled = true
base_url = http://archive.org
collections =
audio
etree
librivoxaudio
audio_bookspoetry
audio_tech
audio_music
audio_news
audio_foreign
audio_podcast
audio_religion
audio_formats =
VBR MP3
64Kbps MP3
image_formats =
JPEG
JPEG Thumb
browse_limit = 100
browse_views =
downloads desc|Views
titleSorter asc|Title
publicdate desc|Date Archived
date desc|Date Published
creatorSorter asc|Creator
search_limit = 20
search_order =
cache_size = 128
cache_ttl = 86400
retries = 3
timeout = 10

[file]
enabled = true
media_dirs =
$XDG_MUSIC_DIR|Music
~/|Home
excluded_file_extensions =
.directory
.html
.jpeg
.jpg
.log
.nfo
.pdf
.png
.txt
.zip
show_dotfiles = false
follow_symlinks = false
metadata_timeout = 1000

[http]
enabled = true
hostname = 0.0.0.0
port = 6680
zeroconf = Mopidy HTTP server on $hostname
allowed_origins =
csrf_protection = true
default_app = mopidy

[m3u]
enabled = true
base_dir =
default_encoding = latin-1
default_extension = .m3u8
playlists_dir =

[softwaremixer]
enabled = true

[stream]
enabled = true
protocols =
http
https
mms
rtmp
rtmps
rtsp
metadata_blacklist =
timeout = 5000

[tunein]
enabled = true
timeout = 5000
filter =
pi@raspberrypi:~ $ sudo systemctl enable Mopidy
Failed to enable unit: Unit file Mopidy.service does not exist.

This was my copy and paste typo but the problem and solution are right there:

WARNING [MainThread] mopidy.__main__ Found local configuration errors. The extension has been automatically disabled:
WARNING [MainThread] mopidy.__main__ local/can_follow_symlinks unknown config key. Did you mean 'scan_follow_symlinks'?
WARNING [MainThread] mopidy.__main__ Please fix the extension configuration errors or disable the extensions to silence these messages.
ERROR [MainThread] mopidy.__main__ Unable to run command provided by disabled extension local

Use

[local]
media_dir = /home/pi/Music
scan_follow_symlinks = True

THANK YOU !!!- excellent help and advice , I appreciate it !