Posts: 470
Threads: 52
Joined: Apr 2018
Reputation:
16
Tim,
Maybe this has already been discussed, but can you tell me what causes the mpd.conf file being overwritten with the default settings?
I've been playing around with some parameters but I usually end up with a default mpd.conf file (one where my line "metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,comment,disc" has disappeared…
So, almost every time I change something, I have to re-insert this line. At the same time, the song database is being regenerated again aswell…
Johan
:@
Posts: 470
Threads: 52
Joined: Apr 2018
Reputation:
16
Never mind, I just noticed at the top of the mpd.conf file that is automatically generated by the MPD config page. So I assume, whatever I do in there, replaces my mods…
Solution: stop messing around in that config file, Johan...
:@
Posts: 13,360
Threads: 302
Joined: Mar 2018
Reputation:
538
It gets regenerated whenever the MPD config screen settings are saved.
Posts: 5,995
Threads: 175
Joined: Apr 2018
Reputation:
233
Well, yeah, but as an interim hack, the "metadata_to_use" line could be added to /var/www/inc/playerlib.php so it's written to mpd.conf during this automatic generation.
See function wrk_mpdconfig.
Incidentally, I have now explored the mappings between multiple file formats (aac, aiff, asf, flac, m4a, mp3, ogg, wma) / tagging schemes (ID3v2.3/2.4, VORBIS comment, APEv2, WMA, iTunes-like) and the mpd "tags" (MPD 0.20.20 and 0.21.3). I'll post my findings soon to, erm, maybe the FAQs and HowTos section.
Regards,
Kent
Posts: 13,360
Threads: 302
Joined: Mar 2018
Reputation:
538
Good news is that upcoming moOde 4.5 is based on the super nice MPD 0.21 series and it includes the <metadata_to_use "+comment"> setting in mpd.conf :-)
But MPD 0.21 series has the unresolved Bluetooth output bug which requires a revert to 0.20.20 for Bluetooth speakers :-(
I'm not sure how I'm going to handle that...
-Tim
Posts: 5,995
Threads: 175
Joined: Apr 2018
Reputation:
233
(01-07-2019, 04:55 AM)Tim Curtis Wrote: Good news is that upcoming moOde 4.5 is based on the super nice MPD 0.21 series and it includes the <metadata_to_use "+comment"> setting in mpd.conf :-)
But MPD 0.21 series has the unresolved Bluetooth output bug which requires a revert to 0.20.20 for Bluetooth speakers :-(
I'm not sure how I'm going to handle that...
-Tim
Two days ago, I checked the issue I cross-posted on bluez-alsa and mpd. There's been nothing further since the brief exchange it triggered between Arkq and Max. It's been a month and the holiday season is tailing off. Looks like it's time to ask Arkq if Max's comments illuminated a path forward.
Regards,
Kent
Posts: 470
Threads: 52
Joined: Apr 2018
Reputation:
16
01-07-2019, 10:42 PM
(This post was last modified: 01-07-2019, 10:46 PM by JST1963.)
(01-07-2019, 02:52 AM)TheOldPresbyope Wrote: Well, yeah, but as an interim hack, the "metadata_to_use" line could be added to /var/www/inc/playerlib.php so it's written to mpd.conf during this automatic generation.
See function wrk_mpdconfig.
Kent
Thx Kent, I added the line somewhere in this function you mentioned (at the end) and it works great!
Code: ……
$output .= "mixer_type \"software\"\n";
$output .= "}\n\n";
// used tags
$output .= "metadata_to_use \"artist,album,title,track,name,genre,date,composer,performer,comment,disc\"\n";
$fh = fopen('/etc/mpd.conf', 'w');
……
:@
Posts: 470
Threads: 52
Joined: Apr 2018
Reputation:
16
01-07-2019, 10:47 PM
(This post was last modified: 01-07-2019, 10:48 PM by JST1963.
Edit Reason: double entry
)
Double...
:@
Posts: 126
Threads: 19
Joined: Jul 2021
Reputation:
1
07-11-2021, 04:59 PM
(This post was last modified: 07-11-2021, 05:10 PM by Sehnsucht.)
I'd like to point out that this overwriting still takes place and it causes M.A.L.P. to display multiple albums when it sees tracks in an album which differ by some obscure tag. It displays fine within moode but I don't use the moode interface. It would be nice if this didn't happen, and the workarounds don't seem to be possible any more. I can't see where +comment is being written to metadata_to_use.
|