Replies: 4 comments 11 replies
-
It is not impossible, but it looks like MPD refuses to save it automatically into some kind of file, or even simply logging. I would very much love mod would save these strings (if so configured) somewhere, in whatever format (!) Here goes my bash script: METADATA_LOG="/mnt/work/log/mpd_metadata.log" } |
Beta Was this translation helpful? Give feedback.
-
Thank you for this. But this saves the audio stream into a file. |
Beta Was this translation helpful? Give feedback.
-
Here's a simple shell script using mpc to append song metadata to a file. Experiment with different format strings to get the specific metadata items that interest you (see while true ; do
mpc --wait --format "[[%artist% - ]%title%]|[%name%]" current >>$filename
done |
Beta Was this translation helpful? Give feedback.
-
Using mpd I play a radio stream. If possible, I'd like mpd to record in a file the song's artist and title to a file (append, not overwrite).
Is that possible?
How to do that?
Beta Was this translation helpful? Give feedback.
All reactions