123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- [core]
- cache_dir = /var/cache/mopidy
- config_dir = /etc/mopidy
- data_dir = /var/lib/mopidy
- restore_state = true
- [file]
- enabled = true
- media_dirs =
- /var/lib/mopidy/media
- follow_symlinks = true
- [local]
- media_dir = /var/lib/mopidy/media/music
- [m3u]
- playlists_dir = /var/lib/mopidy/playlists
- [http]
- enabled = true
- hostname = 0.0.0.0
- port = 6680
- static_dir =
- zeroconf = Mopidy HTTP server on $hostname
- allowed_origins =
- csrf_protection = true
- [stream]
- enabled = true
- protocols =
- http
- https
- mms
- rtmp
- rtmps
- rtsp
- timeout = 5000
- metadata_blacklist =
- [mpd]
- enabled = true
- hostname = 0.0.0.0
- port = 6600
- password =
- max_connections = 20
- connection_timeout = 60
- zeroconf = Mopidy MPD server on $hostname
- command_blacklist = listall,listallinfo
- default_playlist_scheme = m3u
- #[jellyfin]
- #hostname = jellyfin.service:8096
- #username = secstate
- #password = {{mopidy_jellyfin_password}}
- #libraries = Music
- #albumartistsort = False (Optional: will default to True if left undefined)
- #album_format = {ProductionYear} - {Name} (Optional: will default to "{Name}" if left undefined)
- #[spotify]
- #username = 1259345154
- #password = {{mopidy_spotify_pass}}
- #client_id = 35a0ba20-960d-4a0d-8051-0b5616052b90
- #client_secret = {{mopidy_spotify_client_secret}}
- #[spotify_web]
- #client_id = 35a0ba20-960d-4a0d-8051-0b5616052b90
- #client_secret = {{mopidy_spotify_client_secret}}
- [musicbox_webclient]
- enabled = true
- musicbox = true
- on_track_click = ADD_THIS_BOTTOM
- [scrobbler]
- ##api_key = {{mopidy_lastfm_api_key}}
- ##api_secret = {{mopidy_lastfm_secret}}
- username = powellc
- password = {{mopidy_lastfm_password}}
- [webhooks]
- enabled = true
- urls = http://192.168.1.123:8000/api/v1/scrobbles/mopidy/
- [audio]
- output = audioresample ! audioconvert ! audio/x-raw,rate=48000,channels=2,format=S16LE ! wavenc ! tcpclientsink host=127.0.0.1
- #output = lamemp3enc ! shout2send async=false mount=mopidy ip=icecast1.local port=8010 password=mainr0ot
- #output = tee name=t ! queue ! audioresample ! audio/x-raw,rate=48000,channels=2,format =S16LE ! audioconvert ! wavenc ! filesink location=/tmp/snapfifo t. ! queue ! lamemp3enc ! shout2send async=false mount=mopidy ip=icecast1.local port=8010 password=mainr0ot
|