Questions tagged [mpd]

Music Player Daemon, an audio server on Unix-type systems.

mpd stands for Music Player Daemon, an audio server on Unix-type systems (http://www.musicpd.org).

99 questions
0
votes
0 answers

Restreaming mpd to m3u8 loads CPU, any solution?

i restream channels from mpd to m3u8 but it loads cpu very much. Is any soliton to restream mpd streams easily? This is code: [program:channel] autorestart=true command=/usr/local/ffmpeg/bin/ffmpeg -re -hide_banner -headers 'Referer:…
0
votes
0 answers

DASH mpd restream and Convert to m3u8 HLS

Can i have some chance taking stream source in the DASH mpd format VIDEO and then convert it to m3u8 HLS format to stream agane. I will take video stream web link with mpd format, from other web server. https://xxxxx/xxxxx.mpd I have DASH mpd…
0
votes
0 answers

mpd watchdog on raspberry pi

I would like to use mpd-watchdog from JackRichardson (https://discourse.mopidy.com/t/radio-doesnt-return-after-internet-dropout-mpd-watchdog/424/8) on a raspbian-buster-lite . Copying the files to the relevant directories is no problem. Only…
Colin
  • 1
  • 3
0
votes
1 answer

stop next-track from removing previous track from playlist

I know this is possible because I did it before, I just cant remember how I did it. In my virtualbox when I press > in ncmpcpp it just goes to the next song in the playlist but in the fresh server I just set up pressing > removes the currently…
saulgudmon
  • 11
  • 3
0
votes
1 answer

Why this dash manifest keeps the player stuck until streams are downloaded?

I have this manifest file below . The issue is that the player waits for the streams to download completely before to start playing which is bad for the user experience. Any idea how to fix it? I expected the player to start range requests and feed…
Mihai
  • 438
  • 3
  • 13
0
votes
1 answer

How to create MPEG-DASH manifest with multiple fallback URL?

I have a URL like this http://.../test/index.mpd. What I want is create another dash manifest that will contain multiple fallback URLs pointing the original manifest file. For example for URL http://example.com/test/index.mpd (original manifest),…
C.Aglar
  • 1,290
  • 2
  • 14
  • 30
0
votes
1 answer

How to add songs/directories to Python MPD playlist

Having problems finding how to add songs to playlist on Raspberry PI (Jessie Lite) When I am trying to add file, either giving directory name or file it says : mpd.base.CommandError: [50@0] {add} Not found or "bad URI" I changed the music…
Darius
  • 596
  • 1
  • 6
  • 22
0
votes
1 answer

Firehol rules with kernel modules for MPD

Note: firehol uses iptables, so perhaps you do not have to know firehol to answer my question. I am stuck with adjusting my firehol.conf to allow connections from outside to an MPD server (https://www.musicpd.org/) running on my machine. This is the…
0
votes
0 answers

WCF Rest Sending MP4 MPD

I am trying to build a WCF Service to send a video stream using DASH and MPD. I am stuck when I am sending the MP4 file. Per Wirewhark my file is being sent as protocol http and media type video/mp4 but when I use other peoples link the protocol is…
Andrew
  • 173
  • 1
  • 1
  • 8
0
votes
1 answer

mpc current song bash script fail safe

I've got a script that loops: #!/bin/sh while [ true ] do mpc current > current_song.txt mpc idle player done However sometimes it fails to get the song details and creates a blank file. FFMpeg is reading this file and it crashes if its blank.…
Orophix
  • 33
  • 1
  • 7
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.…
0
votes
1 answer

Youtube-dl error: invalid literal for int() with base 10: '7766645.83333'

I am trying to download a video from an .mpd file and I'm getting the following error: ValueError: invalid literal for int() with base 10: '7766645.83333' When I look in the .mpd file, it has these elements, some of them containing the float.
Robert Calove
  • 449
  • 2
  • 9
0
votes
2 answers

MPD MPEG-DASH - Shows only one bitrate

Help. I wont show bitrate. player.getBitrateInfoListFor("video"); Shows only one bitrate - 454948 manifest.mpd generated by GPAC
Justin Rec
  • 21
  • 1
  • 4
0
votes
1 answer

How to add a file to the playlist of the mpd (Music Player Daemon)?

I wonder what I'm doing wrong? I want to add a file to the mpd playlist with C. The connection works and I can play a file, which I manually put in Gnome Music Player Client for example with: mpd_send_play(conn); but adding the file within a C code…
uii
  • 1
  • 1
0
votes
1 answer

Using String stored on variable as dash media source

I have a content of dash mpd file on string variable String MPDString = " " + "\n" + …
Sanjiv Dhakal
  • 316
  • 3
  • 13