Hello,
I’m attempting to create a direct stream on Mopidy to load on another networked host that is running Icecast/Azuracast.
My [audio]
block is as follows:
[audio]
mixer = software
mixer_volume =
output = lamemp3enc ! shout2send mount=mopidy ip=0.0.0.0 port=8000 password=hackme
buffer_time =
I see in the logs that the service starts without issue:
kz@crates:~$ sudo journalctl -ru mopidy
-- Logs begin at Mon 2020-08-24 22:17:10 UTC, end at Tue 2020-08-25 18:37:15 UTC. --
Aug 25 18:37:10 crates.fm mopidy[1155]: INFO [MainThread] mopidy.commands Starting GLib mainloop
Aug 25 18:37:10 crates.fm mopidy[1155]: INFO [MainThread] mopidy_mpd.actor MPD server running at [::ffff:127.0.0.1]:6600
Aug 25 18:37:10 crates.fm mopidy[1155]: INFO [HttpFrontend-8] mopidy.http.actor HTTP server running at [::ffff:0.0.0.0]:6680
Aug 25 18:37:10 crates.fm mopidy[1155]: INFO [MainThread] mopidy.commands Starting Mopidy frontends: HttpFrontend, MpdFrontend
Aug 25 18:37:10 crates.fm mopidy[1155]: INFO [MainThread] mopidy.commands Starting Mopidy core
Aug 25 18:37:10 crates.fm mopidy[1155]: INFO [SoundCloudBackend-5] mopidy_soundcloud.actor Logged in to SoundCloud as 'cratesfm'
Aug 25 18:37:10 crates.fm mopidy[1155]: INFO [Audio-2] mopidy.audio.actor Audio output set to "lamemp3enc ! shout2send mount=mopidy ip=0.0.0.0 port=8000 password=hackme"
Aug 25 18:37:10 crates.fm mopidy[1155]: INFO [MainThread] mopidy.commands Starting Mopidy backends: M3UBackend, StreamBackend, SoundCloudBackend
Aug 25 18:37:10 crates.fm mopidy[1155]: INFO [MainThread] mopidy.commands Starting Mopidy audio
Aug 25 18:37:10 crates.fm mopidy[1155]: INFO [MainThread] mopidy.commands Starting Mopidy mixer: SoftwareMixer
Aug 25 18:37:10 crates.fm mopidy[1155]: INFO [MainThread] mopidy.__main__ Disabled extensions: file
Aug 25 18:37:10 crates.fm mopidy[1155]: INFO [MainThread] mopidy.__main__ Enabled extensions: stream, soundcloud, http, mpd, moped, softwaremixer, m3u
Aug 25 18:37:09 crates.fm mopidy[1155]: INFO [MainThread] mopidy.config Loading config from command line options
Aug 25 18:37:09 crates.fm mopidy[1155]: INFO [MainThread] mopidy.config Loading config from file:///etc/mopidy/mopidy.conf
Aug 25 18:37:09 crates.fm mopidy[1155]: INFO [MainThread] mopidy.config Loading config from file:///usr/share/mopidy/conf.d/mopidy.conf
Aug 25 18:37:09 crates.fm mopidy[1155]: INFO [MainThread] mopidy.config Loading config from builtin defaults
Aug 25 18:37:09 crates.fm mopidy[1155]: INFO [MainThread] mopidy.__main__ Starting Mopidy 3.0.1
Aug 25 18:37:09 crates.fm systemd[1]: Started Mopidy music server.
Aug 25 18:37:09 crates.fm systemd[1]: Starting Mopidy music server...
But I do not see a listener in netstat when running netstat -tulpn | grep 8000
.
Ultimately my goal here is to create a direct stream listener for whatever is being played by Mopidy that I can then use as a playlist in Azurecast. I understand that this is out of scope for this Discourse though any advice would be greatly appreciated.