diff --git a/README.md b/README.md index 798ba575..9c37ae66 100644 --- a/README.md +++ b/README.md @@ -134,11 +134,11 @@ To test your mpd installation, you can add a radio station by $ echo "http://1live.akacast.akamaistream.net/7/706/119434/v1/gnl.akacast.akamaistream.net/1live" > /var/lib/mpd/playlists/einslive.m3u ###Mopidy setup -[Mopidy](https://www.mopidy.com/) can stream the audio output into the Snapserver's fifo with a `filesink` as audio output: +[Mopidy](https://www.mopidy.com/) can stream the audio output into the Snapserver's fifo with a `filesink` as audio output in `mopidy.conf`: [audio] #output = autoaudiosink - output = audioresample ! audioconvert ! wavenc ! filesink location=/tmp/snapfifo + output = audioresample ! audio/x-raw,rate=48000,channels=2,format=S16LE ! audioconvert ! wavenc ! filesink location=/tmp/snapfifo ###PulseAudio setup On the server you could create a sink to route sound of your applications to the FIFO: diff --git a/client/debian/changelog b/client/debian/changelog index b5bde933..ee7ca958 100644 --- a/client/debian/changelog +++ b/client/debian/changelog @@ -3,7 +3,7 @@ snapclient (0.5.0~beta-2) unstable; urgency=low * Features -Remote control API (JSON) Added version information - Get stream state (unknown, idle, playing, inactive) + Stream playing state (unknown, idle, playing, inactive) (Issue #34) -Android client: manually configure snapserver host name -Android client compatibility improved: armeabi and armeabi-v7 binaries -Android client: configurable latency @@ -11,6 +11,8 @@ snapclient (0.5.0~beta-2) unstable; urgency=low * Bugfixes -Android client: fixed "hide offline" on start -Store config in /var/lib/snapcast/ when running as daemon (Issue #33) + * General + -README.md: Added resampling command to the Mopidy section (Issue #32) -- Johannes Pohl Wed, 09 Mar 2016 00:02:00 +0200 @@ -20,9 +22,9 @@ snapclient (0.5.0~beta-1) unstable; urgency=low -Remote control API (JSON) Get server status, get streams, get active clients assign volume, assign stream, rename client, ... - -Android port of the Snapclient with a remote control app - -Multiple streams ("zones") can be configured using "-s, --stream": - The stream is configured by an URI: path, name, codec, sample format, ... + -Android port of the Snapclient with a remote control app (Issue #9) + -Multiple streams ("zones") can be configured (Issue #21) + Use "-s, --stream" to add a stream URI: path, name, codec, sample format E.g. "pipe:///tmp/snapfifo?name=Radio&sampleformat=48000:16:2&codec=flac" or "file:///home/user/some_pcm_file.wav?name=file" -Added .default file for the service (/etc/default/snapserver). diff --git a/server/debian/changelog b/server/debian/changelog index 30491b80..2de99b5a 100644 --- a/server/debian/changelog +++ b/server/debian/changelog @@ -3,7 +3,7 @@ snapserver (0.5.0~beta-2) unstable; urgency=low * Features -Remote control API (JSON) Added version information - Get stream state (unknown, idle, playing, inactive) + Stream playing state (unknown, idle, playing, inactive) (Issue #34) -Android client: manually configure snapserver host name -Android client compatibility improved: armeabi and armeabi-v7 binaries -Android client: configurable latency @@ -11,6 +11,8 @@ snapserver (0.5.0~beta-2) unstable; urgency=low * Bugfixes -Android client: fixed "hide offline" on start -Store config in /var/lib/snapcast/ when running as daemon (Issue #33) + * General + -README.md: Added resampling command to the Mopidy section (Issue #32) -- Johannes Pohl Wed, 09 Mar 2016 00:02:00 +0200 @@ -20,9 +22,9 @@ snapserver (0.5.0~beta-1) unstable; urgency=low -Remote control API (JSON) Get server status, get streams, get active clients assign volume, assign stream, rename client, ... - -Android port of the Snapclient with a remote control app - -Multiple streams ("zones") can be configured using "-s, --stream": - The stream is configured by an URI: path, name, codec, sample format, ... + -Android port of the Snapclient with a remote control app (Issue #9) + -Multiple streams ("zones") can be configured (Issue #21) + Use "-s, --stream" to add a stream URI: path, name, codec, sample format E.g. "pipe:///tmp/snapfifo?name=Radio&sampleformat=48000:16:2&codec=flac" or "file:///home/user/some_pcm_file.wav?name=file" -Added .default file for the service (/etc/default/snapserver).