Mopidy Local media folder linking

Hi All,
this is my first ever post on the forum so please advise if this is not the right forum.
I somehow manage to make mopidy works using the hassio/edge addons. it is working fine using ‘/share/mopidy/media’ path. However, i would like to add /media path in the configuration to have one location for all media. i am struggling to add. i tried to follow the advice on following forum but getting an error.

my config settings are as follows,
settings:

  • name: file/enabled
    value: ‘true’
  • name: file/media_dirs
    value: /share/mopidy/media
  • name: local/enabled
    value: ‘true’
  • name: local/media_dirs
    value: /media
    Please advise and thanks in advance.

Hello,
Here is my configuration which works fine :slight_smile:

For media in config.yaml

homeassistant:
media_dirs:
mopidy: /share/mopidy

For Mopidy in supervisor

local_scan: true
options:

  • name: local/media_dir
    value: /share/mopidy/media
  • name: m3u/playlists_dir
    value: /share/mopidy/playlists/
  • name: file/media_dirs
    value: /share/mopidy/data_dir/

Thanks cakp59. I manage to combine two folders and show them in mopidy edge addons and media broswer with the following configuration.

system_packages: []
python_packages: []
settings:

  • name: file/enabled
    value: ‘true’
  • name: file/media_dirs
    value: /share/mopidy/media

As i add additional configuration as suggested, which are as follows,
system_packages: []
python_packages: []
settings:

  • name: file/enabled
    value: ‘true’
  • name: file/media_dirs
    value: /share/mopidy/media
  • name: m3u/playlists_dir
    value: /share/mopidy/playlists/
  • name: file/media_dirs
    value: /share/mopidy/data_dir/
    local_scan: true

There is nothing shows up in mopidy browser section of “local & file”. Not sure what is wrong i am doing.

Just to clarify I am using mopidy addons from the “https://github.com/hassio-addons/repository-edge/blob/226a80688c3c35f41bbdb805d7f205bb136a628c/README.md” repository.