Questions tagged [mopidy]

Mopidy is an extensible music server written in Python.

Mopidy is an extensible music server written in Python. Mopidy plays music from local disk, Spotify, SoundCloud, Google Play Music, and more. You edit the playlist from any phone, tablet, or computer using a range of MPD and web clients.

https://www.mopidy.com/

6 questions
2
votes
0 answers

Can't run mopidy docker

I'm trying to install mopidy docker ( https://github.com/wernight/docker-mopidy) that would play music and send sound to pulseaudio. I'm trying to compose it with tihs: mopidy: container_name: mopidy image: wernight/mopidy volumes: -…
pinq-
  • 367
  • 2
  • 17
1
vote
0 answers

Mopidy Node-Red Node cannot play Spotify tracks or albums

Has anyone succeeded in playing Spotify tracks or albums via Node-Red Mopidy node? I tryed to follow the example here using these three nodes: tracklist.clear + tracklist.add + playback.play with the following options without any…
Eduardo
  • 57
  • 1
  • 13
1
vote
1 answer

Mopidy Installation Error

Installing on Mac High Sierra, through a fresh installation of Brew, following the instructions on the website to the letter. It throws this error; Traceback (most recent call last): File "/usr/local/bin/mopidy", line 5, in from…
0
votes
1 answer

Multitasking@Raspi? Running a python script while streaming audio

I am trying to implement a digital clock in my Raspberry Pi Zero with a Audio Hat with a 7-segment display with the following code: import tm1637 import time, threading import datetime tm = tm1637.TM1637(clk=5, dio=4) def curTime(): # display…
Eduardo
  • 57
  • 1
  • 13
0
votes
1 answer

Luanchd not starting mopidy & UDP listener

I'm trying to write a Launchd script to execute a simple sh script that will 1) launch mopidy 2) mkfifo /tmp/mopidy.fifo 3) pass data from port 5555 into this file using socat. I've tried setting up a mopidy.plist LaunchAgent that executes a…
0
votes
1 answer

How do I access Mopidy running in Docker container from another container

To start, I am more familiar running Docker through Portainer than I am with doing it through the console. What I'm Doing: Currently, I'm running Mopidy through a container, which is being accessed by other machines through the default Mopidy port.…