(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');
……
:@