mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-12 08:36:43 +02:00
new parameter "devicename" (=Snapcast)
This commit is contained in:
parent
a98629563f
commit
1cc4bc23e7
2 changed files with 4 additions and 1 deletions
|
@ -32,7 +32,8 @@ SpotifyStream::SpotifyStream(PcmListener* pcmListener, const StreamUri& uri) : P
|
|||
string username = uri_.getQuery("username", "");
|
||||
string password = uri_.getQuery("password", "");
|
||||
string bitrate = uri_.getQuery("bitrate", "320");
|
||||
params = "--name \"" + name_ + "\" --username \"" + username + "\" --password \"" + password + "\" --bitrate " + bitrate + " --backend stdout";
|
||||
string devicename = uri_.getQuery("devicename", "Snapcast");
|
||||
params = "--name \"" + devicename + "\" --username \"" + username + "\" --password \"" + password + "\" --bitrate " + bitrate + " --backend stdout";
|
||||
logO << "params: " << params << "\n";
|
||||
}
|
||||
|
||||
|
|
|
@ -27,6 +27,8 @@
|
|||
* Starts librespot, reads PCM data from stdout, and passes the data to an encoder.
|
||||
* Implements EncoderListener to get the encoded data.
|
||||
* Data is passed to the PcmListener
|
||||
* usage:
|
||||
* snapserver -s "spotify:///librespot?name=Spotify&username=<my username>&password=<my password>[&devicename=Snapcast][&bitrate=320]"
|
||||
*/
|
||||
class SpotifyStream : public ProcessStream
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue