Basic metadata working librespot/server/client. Still missing client hooks.

The librespot metadata api kinda messy, no clear API. For now I addded
printing of artist in Librespot, should publish patch
This commit is contained in:
frafall 2017-11-25 05:13:04 +01:00
parent d444052233
commit af3ea660b9
13 changed files with 101 additions and 60 deletions

View file

@ -171,7 +171,8 @@ json PcmStream::toJson() const
json j = {
{"uri", uri_.toJson()},
{"id", getId()},
{"status", state}
{"status", state},
{"meta", meta_->toJson()}
};
return j;
}