mirror of
https://github.com/ivabus/lonelyradio
synced 2024-11-10 02:25:17 +03:00
1.9 KiB
1.9 KiB
lonelyradio protocol (0.7)
Introduction
The lonelyradio protocol is designed to be minimal yet functional for music streaming purposes.
The lonelyradio protocol operates at the application layer, establishing communication between the server and client. In its reference implementation, it runs atop the TCP protocol, but it could also be implemented on top of any other transport protocol, such as UDP, WebSocket, and so on.
The lonelyradio protocol uses MessagePack to encode messages. Structures used in communication are defined in the lonelyradio_types
crate.
Establishing connection
- The client sends a «hello» packet («lonelyra», 8 bytes)
- The server checks the hello packet
- The server sends «ServerCapabilities» which informs the client about supported audio encoders (raw pcm s16le must be supported by all server implementations)
- Then the client picks one of the requests:
- Play (p) (see example 1.1)
- ListPlaylist (lpl) (see example 1.2)
- PlayPlayList (ppl) (see example 1.3)
- The server responds with one of RequestResult
- Ok -> The server begins sending PlayMessage’s
- TrackMetadata indicates the start of the new track
- FragmentMetadata indicates the start of a new fragment and defines the number of bytes in it
- FragmentMetadata is always followed by a fragment
- Playlist is only returned on ListPlaylist and shows available playlists
- Error indicates an error
- Ok -> The server begins sending PlayMessage’s
To get «next track» just reestablish the connection.
Examples
Examples show JSON representation of MessagePack
1.1
{
"p": { // e and co definicions could be found in lonelyradio_types crate
"e": "Pcm16",
"co": -1
}
}
1.2
Just string encoded to MessagePack
"lpl"
1.3
{
"ppl": [
"someplaylist",
{
"e": "Pcm16",
"co": -1
}
]
}