Remote playback almost working

This commit is contained in:
watsonb8
2019-11-03 23:17:34 -05:00
parent a13e491a7e
commit a537edd657
14 changed files with 296 additions and 136 deletions

View File

@ -10,6 +10,7 @@ service RemotePartyService {
rpc LeaveParty(LeavePartyRequest) returns (LeavePartyResponse);
rpc GetPartyMembers(Aurora.Proto.General.Empty) returns (MembersResponse);
rpc GetQueue(Aurora.Proto.General.Empty) returns (QueueResponse);
rpc GetSongStream(SongRequest) returns (stream Aurora.Proto.General.Chunk) {};
}
message JoinPartyRequest {
@ -49,8 +50,13 @@ message QueueResponse{
}
message RemoteMediaData {
string title = 1;
string artist = 2;
string album = 3;
string duration = 4;
string id = 1;
string title = 2;
string artist = 3;
string album = 4;
string duration = 5;
}
message SongRequest {
string id = 1;
}