Search found 141 matches
- November 28th, 2015, 10:15 am
- Forum: General Discussion
- Topic: Flac with embedded cuesheet
- Replies: 3
- Views: 3009
Re: Flac with embedded cuesheet
its not. mpd works with it just fine. But there is no database integration. all single-flac albums will only be available as playlists. the database will NOT see individual tracks.
- June 29th, 2015, 4:40 pm
- Forum: Help
- Topic: MPD, GMPC and NAS
- Replies: 5
- Views: 3182
Re: MPD, GMPC and NAS
first of all, i have my doubts that your mpd is working, because that config has errors causing mpd to not even start up. (missing closing brackets for pulse audio output) second: like said in previous comment. you cant play music on your laptop with gmpc, because gmpc is a remote control and nothin...
- June 14th, 2015, 1:32 am
- Forum: Developers' Corner
- Topic: Feature request: Limiting the sample rate
- Replies: 1
- Views: 2338
Re: Feature request: Limiting the sample rate
a solution would be to use pulseaudio with samplerate 88200 and alternate_samplerate 96000, which basically fulfills all use cases.
- May 15th, 2015, 6:37 pm
- Forum: Help
- Topic: Trying to get a RPi to play a delayed playlist using MPD
- Replies: 8
- Views: 5763
Re: Trying to get a RPi to play a delayed playlist using MPD
try again with latest edit
- May 14th, 2015, 8:27 am
- Forum: Help
- Topic: Trying to get a RPi to play a delayed playlist using MPD
- Replies: 8
- Views: 5763
Re: Trying to get a RPi to play a delayed playlist using MPD
I tested the python script, it works perfectly here.
anyway. 2nd solution was missing a "$" - but again, this needs a connection via unix socket.
anyway. 2nd solution was missing a "$" - but again, this needs a connection via unix socket.
Code: Select all
export MPD_HOST=/path/to/mpd_socket_file
Code: Select all
for i in $(ls -t); do mpc add "file://"${dir}"/"${i}""; done
- May 12th, 2015, 7:58 pm
- Forum: Help
- Topic: Trying to get a RPi to play a delayed playlist using MPD
- Replies: 8
- Views: 5763
Re: Trying to get a RPi to play a delayed playlist using MPD
use python3. needs the python-mpd2 module: #!/usr/bin/env python3 from mpd import MPDClient c=MPDClient() c.connect('127.0.0.1', '6600') c.clear() c.update() dirs=c.lsinfo('/') sorted_dirs = sorted(dirs, key=lambda k: k['last-modified']) for i in sorted_dirs: if 'directory' in i: c.add(i['directory'...
- May 5th, 2015, 2:28 am
- Forum: Help
- Topic: how to configurate audio_output
- Replies: 3
- Views: 4441
Re: how to configurate audio_output
no you dont need to use alsa. infact pulse works better with multiple soundcards, since you can switch easily on the fly. just leave your original output as it was and use pavucontrol to switch which soundcard is used by mpd. You can also set the correct pulse sink directly. Example: audio_output { ...
- May 5th, 2015, 2:25 am
- Forum: Help
- Topic: Database lists single track multiple times
- Replies: 2
- Views: 3794
Re: Database lists single track multiple times
mpd 0.15 is not supported anymore... for years now.
- March 19th, 2015, 1:17 pm
- Forum: Help
- Topic: How to run 5 instances of mpd using ubuntu?
- Replies: 3
- Views: 4043
Re: How to run 5 instances of mpd using ubuntu?
Of course you can. create a custom service file in /etc/systemd/system and make it do what you need to do.
As for rtp: thats a job for pulseaudio
As for rtp: thats a job for pulseaudio
- March 18th, 2015, 4:28 pm
- Forum: Help
- Topic: How to run 5 instances of mpd using ubuntu?
- Replies: 3
- Views: 4043
Re: How to run 5 instances of mpd using ubuntu?
create 5 config/state/database/etc files? then start mpd with "mpd path/to/config"
its also possible to have one master mpd and let the others receive the database from that instance. lookup satellite mode in docs.
its also possible to have one master mpd and let the others receive the database from that instance. lookup satellite mode in docs.
- March 15th, 2015, 12:28 pm
- Forum: Developers' Corner
- Topic: Customizable tags
- Replies: 6
- Views: 14318
Re: Customizable tags
This belongs on the bugtracker and while i would love this feature, i fear i know the answer :) Thanks for your reply Rasi. I am not sure this is a bug. I have opened a feature request on https://github.com/cmende/libmpdclient/issues/1 but no comments so far. I have looked at the sources a bit more...
- March 14th, 2015, 12:38 pm
- Forum: Other Clients
- Topic: MPC format search output
- Replies: 5
- Views: 27490
Re: MPC format search output
then your mpc might be too old. this was added in 0.26
- March 14th, 2015, 12:36 pm
- Forum: Help
- Topic: mpd slow to load large library
- Replies: 5
- Views: 6838
Re: mpd slow to load large library
hejops: lemme guess, you tagged your files with beets?
- March 14th, 2015, 12:34 pm
- Forum: General Discussion
- Topic: Song blacklist feature
- Replies: 4
- Views: 4497
- February 23rd, 2015, 9:56 pm
- Forum: Help
- Topic: MPD and homepages
- Replies: 1
- Views: 2928
Re: MPD and homepages
use one of the many javascript/npm/python/etc mpd modules available?
- February 22nd, 2015, 5:08 pm
- Forum: Help
- Topic: debugging HLS problem
- Replies: 5
- Views: 5445
Re: debugging HLS problem
if you check the m3u file you will see that the actual url is just another playlist file. with curl you can see the actual URL: curl http://as-hls-uk-live.edgesuite.net/pool_7/live/bbc_radio_three/bbc_radio_three.isml/bbc_radio_three-audio%3d320000.m3u8 i can't test it, since i have no permission he...
- February 12th, 2015, 4:49 pm
- Forum: Developers' Corner
- Topic: Customizable tags
- Replies: 6
- Views: 14318
Re: Customizable tags
This belongs on the bugtracker and while i would love this feature, i fear i know the answer 

- February 11th, 2015, 8:21 pm
- Forum: Help
- Topic: httpd streaming hangs while buffering since mpd version 0.17
- Replies: 5
- Views: 4985
Re: httpd streaming hangs while buffering since mpd version
if streaming does not work reliably, open a bug report
- February 5th, 2015, 12:57 am
- Forum: Help
- Topic: Compile mpd on CentOS 6.0 (Final) - libicu issue
- Replies: 7
- Views: 4987
Re: Compile mpd on CentOS 6.0 (Final) - libicu issue
mathieuhays, cirrus last response is valid for every feature you want to enable in mpd. It's not enough to have a dependency installed at compile time. But you need the header files too. Most times those are called alike. (e.g. libicu and libicu-dev) So install all dev packages for features you want...
- January 30th, 2015, 10:24 pm
- Forum: Help
- Topic: Playlist vs Play directly
- Replies: 4
- Views: 4172
Re: Playlist vs Play directly
which will.... add it to playlist...Ran wrote:In MPDroid, you can click and hold on the file you intend to listen to. From there a menu will allow you to play it directly.