This is pulseaudio-dlna. A small DLNA server which brings DLNA / UPNP and Chromecast support to PulseAudio and Linux.
It can stream your current PulseAudio playback to different UPNP devices (UPNP Media Renderers) or Chromecasts in your network. It's main goals are: easy to use, no configuration hassle, no big dependencies.
UPNP renderers in your network will show up as pulseaudio sinks.
pulseaudio-dlna is licensed under GPLv3.
pulseaudio-dlna is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
pulseaudio-dlna is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with pulseaudio-dlna. If not, see <http://www.gnu.org/licenses/>.
If I could help you or if you like my work, you can buy me a coffee, a beer or pizza.
-
0.4.4 - (2015-08-07)
- Added
--disable-ssdp-listener
option - Fixed a bug with applications which remove and re-add streams all the time
- Added a missing dependency
python-psutil
- Added
-
0.4.3 - (2015-08-02)
- Fixed a bug when trying to terminate an encoder process
- Catch exceptions when trying to update pulseaudio sinks
- Fixed a timing issue where the streamserver was not ready but devices were already instructed to play
-
0.4.2 - (2015-08-02)
- The mp3 encoder is now prioritize over wav
- Added
--disable-switchback
option - Wav encoders do not longer share their encoder process
-
0.4.1 - (2015-07-27)
- Fixed Makefile for launchpad
-
0.4.0 - (2015-07-27)
- Added the
--fake-http10-content-length
option - The application can now run as root
- Catch pulseaudio exceptions for streams, sinks and modules when those are gone
- Fixed a bug where a missing ssdp header field made the application crash
- New devices are added now during runtime (thanks to coder-hugo)
- Rewrite of the streaming server
- Upnp devices can now request their audio format based on their capabilities
- Added AAC encoder
- If a device stops playing, the streams currently playing on the corresponding sink are switched back to the default sink
- If a device failes to start playing, streams currently playing on the corresponding sink are switched back to the default sink
- Added Chromecast support (new dependency:
python-protobuf
) - Fixed a bug where the application crashed when there was no suitable encoder found
- Added the
--bit-rate
option - Added additional headers for DLNA devices
- Added switch back mode also for sinks, not just for streams (new dependency:
python-notify2
) - Added better logging
- Validate encoders for installed dependencies
- Added the
-
0.3.5 - (2015-04-09)
- Fixed a bug where Sonos description XML could not get parsed correctly
-
0.3.4 - (2015-03-22)
- Fixed Makefile for launchpad
-
0.3.3 - (2015-03-22)
- Added the
--filter-device
option - Send 2 SSDP packets by default for better UPNP device discovery
- Added virtualenv for local installation
- Added the
-
0.3.2 - (2015-03-14)
- Added the Opus Encoder (new dependency:
opus-tools
) (thanks to MobiusHorizons) - Fixed a bug where an empty UPNP device name made the application crash
- Added a missing dependency (
python-gobject
)
- Added the Opus Encoder (new dependency:
-
0.3.1 - (2015-02-13)
- Fixed a bug so that AVTransports other than 1 can be used (thanks to martin-insulander-info)
-
0.3.0 - (2015-02-01)
- Added debian packaging
- Added proper signal handlers (new dependency:
python-setproctitle
) - Fixed a bug where binding to an already used port made the application crash
- HTTP charset encoding is now specified correctly
-
0.2.4 - (2015-01-25)
- Stream changes are now handled correctly (thanks to Takkat-Nebuk)
-
0.2.3 - (2015-01-21)
- Fixed a timing bug where the pulseaudio module was not loaded fast enough (thanks to Takkat-Nebuk)
-
0.2.2 - (2015-01-18)
- Fixed encoding issues
- Try to load the DBus module if it is not loaded before (thanks to Takkat-Nebuk)
-
0.2.1 - (2015-01-11)
- TTL changed to 10 and timeout to 5 for UDP broadcasting
- Added the
--renderer-urls
option to manually add UPNP devices via their control url - Added the
--debug
flag - The host ip address is now discovered automatically, no need to specifiy
--host
anymore
Supported Ubuntu releases:
- 15.04 (Vivid Vervet)
- 14.04.2 LTS (Trusty Tahr)
Ubuntu users can install pulseaudio-dlna via the following repository.
sudo apt-add-repository ppa:qos/pulseaudio-dlna
sudo apt-get update
sudo apt-get install pulseaudio-dlna
After that you can start pulseaudio-dlna via:
pulseaudio-dlna
Head over the the using section for further instructions.
Some community members are providing packages for others distributions. Keep in mind that since i am not using those, i can hardly support them!
- Arch Linux https://aur.archlinux.org/packages/pulseaudio-dlna/
- openSUSE (.rpm) http://packman.links2linux.de/package/pulseaudio-dlna
- Fedora - RHEL - CentOS - EPEL https://copr.fedoraproject.org/coprs/cygn/pulseaudio-dlna/
Other linux users can clone this git repository, make sure you have all the dependencies installed and the PulseAudio DBus module is loaded.
These are the requirements pulseaudio-dlna acutally needs to run. These dependencies will get installed if you install it via the PPA.
- python2.7
- python-pip
- python-setuptools
- python-dbus
- python-beautifulsoup
- python-docopt
- python-requests
- python-setproctitle
- python-gobject
- python-protobuf
- python-notify2
- python-psutil
- vorbis-tools
- sox
- lame
- flac
- faac
- opus-tools
You can install all the dependencies in Ubuntu via:
sudo apt-get install python2.7 python-pip python-setuptools python-dbus python-beautifulsoup python-docopt python-requests python-setproctitle python-gobject python-protobuf python-notify2 python-psutil vorbis-tools sox lame flac faac opus-tools
Since version 0.2.2 the DBus module should be loaded automatically, if it was not loaded before. It that does not work, you can load the DBus module in Ubuntu via the following command. Note that you have to do this every time you restart PulseAudio (or your computer).
pacmd load-module module-dbus-protocol
Or to make changes persistant edit the file /etc/pulse/default.pa
with your
favorite editor and append the following line:
load-module module-dbus-protocol
The recommend method of using pulseaudio-dlna is to install it local to a python virtualenv. In that way you will keep your system clean. If you don't like it anymore, just delete the folder. For that method you need some additional dependencies.
- python-virtualenv (Ubuntu <= 14.04 Trusty LTS)
- virtualenv (Ubuntu >= 14.10 Utopic)
- python-dev
So all Ubuntu versions prior to 14.10 Utopic need to install:
sudo apt-get install python-virtualenv python-dev
All Ubuntu versions above install:
sudo apt-get install virtualenv python-dev
Change to the project root folder and start the installation via:
make
After that you can start pulseaudio-dlna via:
bin/pulseaudio-dlna
Since some people like it more to install software globally, you can do that too. In many software projects this is the default installation method.
Change to the root folder and start the installation via:
make install
After that you can start pulseaudio-dlna via:
pulseaudio-dlna
pulseaudio-dlna should detect the ip address your computer is reachable within
your local area network. If the detected ip address is not correct or there
were no ips found, you still can specifiy them yourself via the host
option (--host <your-ip>
)
Right after startup it should start searching for UPNP devices in your LAN and add new PulseAudio sinks. After 5 seconds the progress is complete and you can select your UPNP renderers from the default audio control.
In case you just want to stream single audio streams to your UPNP devices you
can do this via pavucontrol
.
You can install pavucontrol
in Ubuntu via the following command:
sudo apt-get install pavucontrol
Note that pulseaudio-dlna has to run all the time while you are listening to your music. If you stop pulseaudio-dlna it will cleanly remove the created UPNP devices from PulseAudio and your UPNP devices will stop playing.
Since 0.4, new devices are automatically discovered as they appear on the network.
Usage:
pulseaudio-dlna [--host <host>] [--port <port>] [--encoder <encoder>] [--bit-rate=<rate>] [--filter-device=<filter-device>] [--renderer-urls <urls>] [--debug] [--fake-http10-content-length] [--disable-switchback] [--disable-ssdp-listener]
pulseaudio-dlna [-h | --help | --version]
Options:
--host=<host> Set the server ip.
-p --port=<port> Set the server port [default: 8080].
-e --encoder=<encoder> Set the audio encoder.
Possible encoders are:
- mp3 MPEG Audio Layer III (MP3)
- ogg Ogg Vorbis
- flac Free Lossless Audio Codec (FLAC)
- wav Waveform Audio File Format (WAV)
- opus Opus Interactive Audio Codec (OPUS)
-b --bit-rate=<rate> Set the audio encoder's bitrate.
--filter-device=<filter-device> Set a name filter for devices which should be added.
Devices which get discovered, but won't match the
filter text will be skipped.
--renderer-urls=<urls> Set the renderer urls yourself. no discovery will commence.
--debug enables detailed debug messages.
--fake-http10-content-length If set, the content-length of HTTP 1.0 requests will be set to 100 GB.
--disable-switchback If set, streams won't switched back to the default sink if a device disconnects.
--disable-ssdp-listener If set, the application won't bind to the port 1900 and therefore the automatic discovery of new devices won't work.
-v --version Show the version.
-h --help Show the help.
Samples:
pulseaudio-dlna
will start pulseaudio-dlna on port 8080 and stream your PulseAudio streams encoded with mp3.pulseaudio-dlna --encoder ogg
will start pulseaudio-dlna on port 8080 and stream your PulseAudio streams encoded with Ogg Vorbis.pulseaudio-dlna --port 10291 --encoder flac
will start pulseaudio-dlna on port 10291 and stream your PulseAudio streams encoded with FLAC.pulseaudio-dlna --filter-device 'Nexus 5,TV'
will just use devices named Nexus 5 or TV even when more devices got discovered.pulseaudio-dlna --renderer-urls http://192.168.1.7:7676/smp_10_
won't discover upnp devices by itself. Instead it will search for upnp renderers at the specified locations. You can specify multiple locations via urls seperated by comma (,). Most users won't ever need this option, but since UDP multicast packages won't work (most times) over VPN connections this is very useful if you ever plan to stream to a UPNP device over VPN.
Some devices do not stick to the HTTP 1.0/1.1 standard. Since most devices do, pulseaudio-dlna must be instructed by CLI flags to act in a non-standard way.
-
--fake-http10-content-length
Adds a faked HTTP Content-Length to HTTP 1.0 responses. The length is set to 100 GB and ensures that the device would keep playing for months. This is necessary for the Hame Soundrouter.
pulseaudio-dlna was successfully tested on the following devices / applications:
- D-Link DCH-M225/E
- Cocy UPNP media renderer
- BubbleUPnP (Android App)
- Samsung Smart TV LED60 (UE60F6300)
- Samsung Smart TV LED40 (UE40ES6100)
- Xbmc / Kodi
- Philips Streamium NP2500 Network Player
- Yamaha RX-475 (AV Receiver)
- Majik DSM
- Pi MusicBox
- Google Chromecast
- Sonos PLAY:1
- Sonos PLAY:3
- Hame Soundrouter
- Raumfeld Speaker M
- Pioneer VSX-824 (AV Receiver)
- ROCKI
- Sony STR-DN1050 (AV Receiver)
- Pure Jongo S3
- Volumio
pulseaudio-dlna supports the following encoders:
- lame MPEG Audio Layer III (MP3)
- ogg Ogg Vorbis
- flac Free Lossless Audio Codec (FLAC)
- wav Waveform Audio File Format (WAV)
- opus Opus Interactive Audio Codec (OPUS)
- aac Advanced Audio Coding (AAC)