From f991d9ddf961c2bd19150133eec680ad292e84c1 Mon Sep 17 00:00:00 2001 From: chme Date: Sun, 20 Mar 2022 12:36:25 +0100 Subject: [PATCH] [docs] Delete "old" README*.md files --- INSTALL.md | 353 +--- Makefile.am | 14 +- README.md | 604 +----- README_ALSA.md | 448 ---- README_JSON_API.md | 2651 ------------------------ README_PLAYER_WEBINTERFACE.md | 55 - README_PULSE.md | 149 -- README_RADIO_STREAMS.md | 107 - README_SMARTPL.md | 211 -- screenshots/Screenshot-album.png | Bin 37424 -> 0 bytes screenshots/Screenshot-artists.png | Bin 30231 -> 0 bytes screenshots/Screenshot-now-playing.png | Bin 25076 -> 0 bytes screenshots/Screenshot-queue.png | Bin 32947 -> 0 bytes 13 files changed, 13 insertions(+), 4579 deletions(-) delete mode 100644 README_ALSA.md delete mode 100644 README_JSON_API.md delete mode 100644 README_PLAYER_WEBINTERFACE.md delete mode 100644 README_PULSE.md delete mode 100644 README_RADIO_STREAMS.md delete mode 100644 README_SMARTPL.md delete mode 100644 screenshots/Screenshot-album.png delete mode 100644 screenshots/Screenshot-artists.png delete mode 100644 screenshots/Screenshot-now-playing.png delete mode 100644 screenshots/Screenshot-queue.png diff --git a/INSTALL.md b/INSTALL.md index 613e12bc..310009a7 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,354 +1,3 @@ # Installation instructions for OwnTone -This document contains instructions for installing OwnTone from the git tree. If -you just want to install from a release tarball, you don't need the build tools -(git, autotools, autoconf, automake, gawk, gperf, gettext, bison and flex), and -you can skip the autoreconf step. - -The source for this version of OwnTone can be found here: -[owntone/owntone-server](https://github.com/owntone/owntone-server.git) - -## Quick version for Raspberry Pi OS - -See the instructions here: -[OwnTone server (iTunes server) - -Raspberry Pi Forums](http://www.raspberrypi.org/phpBB3/viewtopic.php?t=49928) - -## Quick version for Debian/Ubuntu users - -If you are the lucky kind, this should get you all the required tools and -libraries: - -```bash -sudo apt-get install \ - build-essential git autotools-dev autoconf automake libtool gettext gawk \ - gperf bison flex libconfuse-dev libunistring-dev libsqlite3-dev \ - libavcodec-dev libavformat-dev libavfilter-dev libswscale-dev libavutil-dev \ - libasound2-dev libmxml-dev libgcrypt20-dev libavahi-client-dev zlib1g-dev \ - libevent-dev libplist-dev libsodium-dev libjson-c-dev libwebsockets-dev \ - libcurl4-openssl-dev libprotobuf-c-dev -``` - -Note that OwnTone will also work with other versions and flavours of -libgcrypt and libcurl, so the above are just suggestions. - -The following features require extra packages, and that you add a configure -argument when you run ./configure: - - Feature | Configure argument | Packages - ---------------------|--------------------------|------------------------------------- - Chromecast | `--enable-chromecast` | libgnutls*-dev - Legacy libspotify | `--enable-libspotify` | libspotify-dev - Pulseaudio | `--with-pulseaudio` | libpulse-dev - -These features can be disabled saving you package dependencies: - - Feature | Configure argument | Packages - ---------------------|--------------------------|------------------------------------- - Spotify (built-in) | `--disable-spotify` | libprotobuf-c-dev - Player web UI | `--disable-webinterface` | libwebsockets-dev - Live web UI | `--without-libwebsockets`| libwebsockets-dev - -Then run the following (adding configure arguments for optional features): - -```bash -git clone https://github.com/owntone/owntone-server.git -cd owntone-server -autoreconf -i -./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-install-user -make -sudo make install -``` - -Using `--enable-install-user` means that `make install` will also add system -user and group for owntone. - -With the above configure arguments, a systemd service file will be installed to -`/etc/systemd/system/owntone.service` so that the server will start on boot. -Use `--disable-install-systemd` if you don't want that. - -Now edit `/etc/owntone.conf`. Note the guide at the top highlighting which -settings that normally require modification. - -Start the server with `sudo systemctl start owntone` and check that it is -running with `sudo systemctl status owntone`. - -See the [README.md](README.md) for usage information. - -## Quick version for Fedora - -If you haven't already enabled the free RPM fusion packages do that, since you -will need ffmpeg. You can google how to do that. Then run: - -```bash -sudo yum install \ - git automake autoconf gettext-devel gperf gawk libtool bison flex \ - sqlite-devel libconfuse-devel libunistring-devel mxml-devel libevent-devel \ - avahi-devel libgcrypt-devel zlib-devel alsa-lib-devel ffmpeg-devel \ - libplist-devel libsodium-devel json-c-devel libwebsockets-devel \ - libcurl-devel protobuf-c-devel -``` - -Clone the OwnTone repo: - -```bash -git clone https://github.com/owntone/owntone-server.git -cd owntone-server -``` - -Then run the following: - -```bash -autoreconf -i -./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-install-user -make -sudo make install -``` - -Using `--enable-install-user` means that `make install` will also add system -user and group for owntone. - -With the above configure arguments, a systemd service file will be installed to -`/etc/systemd/system/owntone.service` so that the server will start on boot. -Use `--disable-install-systemd` if you don't want that. - -Now edit `/etc/owntone.conf`. Note the guide at the top highlighting which -settings that normally require modification. - -Start the server with `sudo systemctl start owntone` and check that it is -running with `sudo systemctl status owntone`. - -See the [README.md](README.md) for usage information. - -## Quick version for FreeBSD - -There is a script in the 'scripts' folder that will at least attempt to do all -the work for you. And should the script not work for you, you can still look -through it and use it as an installation guide. - -## Quick version for macOS (using Homebrew) - -This workflow file used for building OwnTone via Github actions includes -all the steps that you need to execute: -[.github/workflows/macos.yml](.github/workflows/macos.yml) - -## "Quick" version for macOS (using macports) - -Caution: -1) this approach may be out of date, consider using the Homebrew method above -since it is continuously tested. -2) macports requires many downloads and lots of time to install (and sometimes -build) ports... you'll want a decent network connection and some patience! - -Install macports (which requires Xcode): - https://www.macports.org/install.php - -```bash -sudo port install \ - autoconf automake libtool pkgconfig git gperf bison flex libgcrypt \ - libunistring libconfuse ffmpeg libevent json-c libwebsockets curl \ - libplist libsodium protobuf-c -``` - -Download, configure, build and install the Mini-XML library: - http://www.msweet.org/projects.php/Mini-XML - -Download, configure, build and install the libinotify library: - https://github.com/libinotify-kqueue/libinotify-kqueue - -Add the following to `.bashrc`: - -```bash -# add /usr/local to pkg-config path -export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/opt/local/lib/pkgconfig -# libunistring doesn't support pkg-config, set overrides -export LIBUNISTRING_CFLAGS=-I/opt/local/include -export LIBUNISTRING_LIBS="-L/opt/local/lib -lunistring" -``` - -Optional features require the following additional ports: - - Feature | Configure argument | Ports - --------------------|--------------------------|------------------- - Chromecast | `--enable-chromecast` | gnutls - Pulseaudio | `--with-pulseaudio` | pulseaudio - -Clone the OwnTone repo: - -```bash -git clone https://github.com/owntone/owntone-server.git -cd owntone-server -``` - -Finally, configure, build and install, adding configure arguments for -optional features: - -```bash -autoreconf -i -./configure -make -sudo make install -``` - -Note: if for some reason you've installed the avahi port, you need to -add `--without-avahi` to configure above. - -Edit `/usr/local/etc/owntone.conf` and change the `uid` to a nice -system daemon (eg: unknown), and run the following: - -```bash -sudo mkdir -p /usr/local/var/run -sudo mkdir -p /usr/local/var/log # or change logfile in conf -sudo chown unknown /usr/local/var/cache/owntone # or change conf -``` - -Run OwnTone: - -```bash -sudo /usr/local/sbin/owntone -``` - -Verify it's running (you need to Ctrl+C to stop -dns-sd): - -```bash -dns-sd -B _daap._tcp -``` - -## Long version - requirements - -Required tools: - -- autotools: autoconf 2.63+, automake 1.10+, libtool 2.2. Run `autoreconf -i` - at the top of the source tree to generate the build system. -- gettext: libunistring requires iconv and gettext provides the autotools - macro definitions for iconv. -- gperf -- bison 3.0+ (yacc is not sufficient) -- flex (lex is not sufficient) - -Libraries: - -- Avahi client libraries (avahi-client), 0.6.24 minimum - from -- sqlite3 3.5.0+ with unlock notify API enabled (read below) - from -- ffmpeg (libav) - from -- libconfuse - from -- libevent 2.0+ (best with 2.1.4+) - from -- MiniXML (aka mxml or libmxml) - from -- gcrypt 1.2.0+ - from -- zlib - from -- libunistring 0.9.3+ - from -- libjson-c - from -- libcurl - from -- libplist 0.16+ - from -- libsodium - from -- libprotobuf-c - from -- libasound (optional - ALSA local audio) - often already installed as part of your distro -- libpulse (optional - Pulseaudio local audio) - from -- libspotify (optional - Spotify support) - (deprecated by Spotify) -- libgnutls (optional - Chromecast support) - from -- libwebsockets 2.0.2+ (optional - websocket support) - from - -If using binary packages, remember that you need the development packages to -build OwnTone (usually named -dev or -devel). - -sqlite3 needs to be built with support for the unlock notify API; this isn't -always the case in binary packages, so you may need to rebuild sqlite3 to -enable the unlock notify API (you can check for the presence of the -sqlite3_unlock_notify symbol in the sqlite3 library). Refer to the sqlite3 -documentation, look for `SQLITE_ENABLE_UNLOCK_NOTIFY`. - -## Long version - building and installing - -Start by generating the build system by running `autoreconf -i`. This will -generate the configure script and `Makefile.in`. - -To display the configure options `run ./configure --help`. - -Support for Spotify is optional. Use `--disable-spotify` to disable this feature. -OwnTone supports two ways of integrating with Spotify: Using its own, built-in -integration layer (which is the default), or to use Spotify's deprecated -libspotify. To enable the latter, you must configure with `--enable-libspotify` -and also make sure libspotify's `libspotify/api.h` is installed at compile time. -At runtime, libspotify must be installed, and `use_libspotify` must be enabled -in owntone.conf. OwnTone uses runtime dynamic linking to the libspotify library, -so even though you compiled with `--enable-libspotify`, the executable will -still be able to run on systems without libspotify. If you only want libspotify -integration, you can use `--disable-spotify` and `--enable-libspotify`. - -Support for LastFM scrobbling is optional. Use `--enable-lastfm` to enable this -feature. - -Support for the MPD protocol is optional. Use `--disable-mpd` to disable this -feature. - -Support for Chromecast devices is optional. Use `--enable-chromecast` to enable -this feature. - -The player web interface is optional. Use `--disable-webinterface` to disable -this feature. -If enabled, `sudo make install` will install the prebuild html, js, css files. -The prebuild files are: - -- `htdocs/index.html` -- `htdocs/player/*` - -The source for the player web interface is located under the `web-src` folder and -requires nodejs >= 6.0 to be built. In the `web-src` folder run `npm install` to -install all dependencies for the player web interface. After that run `npm run build`. -This will build the web interface and update the `htdocs` folder. -(See [README_PLAYER_WEBINTERFACE.md](README_PLAYER_WEBINTERFACE.md) for more -informations) - -Building with libwebsockets is required if you want the web interface. It will be enabled -if the library is present (with headers). Use `--without-libwebsockets` to disable. - -Building with Pulseaudio is optional. It will be enabled if the library is -present (with headers). Use `--without-pulseaudio` to disable. - -Recommended build settings: - -```bash -./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-install-user -``` - -After configure run the usual make, and if that went well, `sudo make install`. - -With the above configure arguments, a systemd service file will be installed to -`/etc/systemd/system/owntone.service` so that the server will start on boot. -Use `--disable-install-systemd` if you don't want that. - -Using `--enable-install-user` means that `make install` will also add a system -user and group for owntone. - -After installation: - -- edit the configuration file, `/etc/owntone.conf` -- make sure the Avahi daemon is installed and running (Debian: - `apt install avahi-daemon`) - -OwnTone will drop privileges to any user you specify in the configuration file -if it's started as root. - -This user must have read permission to your library and read/write permissions -to the database location (`$localstatedir/cache/owntone` by default). - +Instructions on how to install OwnTone can be found at diff --git a/Makefile.am b/Makefile.am index 7040bce6..4353801c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -23,12 +23,14 @@ dist_man_MANS = owntone.8 nobase_dist_doc_DATA = \ UPGRADING \ README.md \ - README_JSON_API.md \ - README_PULSE.md \ - README_ALSA.md \ - README_SMARTPL.md \ - README_PLAYER_WEBINTERFACE.md \ - README_RADIO_STREAMS.md \ + docs/index.md \ + docs/documentation.md \ + docs/installation.md \ + docs/outputs-pulse.md \ + docs/outputs-alsa.md \ + docs/smart-playlists.md \ + docs/web-interface.md \ + docs/radio-streams.md \ scripts/pairinghelper.sh EXTRA_DIST = \ diff --git a/README.md b/README.md index 84fb45a1..f146abe5 100644 --- a/README.md +++ b/README.md @@ -17,606 +17,10 @@ mt-daapd (Firefly Media Server). ## Looking for help? -Before you continue, make sure you know what version of OwnTone you have, -and what features it was built with (e.g. Spotify support). - -How to find out? Go to the [web interface](http://owntone.local:3689) and -check. No web interface? Then check the top of the log file (usually -/var/log/owntone.log). - -Note that you are viewing a snapshot of the instructions that may or may not -match the version that you are using. Go to [references](#references) to find -instructions for previous versions. +Visit the [OwnTone documentation](https://owntone.github.io/owntone-server/installation/) for +usage and set up instructions, API documentation, etc. If you are looking for help on building OwnTone (not using it), then -please see the [INSTALL.md](INSTALL.md) file. +please see the [Installation](https://owntone.github.io/owntone-server/installation/) +instructions. - -## Contents - -- [Getting started](#getting-started) -- [Supported clients](#supported-clients) -- [Web interface](#web-interface) -- [Using Remote](#using-remote) -- [AirPlay devices/speakers](#airplay-devicesspeakers) -- [Chromecast](#chromecast) -- [Local audio through ALSA](#local-audio-through-alsa) -- [Local audio, Bluetooth and more through Pulseaudio](#local-audio-bluetooth-and-more-through-pulseaudio) -- [MP3 network streaming (streaming to iOS)](#mp3-network-streaming-streaming-to-ios) -- [Remote access](#remote-access) -- [Supported formats](#supported-formats) -- [Playlists and internet radio](#playlists-and-internet-radio) -- [Artwork](#artwork) -- [Library](#library) -- [Command line](#command-line) -- [Spotify](#spotify) -- [LastFM](#lastfm) -- [MPD clients](#mpd-clients) -- [Running Multiple Instances](#running-multiple-instances) -- [References](#references) - - -## Getting started - -After installation (see [INSTALL.md](INSTALL.md)) do the following: - - 1. Edit the configuration file (usually `/etc/owntone.conf`) to suit your - needs - 2. Start or restart the server (usually `/etc/init.d/owntone restart`) - 3. Go to the web interface [http://owntone.local:3689](http://owntone.local:3689), - or, if that won't work, to [http://[your_server_address_here]:3689](http://[your_server_address_here]:3689) - 4. Wait for the library scan to complete - 5. If you will be using a remote, e.g. Apple Remote: Start the remote, go to - Settings, Add Library - 6. Enter the pair code in the web interface (update the page with F5 if it does - not automatically pick up the pairing request) - - -## Supported clients - -OwnTone supports these kinds of clients: - -- DAAP clients, like iTunes or Rhythmbox -- Remote clients, like Apple Remote or compatibles for Android/Windows Phone -- AirPlay devices, like AirPort Express, Shairport and various AirPlay speakers -- Chromecast devices -- MPD clients, like mpc (see [mpd-clients](#mpd-clients)) -- MP3 network stream clients, like VLC and almost any other music player -- RSP clients, like Roku Soundbridge - -Like iTunes, you can control OwnTone with Remote and stream your music to -AirPlay devices. - -A single OwnTone instance can handle several clients concurrently, regardless of -the protocol. - -By default all clients on 192.168.* (and the ipv6 equivalent) are allowed to -connect without authentication. You can change that in the configuration file. - -Here is a list of working and non-working DAAP and Remote clients. The list is -probably obsolete when you read it :-) - -| Client | Developer | Type | Platform | Working (vers.) | -| ------------------------ | ----------- | ------ | ------------- | --------------- | -| iTunes | Apple | DAAP | Win | Yes (12.10.1) | -| Apple Music | Apple | DAAP | MacOS | Yes | -| Rhythmbox | Gnome | DAAP | Linux | Yes | -| Diapente | diapente | DAAP | Android | Yes | -| WinAmp DAAPClient | WardFamily | DAAP | WinAmp | Yes | -| Amarok w/DAAP plugin | KDE | DAAP | Linux/Win | Yes (2.8.0) | -| Banshee | | DAAP | Linux/Win/OSX | No (2.6.2) | -| jtunes4 | | DAAP | Java | No | -| Firefly Client | | (DAAP) | Java | No | -| Remote | Apple | Remote | iOS | Yes (4.3) | -| Retune | SquallyDoc | Remote | Android | Yes (3.5.23) | -| TunesRemote+ | Melloware | Remote | Android | Yes (2.5.3) | -| Remote for iTunes | Hyperfine | Remote | Android | Yes | -| Remote for Windows Phone | Komodex | Remote | Windows Phone | Yes (2.2.1.0) | -| TunesRemote SE | | Remote | Java | Yes (r108) | -| rtRemote for Windows | bizmodeller | Remote | Windows | Yes (1.2.0.67) | - - -## Web interface - -You can find the web interface at [http://owntone.local:3689](http://owntone.local:3689) -or alternatively at [http://[your_server_address_here]:3689](http://[your_server_address_here]:3689). - -Use the web interface to control playback, trigger manual library rescans, pair -with remotes, select speakers, authenticate with Spotify, etc. - -You can find some screenshots and build instructions in [README_PLAYER_WEBINTERFACE.md](https://github.com/owntone/owntone-server/blob/master/README_PLAYER_WEBINTERFACE.md). - -## Using Remote - -Remote gets a list of output devices from the server; this list includes any -and all devices on the network we know of that advertise AirPlay: AirPort -Express, Apple TV, ... It also includes the local audio output, that is, the -sound card on the server (even if there is no soundcard). - -OwnTone remembers your selection and the individual volume for each -output device; selected devices will be automatically re-selected, except if -they return online during playback. - -### Pairing - - 1. Open the [web interface](http://owntone.local:3689) - 2. Start Remote, go to Settings, Add Library - 3. Enter the pair code in the web interface (update the page with F5 if it does - not automatically pick up the pairing request) - -If Remote doesn't connect to OwnTone after you entered the pairing code -something went wrong. Check the log file to see the error message. Here are -some common reasons: - -#### You did not enter the correct pairing code -You will see an error in the log about pairing failure with a HTTP response code -that is *not* 0. -Solution: Try again. - -#### No response from Remote, possibly a network issue -If you see an error in the log with either: - - a HTTP response code that is 0 - - "Empty pairing request callback" -it means that OwnTone could not establish a connection to Remote. This -might be a network issue, your router may not be allowing multicast between the -Remote device and the host OwnTone is running on. -Solution 1: Sometimes it resolves the issue if you force Remote to quit, restart -it and do the pairing proces again. Another trick is to establish some other -connection (eg SSH) from the iPod/iPhone/iPad to the host. -Solution 2: Check your router settings if you can whitelist multicast addresses -under IGMP settings. For Apple Bonjour, setting a multicast address of -224.0.0.251 and a netmask of 255.255.255.255 should work. - -Otherwise try using avahi-browse for troubleshooting: - - in a terminal, run `avahi-browse -r -k _touch-remote._tcp` - - start Remote, goto Settings, Add Library - - after a couple seconds at most, you should get something similar to this: - -``` -+ ath0 IPv4 59eff13ea2f98dbbef6c162f9df71b784a3ef9a3 _touch-remote._tcp local -= ath0 IPv4 59eff13ea2f98dbbef6c162f9df71b784a3ef9a3 _touch-remote._tcp local - hostname = [Foobar.local] - address = [192.168.1.1] - port = [49160] - txt = ["DvTy=iPod touch" "RemN=Remote" "txtvers=1" "RemV=10000" "Pair=FAEA410630AEC05E" "DvNm=Foobar"] -``` - -Hit Ctrl-C to terminate avahi-browse. - -To check for network issues you can try to connect to address and port with -telnet. - - -## AirPlay devices/speakers - -OwnTone will discover the AirPlay devices available on your network. For -devices that are password-protected, the device's AirPlay name and password -must be given in the configuration file. See the sample configuration file -for the syntax. - -If your Apple TV requires device verification (always required by Apple TV4 with -tvOS 10.2) then you can do that through Settings > Remotes & Outputs in the web -interface: Select the device and then enter the PIN that the Apple TV displays. - -If your speaker is silent when you start playback, and there is no obvious error -message in the log, you can try disabling ipv6 in the config. Some speakers -announce that they support ipv6, but in fact don't (at least not with forked- -daapd). - -If the speaker becomes unselected when you start playback, and you in the log -see "ANNOUNCE request failed in session startup: 400 Bad Request", then try -the Apple Home app > Allow Speakers & TV Access > Anyone On the Same Network -(or Everyone). - - -## Chromecast - -OwnTone will discover Chromecast devices available on your network, and you -can then select the device as a speaker. There is no configuration required. - - -## Local audio through ALSA - -In the config file, you can select ALSA for local audio. This is the default. - -When using ALSA, the server will try to syncronize playback with AirPlay. You -can adjust the syncronization in the config file. - -For most setups the default values in the config file should work. If they -don't, there is help here: [README_ALSA.md](https://github.com/owntone/owntone-server/blob/master/README_ALSA.md) - - -## Local audio, Bluetooth and more through Pulseaudio - -In the config file, you can select Pulseaudio for local audio. In addition to -local audio, Pulseaudio also supports an array of other targets, e.g. Bluetooth -or DLNA. However, Pulseaudio does require some setup, so here is a separate page -with some help on that: [README_PULSE.md](https://github.com/owntone/owntone-server/blob/master/README_PULSE.md) - -Note that if you select Pulseaudio the "card" setting in the config file has -no effect. Instead all soundcards detected by Pulseaudio will be listed as -speakers by OwnTone. - -You can adjust the latency of Pulseaudio playback in the config file. - - -## MP3 network streaming (streaming to iOS) - -You can listen to audio being played by OwnTone by opening this network -stream address in pretty much any music player: - - http://[your hostname/ip address]:3689/stream.mp3 - -This is currently the only way of listening to your audio on iOS devices, since -Apple does not allow AirPlay receiver apps, and because Apple Home Sharing -cannot be supported by OwnTone. So what you can do instead is install a -music player app like VLC, connect to the stream and control playback with -Remote. - -In the speaker selection list, clicking on the icon should start the stream -playing in the background on browsers that support that. - -Note that MP3 encoding must be supported by ffmpeg/libav for this to work. If -it is not available you will see a message in the log file. In Debian/Ubuntu you -get MP3 encoding support by installing the package "libavcodec-extra". - - -## Remote access - -It is possible to access a shared library over the internet from a DAAP client -like iTunes. You must have remote access to the host machine. - -First log in to the host and forward port 3689 to your local machine. You now -need to broadcast the daap service to iTunes on your local machine. On macOS the -command is: - -``` -dns-sd -P iTunesServer _daap._tcp local 3689 localhost.local 127.0.0.1 "ffid=12345" -``` - -The `ffid` key is required but its value does not matter. - -Your library will now appear as 'iTunesServer' in iTunes. - -You can also access your library remotely using something like Zerotier. See [this -guide](https://github.com/owntone/owntone-server/wiki/Accessing-Owntone-remotely-through-iTunes-Music-with-Zerotier) -for details. - - -## Supported formats - -OwnTone should support pretty much all audio formats. It relies on libav -(or ffmpeg) to extract metadata and decode the files on the fly when the client -doesn't support the format. - -Formats are attributed a code, so any new format will need to be explicitely -added. Currently supported: - - MPEG4: mp4a, mp4v - - AAC: alac - - MP3 (and friends): mpeg - - FLAC: flac - - OGG VORBIS: ogg - - Musepack: mpc - - WMA: wma (WMA Pro), wmal (WMA Lossless), wmav (WMA video) - - AIFF: aif - - WAV: wav - - Monkey's audio: ape - - -## Playlists and internet radio - -OwnTone supports M3U and PLS playlists. Just drop your playlist somewhere -in your library with an .m3u or .pls extension and it will pick it up. - -From the web interface, and some mpd clients, you can also create and modify -playlists by saving the current queue. Click the "Save" button. Note that this -requires that `allow_modifying_stored_playlists` is enabled in the configuration -file, and that the server has write access to `default_playlist_directory`. - -If the playlist contains an http URL it will be added as an internet radio -station, and the URL will be probed for Shoutcast (ICY) metadata. If the radio -station provides artwork, OwnTone will download it during playback and send -it to any remotes or AirPlay devices requesting it. - -Instead of downloading M3U's from your radio stations, you can also make an -empty M3U file and insert links in it to the M3U's of your radio stations. - -Radio streams can only be played by OwnTone, so that means they will not be -available to play in DAAP clients like iTunes. - -The server can import playlists from iTunes Music Library XML files. By default, -metadata from our parsers is preferred over what's in the iTunes DB; use -itunes_overrides = true if you prefer iTunes' metadata. - -OwnTone has support for smart playlists. How to create a smart playlist is -documented in -[README_SMARTPL.md](https://github.com/owntone/owntone-server/blob/master/README_SMARTPL.md). - -If you're not satisfied with internet radio metadata that OwnTone shows, -then you can read about tweaking it in -[README_RADIO_STREAMS.md](https://github.com/owntone/owntone-server/blob/master/README_RADIO_STREAMS.md). - - -## Artwork - -OwnTone has support for PNG and JPEG artwork which is either: - - embedded in the media files - - placed as separate image files in the library - - made available online by the radio station - -For media in your library, OwnTone will try to locate album and artist -artwork (group artwork) by the following procedure: - - if a file {artwork,cover,Folder}.{png,jpg} is found in one of the directories - containing files that are part of the group, it is used as the artwork. The - first file found is used, ordering is not guaranteed; - - failing that, if [directory name].{png,jpg} is found in one of the - directories containing files that are part of the group, it is used as the - artwork. The first file found is used, ordering is not guaranteed; - - failing that, individual files are examined and the first file found - with an embedded artwork is used. Here again, ordering is not guaranteed. - -{artwork,cover,Folder} are the default, you can add other base names in the -configuration file. Here you can also enable/disable support for individual -file artwork (instead of using the same artwork for all tracks in an entire -album). - -For playlists in your library, say /foo/bar.m3u, then for any http streams in -the list, OwnTone will look for /foo/bar.{jpg,png}. - -You can use symlinks for the artwork files. - -OwnTone caches artwork in a separate cache file. The default path is -`/var/cache/owntone/cache.db` and can be configured in the configuration -file. The cache.db file can be deleted without losing the library and pairing -informations. - - -## Library - -The library is scanned in bulk mode at startup, but the server will be available -even while this scan is in progress. You can follow the progress of the scan in -the log file or via the web interface. When the scan is complete you will see -the log message: "Bulk library scan completed in X sec". - -The very first scan will take longer than subsequent startup scans, since every -file gets analyzed. At the following startups the server looks for changed files -and only analyzis those. - -Updates to the library are reflected in real time after the initial scan, so you -do not need to manually start rescans. The directories are monitored for changes -and rescanned on the fly. Note that if you have your library on a network mount -then real time updating may not work. Read below about what to do in that case. - -If you change any of the directory settings in the library section of the -configuration file a rescan is required before the new setting will take effect. -You can do this by using "Update library" from the web interface. - -Symlinks are supported and dereferenced, but it is best to use them for -directories only. - - -### Pipes (for e.g. multiroom with Shairport-sync) - -Some programs, like for instance Shairport-sync, can be configured to output -audio to a named pipe. If this pipe is placed in the library, OwnTone will -automatically detect that it is there, and when there is audio being written to -it, playback of the audio will be autostarted (and stopped). - -Using this feature, OwnTone can act as an AirPlay multiroom "router": You can -have an AirPlay source (e.g. your iPhone) send audio Shairport-sync, which -forwards it to OwnTone through the pipe, which then plays it on whatever -speakers you have selected (through Remote). - -The format of the audio being written to the pipe must be PCM16. - -You can also start playback of pipes manually. You will find them in remotes -listed under "Unknown artist" and "Unknown album". The track title will be the -name of the pipe. - -Shairport-sync can write metadata to a pipe, and OwnTone can read this. -This requires that the metadata pipe has the same filename as the audio pipe -plus a ".metadata" suffix. Say Shairport-sync is configured to write audio to -"/foo/bar/pipe", then the metadata pipe should be "/foo/bar/pipe.metadata". - - -### Libraries on network mounts - -Most network filesharing protocols do not offer notifications when the library -is changed. So that means OwnTone cannot update its database in real time. -Instead you can schedule a cron job to update the database. - -The first step in doing this is to add two entries to the 'directories' -configuration item in owntone.conf: - -``` - directories = { "/some/local/dir", "/your/network/mount/library" } -``` - -Now you can make a cron job that runs this command: - -``` - touch /some/local/dir/trigger.init-rescan -``` - -When OwnTone detects a file with filename ending .init-rescan it will -perform a bulk scan similar to the startup scan. - -Alternatively, you can force a metadata scan of the library even if the -files have not changed by creating a filename ending `.meta-rescan`. - - -### Troubleshooting library issues - -If you place a file with the filename ending .full-rescan in your library, -you can trigger a full rescan of your library. This will clear all music and -playlists from OwnTone's database and initiate a fresh bulk scan. Pairing -and speaker information will be kept. Only use this for troubleshooting, it is -not necessary during normal operation. - - -## Command line - -You can choose between: - -- a [MPD command line client](#mpd-clients) (easiest) like `mpc` -- curl with OwnTone's JSON API (see [README_JSON_API.md](https://github.com/owntone/owntone-server/blob/master/README_JSON_API.md)) -- curl with DAAP/DACP commands (hardest) - -Here is an example of how to use curl with DAAP/DACP. Say you have a playlist -with a radio station, and you want to make a script that starts playback of that -station: - -1. Run `sqlite3 [your OwnTone db]`. Use `select id,title from files` to get - the id of the radio station, and use `select id,title from playlists` to get - the id of the playlist. -2. Convert the two ids to hex. -3. Put the following lines in the script with the relevant ids inserted (also - observe that you must use a session-id < 100, and that you must login and - logout): - -``` -curl "http://localhost:3689/login?pairing-guid=0x1&request-session-id=50" -curl "http://localhost:3689/ctrl-int/1/playspec?database-spec='dmap.persistentid:0x1'&container-spec='dmap.persistentid:0x[PLAYLIST-ID]'&container-item-spec='dmap.containeritemid:0x[FILE ID]'&session-id=50" -curl "http://localhost:3689/logout?session-id=50" -``` - - -## Spotify - -OwnTone has built-in support for playback of the tracks in your Spotify library. - -You must have a Spotify premium account. If you normally log into Spotify with -your Facebook account you must first go to Spotify's web site where you can get -the Spotify username and password that matches your account. - -You must also make sure that your browser can reach OwnTone's web interface via -the address [http://owntone.local:3689](http://owntone.local:3689). Try it right -now! That is where Spotify's OAuth page will redirect your browser with the -token that OwnTone needs, so it must work. The address is announced by the -server via mDNS, but if that for some reason doesn't work then configure it via -router or .hosts file. You can remove it again after completing the login. - -To authorize OwnTone, open the web interface, locate Settings > Online Services -and then click the Authorize button. You will then be sent to Spotify's -authorization service, which will send you back to the web interface after -you have given the authorization. - -Spotify no longer automatically notifies clients about library updates, so you -have to trigger updates manually. You can for instance set up a cron job that -runs `/usr/bin/curl http://localhost:3689/api/update` - -To logout and remove Spotify tracks + credentials make a request to -[http://[your_server_address_here]:3689/api/spotify-logout](http://[your_server_address_here]:3689/api/spotify-logout). - -Limitations: -You will not be able to do any playlist management through OwnTone - use -a Spotify client for that. You also can only listen to your music by letting -OwnTone do the playback - so that means you can't stream to DAAP clients (e.g. -iTunes) and RSP clients. - -### Via librespot/spocon - -You can also use OwnTone with one of the various incarnations of -[librespot](https://github.com/librespot-org/librespot). This adds librespot as -a selectable metaspeaker in Spotify's client, and when you start playback, -librespot can be configured to start writing audio to a pipe that you have added -to your library. This will be detected by OwnTone that then starts playback. -You can also have a pipe for metadata and playback events, e.g. volume changes. - -The easiest way of accomplishing this may be with [Spocon](https://github.com/spocon/spocon), -since it requires minimal configuration. After installing, create two pipes -(with mkfifo) and set the configuration in the player section: - -``` -# Audio output device (MIXER, PIPE, STDOUT) -output = "PIPE" -# Output raw (signed) PCM to this file (`player.output` must be PIPE) -pipe = "/srv/music/spotify" -# Output metadata in Shairport Sync format (https://github.com/mikebrady/shairport-sync-metadata-reader) -metadataPipe = "/srv/music/spotify.metadata" -``` - -### Via libspotify - -This method is being deprecated, but is still available if the server was built -with it, libspotify is installed and `use_libspotify` is enabled in the config -file. Please consult [previous README versions](#references) for details on -using libspotify. - - -## LastFM - -You can have OwnTone scrobble the music you listen to. To set up scrobbling -go to the web interface and authorize OwnTone with your LastFM credentials. - -OwnTone will not store your LastFM username/password, only the session key. -The session key does not expire. - - -## MPD clients - -You can - to some extent - use clients for MPD to control OwnTone. - -By default OwnTone listens on port 6600 for MPD clients. You can change -this in the configuration file. - -Currently only a subset of the commands offered by MPD (see [MPD protocol documentation](http://www.musicpd.org/doc/protocol/)) -are supported. - -Due to some differences between OwnTone and MPD not all commands will act the -same way they would running MPD: - -- crossfade, mixrampdb, mixrampdelay and replaygain will have no effect -- single, repeat: unlike MPD, OwnTone does not support setting single and repeat separately - on/off, instead repeat off, repeat all and repeat single are supported. Thus setting single on - will result in repeat single, repeat on results in repeat all. - -The following table shows what is working for a selection of MPD clients: - -| Client | Type | Status | -| --------------------------------------------- | ------ | --------------- | -| [mpc](http://www.musicpd.org/clients/mpc/) | CLI | Working commands: mpc, add, crop, current, del (ranges are not yet supported), play, next, prev (behaves like cdprev), pause, toggle, cdprev, seek, clear, outputs, enable, disable, playlist, ls, load, volume, repeat, random, single, search, find, list, update (initiates an init-rescan, the path argument is not supported) | -| [ympd](http://www.ympd.org/) | Web | Everything except "add stream" should work | - -## Running Multiple Instances - -To run multiple instances of owntone on a server, you should copy -`/etc/owntone.conf` to `/etc/owntone-zone.conf` (for each `zone`) and -modify the following to be unique across all instances: - -* the three port settings (`general` -> `websocket_port`, - `library` -> `port`, and `mpd` -> `port`) - -* the database paths (`general` -> `db_path`, `db_backup_path`, and `db_cache_path`) - -* the service name (`library` -> `name`). - -* you probably also want to disable local output (set `audio` -> `type = - "disabled"`). - -Then run `owntone -c /etc/owntone-zone.conf` to run owntone with the new -zone configuration. - -Owntone has a `systemd` template which lets you run this automatically -on systems that use systemd. You can start or enable the service for -a `zone` by `sudo systemctl start owntone@zone` and check that it is -running with `sudo systemctl status owntone@zone`. Use `sudo -systemctl enable ownton@zone` to get the service to start on reboot. - -## References - -The source for this version of OwnTone can be found here: - - [https://github.com/owntone/owntone-server.git](https://github.com/owntone/owntone-server.git) - -README's for current and previous versions of OwnTone: - - [OwnTone version 28.3](https://github.com/owntone/owntone-server/blob/28.3/README.md) - - [OwnTone version 28.2](https://github.com/owntone/owntone-server/blob/28.2/README.md) - - [OwnTone version 28.1](https://github.com/owntone/owntone-server/blob/28.1/README.md) - -README from when OwnTone was forked-daapd: - - [forked-daapd version 27.4](https://github.com/owntone/owntone-server/blob/27.4/README.md) diff --git a/README_ALSA.md b/README_ALSA.md deleted file mode 100644 index 393af0af..00000000 --- a/README_ALSA.md +++ /dev/null @@ -1,448 +0,0 @@ -# OwnTone and ALSA - -ALSA is one of the main output configuration options for local audio; when using ALSA you will typically let the system select the soundcard on your machine as the `default` device/sound card - a mixer associated with the ALSA device is used for volume control. However if your machine has multiple sound cards and your system chooses the wrong playback device, you will need to manually select the card and mixer to complete the OwnTone configuration. - -## Quick introduction to ALSA devices -ALSA devices can be addressed in a number ways but traditionally we have referred to them using the hardware prefix, card number and optionally device number with something like `hw:0` or `hw:0,1`. In ALSA configuration terms `card X, device Y` is known as `hw:X,Y`. - -ALSA has other _prefixes_ for each card and most importantly `plughw`. The `plughw` performs transparent sample format and sample rate conversions and maybe a better choice for many users rather than `hw:` which would fail when provided unsupported audio formats/sample rates. - -Alternative ALSA names can be used to refer to physical ALSA devices and can be useful in a number of ways: -* more descriptive rather than being a card number -* consistent for USB numeration - USB ALSA devices may not have the same card number across reboots/reconnects - -The ALSA device information required for configuration the server can be deterined using `aplay`, as described in the rest of this document, but OwnTone can also assist; when configured to log at `INFO` level the following information is provided during startup: -``` -laudio: Available ALSA playback mixer(s) on hw:0 CARD=Intel (HDA Intel): 'Master' 'Headphone' 'Speaker' 'PCM' 'Mic' 'Beep' -laudio: Available ALSA playback mixer(s) on hw:1 CARD=E30 (E30): 'E30 ' -laudio: Available ALSA playback mixer(s) on hw:2 CARD=Seri (Plantronics Blackwire 3210 Seri): 'Sidetone' 'Headset' -``` -The `CARD=` string is the alternate ALSA name for the device and can be used in place of the traditional `hw:x` name. - -On this machine the server reports that it can see the onboard HDA Intel sound card and two additional sound cards: a Topping E30 DAC and a Plantronics Headset which are both USB devices. We can address the first ALSA device as `hw:0` or `hw:CARD=Intel` or `hw:Intel` or `plughw:Intel`, the second ALSA device as `hw:1` or `hw:E30` and so forth. The latter 2 devices being on USB will mean that `hw:1` may not always refer to `hw:E30` and thus in such a case using the alternate name is useful. - -## Configuring the server -OwnTone can support a single ALSA device or multiple ALSA devices. -``` -# example audio section for server for a single soundcard -audio { - nickname = "Computer" - type = "alsa" - - card = "hw:1" # defaults to 'default' - mixer = "Analogue" # defaults to 'PCM' or 'Master' - mixer_device = "hw:1" # defaults to same as 'card' value -} -``` -Multiple devices can be made available to OwnTone using seperate `alsa { .. }` sections. -``` -audio { - type = "alsa" -} - -alsa "hw:1" { - nickname = "Computer" - mixer = "Analogue" - mixer_device = "hw:1" -} - -alsa "hw:2" { - nickname = "Second ALSA device" -} -``` -NB: When introducing `alsa { .. }` section(s) the ALSA specific configuration in the `audio { .. }` section will be ignored. - -If there is only one sound card, verify if the `default` sound device is correct for playback, we will use the `aplay` utility. - -``` -# generate some audio if you don't have a wav file to hand -$ sox -n -c 2 -r 44100 -b 16 -C 128 /tmp/sine441.wav synth 30 sin 500-100 fade h 0.2 30 0.2 - -$ aplay -Ddefault /tmp/sine441.wav -``` -If you can hear music played then you are good to use `default` for the server configuration. If you can not hear anything from the `aplay` firstly verify (using `alsamixer`) that the sound card is not muted. If the card is not muted AND there is no sound you can try the options below to determine the card and mixer for configuring the server. - -## Automatically Determine ALL relevant the sound card information -As shown above, OwnTone can help, consider the information that logged: -``` -laudio: Available ALSA playback mixer(s) on hw:0 CARD=Intel (HDA Intel): 'Master' 'Headphone' 'Speaker' 'PCM' 'Mic' 'Beep' -laudio: Available ALSA playback mixer(s) on hw:1 CARD=E30 (E30): 'E30 ' -laudio: Available ALSA playback mixer(s) on hw:2 CARD=Seri (Plantronics Blackwire 3210 Seri): 'Sidetone' 'Headset' -``` -Using the information above, we can see 3 soundcards that we could use with OwnTone with the first soundcard having a number of seperate mixer devices (volume control) for headphone and the interal speakers - we'll configure the server to use both these and also the E30 device. The server configuration for theese multiple outputs would be: -``` -# using ALSA device alias where possible - -alsa "hw:Intel" { - nickname = "Computer - Speaker" - mixer = "Speaker" -} - -alsa "hw:Intel" { - nickname = "Computer - Headphones" - mixer = "Headphone" -} - -alsa "plughw:E30" { - # this E30 device only support S32_LE so we can use the 'plughw' prefix to - # add transparent conversion support of more common S16/S24_LE formats - - nickname = "E30 DAC" - mixer = "E30 " - mixer_device = "hw:E30" -} -``` -NB: it is troublesome to use `hw` or `plughw` ALSA addressing when running OwnTone on a machine with `pulseaudio` and if you wish to use refer to ALSA devices directly that you stop `pulseaudio`. - -## Manually Determining the sound cards you have / ALSA can see -The example below is how I determined the correct sound card and mixer values for a Raspberry Pi that has an additional DAC card (hat) mounted. Of course using the log output from the server would have given the same results. - -Use `aplay -l` to list all the sound cards and their order as known to the system - you can have multiple `card X, device Y` entries; some cards can also have multiple playback devices such as the RPI's onboard soundcard which feeds both headphone (card 0, device 0) and HDMI (card 0, device 1). -``` -$ aplay -l -**** List of PLAYBACK Hardware Devices **** -card 0: ALSA [bcm2835 ALSA], device 0: bcm2835 ALSA [bcm2835 ALSA] - Subdevices: 6/7 - Subdevice #0: subdevice #0 - Subdevice #1: subdevice #1 - Subdevice #2: subdevice #2 - Subdevice #3: subdevice #3 - Subdevice #4: subdevice #4 - Subdevice #5: subdevice #5 - Subdevice #6: subdevice #6 -card 0: ALSA [bcm2835 ALSA], device 1: bcm2835 ALSA [bcm2835 IEC958/HDMI] - Subdevices: 1/1 - Subdevice #0: subdevice #0 -card 1: IQaudIODAC [IQaudIODAC], device 0: IQaudIO DAC HiFi pcm512x-hifi-0 [] - Subdevices: 1/1 - Subdevice #0: subdevice #0 -``` -On this machine we see the second sound card installed, an IQaudIODAC dac hat, and identified as `card 1 device 0`. This is the playback device we want to be used by the server. - -`hw:1,0` is the IQaudIODAC that we want to use - we verify audiable playback through that sound card using `aplay -Dhw:1 /tmp/sine441.wav`. If the card has only one device, we can simply refer to the sound card using `hw:X` so in this case where the IQaudIODAC only has one device, we can refer to this card as `hw:1` or `hw:1,0`. - -Use `aplay -L` to get more information about the PCM devices defined on the system. -``` -$ aplay -L -null - Discard all samples (playback) or generate zero samples (capture) -default:CARD=ALSA - bcm2835 ALSA, bcm2835 ALSA - Default Audio Device -sysdefault:CARD=ALSA - bcm2835 ALSA, bcm2835 ALSA - Default Audio Device -dmix:CARD=ALSA,DEV=0 - bcm2835 ALSA, bcm2835 ALSA - Direct sample mixing device -dmix:CARD=ALSA,DEV=1 - bcm2835 ALSA, bcm2835 IEC958/HDMI - Direct sample mixing device -dsnoop:CARD=ALSA,DEV=0 - bcm2835 ALSA, bcm2835 ALSA - Direct sample snooping device -dsnoop:CARD=ALSA,DEV=1 - bcm2835 ALSA, bcm2835 IEC958/HDMI - Direct sample snooping device -hw:CARD=ALSA,DEV=0 - bcm2835 ALSA, bcm2835 ALSA - Direct hardware device without any conversions -hw:CARD=ALSA,DEV=1 - bcm2835 ALSA, bcm2835 IEC958/HDMI - Direct hardware device without any conversions -plughw:CARD=ALSA,DEV=0 - bcm2835 ALSA, bcm2835 ALSA - Hardware device with all software conversions -plughw:CARD=ALSA,DEV=1 - bcm2835 ALSA, bcm2835 IEC958/HDMI - Hardware device with all software conversions -default:CARD=IQaudIODAC - IQaudIODAC, - Default Audio Device -sysdefault:CARD=IQaudIODAC - IQaudIODAC, - Default Audio Device -dmix:CARD=IQaudIODAC,DEV=0 - IQaudIODAC, - Direct sample mixing device -dsnoop:CARD=IQaudIODAC,DEV=0 - IQaudIODAC, - Direct sample snooping device -hw:CARD=IQaudIODAC,DEV=0 - IQaudIODAC, - Direct hardware device without any conversions -plughw:CARD=IQaudIODAC,DEV=0 - IQaudIODAC, - Hardware device with all software conversions -``` -For the server configuration, we will use: -``` -audio { - nickname = "Computer" - type = "alsa" - card="hw:1" - # mixer=TBD - # mixer_device=TBD -} -``` - -## Mixer name - -Once you have the card number (determined from `aplay -l`) we can inspect/confirm the name of the mixer that can be used for playback (it may NOT be `PCM` as expected by the server). In this example, the card `1` is of interest and thus we use `-c 1` with the following command: -``` -$ amixer -c 1 -Simple mixer control 'DSP Program',0 - Capabilities: enum - Items: 'FIR interpolation with de-emphasis' 'Low latency IIR with de-emphasis' 'High attenuation with de-emphasis' 'Fixed process flow' 'Ringing-less low latency FIR' - Item0: 'Ringing-less low latency FIR' -Simple mixer control 'Analogue',0 - Capabilities: pvolume - Playback channels: Front Left - Front Right - Limits: Playback 0 - 1 - Mono: - Front Left: Playback 1 [100%] [0.00dB] - Front Right: Playback 1 [100%] [0.00dB] -Simple mixer control 'Analogue Playback Boost',0 - Capabilities: volume - Playback channels: Front Left - Front Right - Capture channels: Front Left - Front Right - Limits: 0 - 1 - Front Left: 0 [0%] [0.00dB] - Front Right: 0 [0%] [0.00dB] -... -``` - -This card has multiple controls but we want to find a mixer control listed with a `pvolume` (playback) capability - in this case that mixer value required for the server configuration is called `Analogue`. - -For the server configuration, we will use: -``` -audio { - nickname = "Computer" - type = "alsa" - card="hw:1" - mixer="Analogue" - # mixer_device=TBD -} -``` - -## Mixer device -This is the name of the underlying physical device used for the mixer - it is typically the same value as the value of `card` in which case a value is not required by the server configuration. An example of when you want to change explicitly configure this is if you need to use a `dmix` device (see below). - - -## Handling Devices that cannot concurrently play multiple audio streams - -Some devices such as various RPI DAC boards (IQaudio DAC, Allo Boss DAC...) cannot have multiple streams openned at the same time/cannot play multiple sound files at the same time. This results in `Device or resource busy` errors. You can confirm if your sound card has this problem by using the example below once have determined the names/cards information as above. - -Using our `hw:1` device we try: - -``` -# generate some audio -$ sox -n -c 2 -r 44100 -b 16 -C 128 /tmp/sine441.wav synth 30 sin 500-100 fade h 0.2 30 0.2 - -# attempt to play 2 files at the same time -$ aplay -v -Dhw:1 /tmp/sine441.wav & -Playing WAVE '/tmp/sine441.wav' : Signed 16 bit Little Endian, Rate 44100 Hz, Stereo -Hardware PCM card 1 'IQaudIODAC' device 0 subdevice 0 -Its setup is: - stream : PLAYBACK - access : RW_INTERLEAVED - format : S16_LE - subformat : STD - channels : 2 - rate : 44100 - exact rate : 44100 (44100/1) - msbits : 16 - buffer_size : 22052 - period_size : 5513 - period_time : 125011 - tstamp_mode : NONE - tstamp_type : MONOTONIC - period_step : 1 - avail_min : 5513 - period_event : 0 - start_threshold : 22052 - stop_threshold : 22052 - silence_threshold: 0 - silence_size : 0 - boundary : 1445199872 - appl_ptr : 0 - hw_ptr : 0 -$ aplay -v -Dhw:1 /tmp/sine441.wav -aplay: main:788: audio open error: Device or resource busy -``` - -In this instance this device cannot open multiple streams - OwnTone can handle this situation transparently with some audio being truncated from the end of the current file as the server prepares to play the following track. If this handling is causing you problems you may wish to use [ALSA's `dmix` functionally](https://www.alsa-project.org/main/index.php/Asoundrc#Software_mixing) which provides a software mixing module. We will need to define a `dmix` component and configure the server to use that as it's sound card. - -The downside to the `dmix` approach will be the need to fix a samplerate (48000 being the default) for this software mixing module meaning any files that have a mismatched samplerate will be resampled. - -## ALSA dmix configuration/setup - -A `dmix` device can be defined in `/etc/asound.conf` or `~/.asoundrc` for the same user running OwnTone. We will need to know the underlying physical soundcard to be used: in our examples above, `hw:1,0` / `card 1, device 0` representing our IQaudIODAC as per output of `aplay -l`. We also take the `buffer_size` and `period_size` from the output of playing a sound file via `aplay -v`. - -``` -# use 'dac' as the name of the device: "aplay -Ddac ...." -pcm.!dac { - type plug - slave.pcm "dmixer" - hint.description "IQAudio DAC s/w dmix enabled device" -} - -pcm.dmixer { - type dmix - ipc_key 1024 # need to be uniq value - ipc_key_add_uid false # multiple concurrent different users - ipc_perm 0666 # multi-user sharing permissions - - slave { - pcm "hw:1,0" # points at the underlying device - could also simply be hw:1 - period_time 0 - period_size 4096 # from the output of aplay -v - buffer_size 22052 # from the output of aplay -v - rate 44100 # locked in sample rate for resampling on dmix device - } - hint.description "IQAudio DAC s/w dmix device" -} - -ctl.dmixer { - type hw - card 1 # underlying device - device 0 -} - -``` -Running `aplay -L` we will see our newly defined devices `dac` and `dmixer` -``` -$ aplay -L -null - Discard all samples (playback) or generate zero samples (capture) -dac - IQAudio DAC s/w dmix enabled device -dmixer - IQAudio DAC s/w dmix device -default:CARD=ALSA - bcm2835 ALSA, bcm2835 ALSA - Default Audio Device -... -``` -At this point we are able to rerun the concurrent `aplay` commands (adding `-Ddac` to specify the playback device to use) to verify ALSA configuration. - -If there is only one card on the machine you may use `pcm.!default` instead of `pcm.!dac` - there is less configuration to be done later since many ALSA applications will use the device called `default` by default. Furthermore on RPI you can explicitly disable the onboard sound card to leave us with only the IQaudIODAC board enabled (won't affect HDMI sound output) by commenting out `#dtparam=audio=on` in `/boot/config.txt` and rebooting. - -### Config with dmix - -We will use the newly defined card named `dac` which uses the underlying `hw:1` device as per `/etc/asound.conf` or `~/.asoundrc` configuration. Note that the `mixer_device` is now required and must refer to the real device (see the `slave.pcm` value) and not the named device (ie `dac`) that we created and are using for the `card` configuration value. - -For the final server configuration, we will use: -``` -audio { - nickname = "Computer" - type = "alsa" - card="dac" - mixer="Analogue" - mixer_device="hw:1" -} -``` - -## Setting up an Audio Equalizer -There exists an ALSA equalizer plugin. On `debian` (incl Raspberry Pi) systems you can install this plugin by `apt install libasound2-plugin-equal`; this is not currently available on Fedora (FC31) but can be easily built from [source](https://github.com/raedwulf/alsaequal) after installing the dependant `ladspa` package. - -Once installed the user must setup a virtual device and use this device in the server configuration. - -If you wish to use your `hw:0` device for output: -``` -# /etc/asound.conf -ctl.equal { - type equal; - - # library /usr/lib64/ladspa/caps.so -} - -pcm.equal { - type plug; - slave.pcm { - type equal; - - ## must be plughw:x,y and not hw:x,y - slave.pcm "plughw:0,0"; - - # library /usr/lib64/ladspa/caps.so - } - hint.description "equalised device" -} -``` -and in `owntone.conf` -``` -alsa "equal" { - nickname = "Equalised Output" - # adjust accordingly for mixer with pvolume capability - mixer = "PCM" - mixer_device = "hw:0" -} -``` -Using the web UI and on the outputs selection you should see an output called `Equalised Output` which you should select and set the volume. - -When starting playback for any audio tracks you should hopefully hear the output. In a terminal, run `alsamixer -Dequal` and you'll see the eqaliser - to test that this is all working, go and drop the upper frequencies and boosting the bass frequencies and give it a second - if this changes the sound profile from your speakers, well done, its done and you can adjust the equalizer as you desire. - -Note however, the equalizer appears to require a `plughw` device which means you cannnot use this equalizer with a `dmix` output chain. - -# Troubleshooting - -* Errors in log `Failed to open configured mixer element` when selecting output device -* Errors in log `Invalid CTL` or `Failed to attach mixer` when playing/adjusting volume -`mixer` value is wrong. Verify name of `mixer` value in server config against the names from all devices capable of playback using `amixer -c `. Assume the device is card 1: -``` -(IFS=$'\n' - CARD=1 - for i in $(amixer -c ${CARD} scontrols | awk -F\' '{ print $2 }'); do - amixer -c ${CARD} sget "$i" | grep Capabilities | grep -q pvolume && echo $i - done -) -``` -Look at the names output and choose the one that fits. The outputs can be something like: -``` -# laptop -Master -Headphone -Speaker -PCM -Mic -Beep - -# RPI with no additional DAC, card = 0 -PCM - -# RPI with additional DAC hat (IQAudioDAC, using a pcm512x chip) -Analogue -Digital -``` - -* No sound during playback - valid mixer/verified by aplay -Check that the mixer is not muted or volume set to 0. Using the value of `mixer` as per server config and unmute or set volume to max. Assume the device is card 1 and `mixer = Analogue`: -``` -amixer -c 1 set Analogue unmute ## some mixers can not be muted resulting in "invalid command" -amixer -c 1 set Analogue 100% -``` -An example of a device with volume turned all the way down - notice the `Playback` values are `0`[0%]`: -``` -Simple mixer control 'Analogue',0 -Capabilities: pvolume -Playback channels: Front Left - Front Right -Limits: Playback 0 - 1 -Mono: -Front Left: Playback 0 [0%] [-6.00dB] -Front Right: Playback 0 [0%] [-6.00dB] -``` - -* Server stops playing after moving to new track in paly queue, Error in log `Could not open playback device` -The log contains these log lines: -``` -[2019-06-19 20:52:51] [ LOG] laudio: open '/dev/snd/pcmC0D0p' failed (-16)[2019-06-19 20:52:51] [ LOG] laudio: Could not open playback device: Device or resource busy -[2019-06-19 20:52:51] [ LOG] laudio: Device 'hw' does not support quality (48000/16/2), falling back to default -[2019-06-19 20:52:51] [ LOG] laudio: open '/dev/snd/pcmC0D0p' failed (-16)[2019-06-19 20:52:51] [ LOG] laudio: Could not open playback device: Device or resource busy -[2019-06-19 20:52:51] [ LOG] laudio: ALSA device failed setting fallback quality[2019-06-19 20:52:51] [ LOG] player: The ALSA device 'Computer' FAILED -``` -If you have a RPI with a DAC hat with a `pcm512x` chip will affect you. This is because the server wants to open the audio device for the next audio track whilst current track is still playing but the hardware does not allow this - see the comments above regarding determining concurrrent playback. - -This error will occur for output hardware that do not support concurrent device open and the server plays 2 files of different bitrate (44.1khz and 48khz) back to back. - -If you observe the error, you will need to use the `dmix` configuration as mentioned above. diff --git a/README_JSON_API.md b/README_JSON_API.md deleted file mode 100644 index f3d1d164..00000000 --- a/README_JSON_API.md +++ /dev/null @@ -1,2651 +0,0 @@ -# OwnTone API Endpoint Reference - -Available API endpoints: - -* [Player](#player): control playback, volume, shuffle/repeat modes -* [Outputs / Speakers](#outputs--speakers): list available outputs and enable/disable outputs -* [Queue](#queue): list, add or modify the current queue -* [Library](#library): list playlists, artists, albums and tracks from your library or trigger library rescan -* [Search](#search): search for playlists, artists, albums and tracks -* [Server info](#server-info): get server information -* [Settings](#settings): list and change settings for the player web interface -* [Push notifications](#push-notifications): receive push notifications - -JSON-Object model: - -* [Queue item](#queue-item-object) -* [Playlist](#playlist-object) -* [Artist](#artist-object) -* [Album](#album-object) -* [Track](#track-object) - -## Player - -| Method | Endpoint | Description | -| --------- | ------------------------------------------------ | ------------------------------------ | -| GET | [/api/player](#get-player-status) | Get player status | -| PUT | [/api/player/play, /api/player/pause, /api/player/stop, /api/player/toggle](#control-playback) | Start, pause or stop playback | -| PUT | [/api/player/next, /api/player/previous](#skip-tracks) | Skip forward or backward | -| PUT | [/api/player/shuffle](#set-shuffle-mode) | Set shuffle mode | -| PUT | [/api/player/consume](#set-consume-mode) | Set consume mode | -| PUT | [/api/player/repeat](#set-repeat-mode) | Set repeat mode | -| PUT | [/api/player/volume](#set-volume) | Set master volume or volume for a specific output | -| PUT | [/api/player/seek](#seek) | Seek to a position in the currently playing track | - - - -### Get player status - -**Endpoint** - -```http -GET /api/player -``` - -**Response** - -| Key | Type | Value | -| ----------------- | -------- | ----------------------------------------- | -| state | string | `play`, `pause` or `stop` | -| repeat | string | `off`, `all` or `single` | -| consume | boolean | `true` if consume mode is enabled | -| shuffle | boolean | `true` if shuffle mode is enabled | -| volume | integer | Master volume in percent (0 - 100) | -| item_id | integer | The current playing queue item `id` | -| item_length_ms | integer | Total length in milliseconds of the current queue item | -| item_progress_ms | integer | Progress into the current queue item in milliseconds | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/player" -``` - -```json -{ - "state": "pause", - "repeat": "off", - "consume": false, - "shuffle": false, - "volume": 50, - "item_id": 269, - "item_length_ms": 278093, - "item_progress_ms": 3674 -} -``` - - -### Control playback - -Start or resume, pause, stop playback. - -**Endpoint** - -```http -PUT /api/player/play -``` - -```http -PUT /api/player/pause -``` - -```http -PUT /api/player/stop -``` - -```http -PUT /api/player/toggle -``` - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/player/play" -``` - -```shell -curl -X PUT "http://localhost:3689/api/player/pause" -``` - -```shell -curl -X PUT "http://localhost:3689/api/player/stop" -``` - -```shell -curl -X PUT "http://localhost:3689/api/player/toggle" -``` - - -### Skip tracks - -Skip forward or backward - -**Endpoint** - -```http -PUT /api/player/next -``` - -```http -PUT /api/player/previous -``` - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/player/next" -``` - -```shell -curl -X PUT "http://localhost:3689/api/player/previous" -``` - - -### Set shuffle mode - -Enable or disable shuffle mode - -**Endpoint** - -```http -PUT /api/player/shuffle -``` - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| state | The new shuffle state, should be either `true` or `false` | - - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/player/shuffle?state=true" -``` - - -### Set consume mode - -Enable or disable consume mode - -**Endpoint** - -```http -PUT /api/player/consume -``` - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| state | The new consume state, should be either `true` or `false` | - - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/player/consume?state=true" -``` - - -### Set repeat mode - -Change repeat mode - -**Endpoint** - -```http -PUT /api/player/repeat -``` - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| state | The new repeat mode, should be either `off`, `all` or `single` | - - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/player/repeat?state=all" -``` - - -### Set volume - -Change master volume or volume of a specific output. - -**Endpoint** - -```http -PUT /api/player/volume -``` - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| volume | The new volume (0 - 100) | -| step | The increase or decrease volume by the given amount (-100 - 100) | -| output_id | *(Optional)* If an output id is given, only the volume of this output will be changed. If parameter is omited, the master volume will be changed. | - -Either `volume` or `step` must be present as query parameter - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/player/volume?volume=50" -``` - -```shell -curl -X PUT "http://localhost:3689/api/player/volume?step=-5" -``` - -```shell -curl -X PUT "http://localhost:3689/api/player/volume?volume=50&output_id=0" -``` - - -### Seek - -Seek to a position in the currently playing track. - -**Endpoint** - -```http -PUT /api/player/seek -``` - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| position_ms | The new position in milliseconds to seek to | -| seek_ms | A relative amount of milliseconds to seek to | - - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -Seek to position: - -```shell -curl -X PUT "http://localhost:3689/api/player/seek?position_ms=2000" -``` - -Relative seeking (skip 30 seconds backwards): - -```shell -curl -X PUT "http://localhost:3689/api/player/seek?seek_ms=-30000" -``` - - -## Outputs / Speakers - -| Method | Endpoint | Description | -| --------- | ------------------------------------------------ | ------------------------------------ | -| GET | [/api/outputs](#get-a-list-of-available-outputs) | Get a list of available outputs | -| PUT | [/api/outputs/set](#set-enabled-outputs) | Set enabled outputs | -| GET | [/api/outputs/{id}](#get-an-output) | Get an output | -| PUT | [/api/outputs/{id}](#change-an-output) | Change an output setting | -| PUT | [/api/outputs/{id}/toggle](#toggle-an-output) | Enable or disable an output, depending on the current state | - - - -### Get a list of available outputs - -**Endpoint** - -```http -GET /api/outputs -``` - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| outputs | array | Array of `output` objects | - -**`output` object** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| id | string | Output id | -| name | string | Output name | -| type | string | Type of the output: `AirPlay`, `Chromecast`, `ALSA`, `Pulseaudio`, `fifo` | -| selected | boolean | `true` if output is enabled | -| has_password | boolean | `true` if output is password protected | -| requires_auth | boolean | `true` if output requires authentication | -| needs_auth_key | boolean | `true` if output requires an authorization key (device verification) | -| volume | integer | Volume in percent (0 - 100) | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/outputs" -``` - -```json -{ - "outputs": [ - { - "id": "123456789012345", - "name": "kitchen", - "type": "AirPlay", - "selected": true, - "has_password": false, - "requires_auth": false, - "needs_auth_key": false, - "volume": 0 - }, - { - "id": "0", - "name": "Computer", - "type": "ALSA", - "selected": true, - "has_password": false, - "requires_auth": false, - "needs_auth_key": false, - "volume": 19 - }, - { - "id": "100", - "name": "daapd-fifo", - "type": "fifo", - "selected": false, - "has_password": false, - "requires_auth": false, - "needs_auth_key": false, - "volume": 0 - } - ] -} -``` - -### Set enabled outputs - -Set the enabled outputs by passing an array of output ids. The server enables all outputs -with the given ids and disables the remaining outputs. - -**Endpoint** - -```http -PUT /api/outputs/set -``` - -**Body parameters** - -| Parameter | Type | Value | -| --------------- | -------- | -------------------- | -| outputs | array | Array of output ids | - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/outputs/set" --data "{\"outputs\":[\"198018693182577\",\"0\"]}" -``` - - -### Get an output - -Get an output - -**Endpoint** - -```http -GET /api/outputs/{id} -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Output id | - -**Response** - -On success returns the HTTP `200 OK` success status response code. With the response body holding the **`output` object**. - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/outputs/0" -``` - -```json -{ - "id": "0", - "name": "Computer", - "type": "ALSA", - "selected": true, - "has_password": false, - "requires_auth": false, - "needs_auth_key": false, - "volume": 3 -} -``` - -### Change an output - -Enable or disable an output and change its volume. - -**Endpoint** - -```http -PUT /api/outputs/{id} -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Output id | - -**Body parameters** - -| Parameter | Type | Value | -| --------------- | --------- | -------------------- | -| selected | boolean | *(Optional)* `true` to enable and `false` to disable the output | -| volume | integer | *(Optional)* Volume in percent (0 - 100) | -| pin | string | *(Optional)* PIN for device verification | - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/outputs/0" --data "{\"selected\":true, \"volume\": 50}" -``` - -### Toggle an output - -Enable or disable an output, depending on its current state - -**Endpoint** - -```http -PUT /api/outputs/{id}/toggle -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Output id | - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/outputs/0/toggle" -``` - - - -## Queue - -| Method | Endpoint | Description | -| --------- | ----------------------------------------------------------- | ------------------------------------ | -| GET | [/api/queue](#list-queue-items) | Get a list of queue items | -| PUT | [/api/queue/clear](#clearing-the-queue) | Remove all items from the queue | -| POST | [/api/queue/items/add](#adding-items-to-the-queue) | Add items to the queue | -| PUT | [/api/queue/items/{id}\|now_playing](#updating-a-queue-item)| Updating a queue item in the queue | -| DELETE | [/api/queue/items/{id}](#removing-a-queue-item) | Remove a queue item from the queue | - - - -### List queue items - -Lists the items in the current queue - -**Endpoint** - -```http -GET /api/queue -``` - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| id | *(Optional)* If a queue item id is given, only the item with the id will be returend. Use id=now_playing to get the currently playing item. | -| start | *(Optional)* If a `start`and an `end` position is given, only the items from `start` (included) to `end` (excluded) will be returned. If only a `start` position is given, only the item at this position will be returned. | -| end | *(Optional)* See `start` parameter | - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| version | integer | Version number of the current queue | -| count | integer | Number of items in the current queue | -| items | array | Array of [`queue item`](#queue-item-object) objects | - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/queue" -``` - -```json -{ - "version": 833, - "count": 20, - "items": [ - { - "id": 12122, - "position": 0, - "track_id": 10749, - "title": "Angels", - "artist": "The xx", - "artist_sort": "xx, The", - "album": "Coexist", - "album_sort": "Coexist", - "albumartist": "The xx", - "albumartist_sort": "xx, The", - "genre": "Indie Rock", - "year": 2012, - "track_number": 1, - "disc_number": 1, - "length_ms": 171735, - "media_kind": "music", - "data_kind": "file", - "path": "/music/srv/The xx/Coexist/01 Angels.mp3", - "uri": "library:track:10749" - }, - ... - ] -} -``` - - -### Clearing the queue - -Remove all items form the current queue - -**Endpoint** - -```http -PUT /api/queue/clear -``` - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/queue/clear" -``` - - -### Adding items to the queue - -Add tracks, playlists artists or albums to the current queue - -**Endpoint** - -```http -POST /api/queue/items/add -``` - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| uris | Comma seperated list of resource identifiers (`track`, `playlist`, `artist` or `album` object `uri`) | -| expression | A smart playlist query expression identifying the tracks that will be added to the queue. | -| position | *(Optional)* If a position is given, new items are inserted starting from this position into the queue. | -| playback | *(Optional)* If the `playback` parameter is set to `start`, playback will be started after adding the new items. | -| playback_from_position | *(Optional)* If the `playback` parameter is set to `start`, playback will be started with the queue item at the position given in `playback_from_position`. | -| clear | *(Optional)* If the `clear` parameter is set to `true`, the queue will be cleared before adding the new items. | -| shuffle | *(Optional)* If the `shuffle` parameter is set to `true`, the shuffle mode is activated. If it is set to something else, the shuffle mode is deactivated. To leave the shuffle mode untouched the parameter should be ommited. | -| limit | *(Optional)* Maximum number of tracks to add | - -Either the `uris` or the `expression` parameter must be set. If both are set the `uris` parameter takes presedence and the `expression` parameter will be ignored. - -**Response** - -On success returns the HTTP `200 OK` success status response code. - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| count | integer | number of tracks added to the queue | - - -**Example** - -Add new items by uri: - -```shell -curl -X POST "http://localhost:3689/api/queue/items/add?uris=library:playlist:68,library:artist:2932599850102967727" -``` - -```json -{ - "count": 42 -} -``` - -Add new items by query language: - -```shell -curl -X POST "http://localhost:3689/api/queue/items/add?expression=media_kind+is+music" -``` - -```json -{ - "count": 42 -} -``` - -Clear current queue, add 10 new random tracks of `genre` _Pop_ and start playback -``` -curl -X POST "http://localhost:3689/api/queue/items/add?limit=10&clear=true&playback=start&expression=genre+is+%22Pop%22+order+by+random+desc" -``` - -```json -{ - "count": 10 -} -``` - -### Updating a queue item - -Update or move a queue item in the current queue - -**Endpoint** - -```http -PUT /api/queue/items/{id} -``` -or -```http -PUT /api/queue/items/now_playing -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Queue item id | - -(or use now_playing to update the currenly playing track) - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| new_position | The new position for the queue item in the current queue. | -| title | New track title | -| album | New album title | -| artist | New artist | -| album_artist | New album artist | -| composer | New composer | -| genre | New genre | -| artwork_url | New URL to track artwork | - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/queue/items/3?new_position=0" -``` - -```shell -curl -X PUT "http://localhost:3689/api/queue/items/3?title=Awesome%20title&artwork_url=http%3A%2F%2Fgyfgafguf.dk%2Fimages%2Fpige3.jpg" -``` - -```shell -curl -X PUT "http://localhost:3689/api/queue/items/now_playing?title=Awesome%20title&artwork_url=http%3A%2F%2Fgyfgafguf.dk%2Fimages%2Fpige3.jpg" -``` - -### Removing a queue item - -Remove a queue item from the current queue - -**Endpoint** - -```http -DELETE /api/queue/items/{id} -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Queue item id | - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/queue/items/2" -``` - - - -## Library - -| Method | Endpoint | Description | -| --------- | ----------------------------------------------------------- | ------------------------------------ | -| GET | [/api/library](#library-information) | Get library information | -| GET | [/api/library/playlists](#list-playlists) | Get a list of playlists | -| GET | [/api/library/playlists/{id}](#get-a-playlist) | Get a playlist | -| PUT | [/api/library/playlists/{id}](#update-a-playlist) | Update a playlist attribute | -| DELETE | [/api/library/playlists/{id}](#delete-a-playlist) | Delete a playlist | -| GET | [/api/library/playlists/{id}/tracks](#list-playlist-tracks) | Get list of tracks for a playlist | -| PUT | [/api/library/playlists/{id}/tracks](#update-playlist-tracks) | Update play count of tracks for a playlist | -| GET | [/api/library/playlists/{id}/playlists](#list-playlists-in-a-playlist-folder) | Get list of playlists for a playlist folder | -| GET | [/api/library/artists](#list-artists) | Get a list of artists | -| GET | [/api/library/artists/{id}](#get-an-artist) | Get an artist | -| GET | [/api/library/artists/{id}/albums](#list-artist-albums) | Get list of albums for an artist | -| GET | [/api/library/albums](#list-albums) | Get a list of albums | -| GET | [/api/library/albums/{id}](#get-an-album) | Get an album | -| GET | [/api/library/albums/{id}/tracks](#list-album-tracks) | Get list of tracks for an album | -| GET | [/api/library/tracks/{id}](#get-a-track) | Get a track | -| GET | [/api/library/tracks/{id}/playlists](#list-playlists-for-a-track) | Get list of playlists for a track | -| PUT | [/api/library/tracks](#update-track-properties) | Update multiple track properties | -| PUT | [/api/library/tracks/{id}](#update-track-properties) | Update single track properties | -| GET | [/api/library/genres](#list-genres) | Get list of genres | -| GET | [/api/library/count](#get-count-of-tracks-artists-and-albums) | Get count of tracks, artists and albums | -| GET | [/api/library/files](#list-local-directories) | Get list of directories in the local library | -| POST | [/api/library/add](#add-an-item-to-the-library) | Add an item to the library | -| PUT | [/api/update](#trigger-rescan) | Trigger a library rescan | -| PUT | [/api/rescan](#trigger-metadata-rescan) | Trigger a library metadata rescan | -| PUT | [/api/library/backup](#backup-db) | Request library backup db | - - - -### Library information - -List some library stats - -**Endpoint** - -```http -GET /api/library -``` - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| songs | integer | Array of [`playlist`](#playlist-object) objects | -| db_playtime | integer | Total playtime of all songs in the library | -| artists | integer | Number of album artists in the library | -| albums | integer | Number of albums in the library | -| started_at | string | Server startup time (timestamp in `ISO 8601` format) | -| updated_at | string | Last library update (timestamp in `ISO 8601` format) | -| updating | boolean | `true` if library rescan is in progress | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library" -``` - -```json -{ - "songs": 217, - "db_playtime": 66811, - "artists": 9, - "albums": 19, - "started_at": "2018-11-19T19:06:08Z", - "updated_at": "2018-11-19T19:06:16Z", - "updating": false -} -``` - - -### List playlists - -Lists all playlists in your library (does not return playlist folders) - -**Endpoint** - -```http -GET /api/library/playlists -``` - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| offset | *(Optional)* Offset of the first playlist to return | -| limit | *(Optional)* Maximum number of playlists to return | - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| items | array | Array of [`playlist`](#playlist-object) objects | -| total | integer | Total number of playlists in the library | -| offset | integer | Requested offset of the first playlist | -| limit | integer | Requested maximum number of playlists | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library/playlists" -``` - -```json -{ - "items": [ - { - "id": 1, - "name": "radio", - "path": "/music/srv/radio.m3u", - "smart_playlist": false, - "uri": "library:playlist:1" - }, - ... - ], - "total": 20, - "offset": 0, - "limit": -1 -} -``` - - -### Get a playlist - -Get a specific playlists in your library - -**Endpoint** - -```http -GET /api/library/playlists/{id} -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Playlist id | - -**Response** - -On success returns the HTTP `200 OK` success status response code. With the response body holding the **[`playlist`](#playlist-object) object**. - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library/playlists/1" -``` - -```json -{ - "id": 1, - "name": "radio", - "path": "/music/srv/radio.m3u", - "smart_playlist": false, - "uri": "library:playlist:1" -} -``` - - -### Update a playlist - -Update attributes of a specific playlists in your library - -**Endpoint** - -```http -PUT /api/library/playlists/{id} -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Playlist id | - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| query_limit | For RSS feeds, this sets how many podcasts to retrieve | - - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/library/playlists/25?query_limit=20" -``` - - -### Delete a playlist - -Delete a playlist, e.g. a RSS feed - -**Endpoint** - -```http -DELETE /api/library/playlists/{id} -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Playlist id | - -**Example** - -```shell -curl -X DELETE "http://localhost:3689/api/library/playlists/25" -``` - - -### List playlist tracks - -Lists the tracks in a playlists - -**Endpoint** - -```http -GET /api/library/playlists/{id}/tracks -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Playlist id | - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| offset | *(Optional)* Offset of the first track to return | -| limit | *(Optional)* Maximum number of tracks to return | - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| items | array | Array of [`track`](#track-object) objects | -| total | integer | Total number of tracks in the playlist | -| offset | integer | Requested offset of the first track | -| limit | integer | Requested maximum number of tracks | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library/playlists/1/tracks" -``` - -```json -{ - "items": [ - { - "id": 10766, - "title": "Solange wir tanzen", - "artist": "Heinrich", - "artist_sort": "Heinrich", - "album": "Solange wir tanzen", - "album_sort": "Solange wir tanzen", - "albumartist": "Heinrich", - "albumartist_sort": "Heinrich", - "genre": "Electronica", - "year": 2014, - "track_number": 1, - "disc_number": 1, - "length_ms": 223085, - "play_count": 2, - "skip_count": 1, - "time_played": "2018-02-23T10:31:20Z", - "media_kind": "music", - "data_kind": "file", - "path": "/music/srv/Heinrich/Solange wir tanzen/01 Solange wir tanzen.mp3", - "uri": "library:track:10766" - }, - ... - ], - "total": 20, - "offset": 0, - "limit": -1 -} -``` - -### Update playlist tracks - -Updates the play count for tracks in a playlists - -**Endpoint** - -```http -PUT /api/library/playlists/{id}/tracks -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Playlist id | - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| play_count | Either `increment`, `played` or `reset`. `increment` will increment `play_count` and update `time_played`, `played` will be like `increment` but only where `play_count` is 0, `reset` will set `play_count` and `skip_count` to zero and delete `time_played` and `time_skipped` | - - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/library/playlists/1/tracks?play_count=played" -``` - -### List playlists in a playlist folder - -Lists the playlists in a playlist folder - -**Note**: The root playlist folder has `id` 0. - -**Endpoint** - -```http -GET /api/library/playlists/{id}/playlists -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Playlist id | - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| offset | *(Optional)* Offset of the first playlist to return | -| limit | *(Optional)* Maximum number of playlist to return | - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ------------------------------------------------ | -| items | array | Array of [`playlist`](#playlist-object) objects | -| total | integer | Total number of playlists in the playlist folder | -| offset | integer | Requested offset of the first playlist | -| limit | integer | Requested maximum number of playlist | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library/playlists/0/tracks" -``` - -```json -{ - "items": [ - { - "id": 11, - "name": "Spotify", - "path": "spotify:playlistfolder", - "parent_id": "0", - "smart_playlist": false, - "folder": true, - "uri": "library:playlist:11" - }, - { - "id": 8, - "name": "bytefm", - "path": "/srv/music/Playlists/bytefm.m3u", - "parent_id": "0", - "smart_playlist": false, - "folder": false, - "uri": "library:playlist:8" - } - ], - "total": 2, - "offset": 0, - "limit": -1 -} -``` - - -### List artists - -Lists the artists in your library - -**Endpoint** - -```http -GET /api/library/artists -``` - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| offset | *(Optional)* Offset of the first artist to return | -| limit | *(Optional)* Maximum number of artists to return | - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ------------------------------------------- | -| items | array | Array of [`artist`](#artist-object) objects | -| total | integer | Total number of artists in the library | -| offset | integer | Requested offset of the first artist | -| limit | integer | Requested maximum number of artists | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library/artists" -``` - -```json -{ - "items": [ - { - "id": "3815427709949443149", - "name": "ABAY", - "name_sort": "ABAY", - "album_count": 1, - "track_count": 10, - "length_ms": 2951554, - "uri": "library:artist:3815427709949443149" - }, - ... - ], - "total": 20, - "offset": 0, - "limit": -1 -} -``` - - -### Get an artist - -Get a specific artist in your library - -**Endpoint** - -```http -GET /api/library/artists/{id} -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Artist id | - -**Response** - -On success returns the HTTP `200 OK` success status response code. With the response body holding the **[`artist`](#artist-object) object**. - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library/artists/3815427709949443149" -``` - -```json -{ - "id": "3815427709949443149", - "name": "ABAY", - "name_sort": "ABAY", - "album_count": 1, - "track_count": 10, - "length_ms": 2951554, - "uri": "library:artist:3815427709949443149" -} -``` - - -### List artist albums - -Lists the albums of an artist - -**Endpoint** - -```http -GET /api/library/artists/{id}/albums -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Artist id | - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| offset | *(Optional)* Offset of the first album to return | -| limit | *(Optional)* Maximum number of albums to return | - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| items | array | Array of [`album`](#album-object) objects | -| total | integer | Total number of albums of this artist | -| offset | integer | Requested offset of the first album | -| limit | integer | Requested maximum number of albums | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library/artists/32561671101664759/albums" -``` - -```json -{ - "items": [ - { - "id": "8009851123233197743", - "name": "Add Violence", - "name_sort": "Add Violence", - "artist": "Nine Inch Nails", - "artist_id": "32561671101664759", - "track_count": 5, - "length_ms": 1634961, - "uri": "library:album:8009851123233197743" - }, - ... - ], - "total": 20, - "offset": 0, - "limit": -1 -} -``` - - -### List albums - -Lists the albums in your library - -**Endpoint** - -```http -GET /api/library/albums -``` - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| offset | *(Optional)* Offset of the first album to return | -| limit | *(Optional)* Maximum number of albums to return | - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| items | array | Array of [`album`](#album-object) objects | -| total | integer | Total number of albums in the library | -| offset | integer | Requested offset of the first albums | -| limit | integer | Requested maximum number of albums | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library/albums" -``` - -```json -{ - "items": [ - { - "id": "8009851123233197743", - "name": "Add Violence", - "name_sort": "Add Violence", - "artist": "Nine Inch Nails", - "artist_id": "32561671101664759", - "track_count": 5, - "length_ms": 1634961, - "uri": "library:album:8009851123233197743" - }, - ... - ], - "total": 20, - "offset": 0, - "limit": -1 -} -``` - - -### Get an album - -Get a specific album in your library - -**Endpoint** - -```http -GET /api/library/albums/{id} -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Album id | - -**Response** - -On success returns the HTTP `200 OK` success status response code. With the response body holding the **[`album`](#album-object) object**. - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library/albums/8009851123233197743" -``` - -```json -{ - "id": "8009851123233197743", - "name": "Add Violence", - "name_sort": "Add Violence", - "artist": "Nine Inch Nails", - "artist_id": "32561671101664759", - "track_count": 5, - "length_ms": 1634961, - "uri": "library:album:8009851123233197743" -} -``` - - -### List album tracks - -Lists the tracks in an album - -**Endpoint** - -```http -GET /api/library/albums/{id}/tracks -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Album id | - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| offset | *(Optional)* Offset of the first track to return | -| limit | *(Optional)* Maximum number of tracks to return | - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| items | array | Array of [`track`](#track-object) objects | -| total | integer | Total number of tracks | -| offset | integer | Requested offset of the first track | -| limit | integer | Requested maximum number of tracks | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library/albums/1/tracks" -``` - -```json -{ - "items": [ - { - "id": 10766, - "title": "Solange wir tanzen", - "artist": "Heinrich", - "artist_sort": "Heinrich", - "album": "Solange wir tanzen", - "album_sort": "Solange wir tanzen", - "albumartist": "Heinrich", - "albumartist_sort": "Heinrich", - "genre": "Electronica", - "year": 2014, - "track_number": 1, - "disc_number": 1, - "length_ms": 223085, - "play_count": 2, - "last_time_played": "2018-02-23T10:31:20Z", - "media_kind": "music", - "data_kind": "file", - "path": "/music/srv/Heinrich/Solange wir tanzen/01 Solange wir tanzen.mp3", - "uri": "library:track:10766" - }, - ... - ], - "total": 20, - "offset": 0, - "limit": -1 -} -``` - - -### Get a track - -Get a specific track in your library - -**Endpoint** - -```http -GET /api/library/tracks/{id} -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Track id | - -**Response** - -On success returns the HTTP `200 OK` success status response code. With the response body holding the **[`track`](#track-object) object**. - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library/track/1" -``` - -```json -{ - "id": 1, - "title": "Pardon Me", - "title_sort": "Pardon Me", - "artist": "Incubus", - "artist_sort": "Incubus", - "album": "Make Yourself", - "album_sort": "Make Yourself", - "album_id": "6683985628074308431", - "album_artist": "Incubus", - "album_artist_sort": "Incubus", - "album_artist_id": "4833612337650426236", - "composer": "Alex Katunich/Brandon Boyd/Chris Kilmore/Jose Antonio Pasillas II/Mike Einziger", - "genre": "Alternative Rock", - "year": 2001, - "track_number": 12, - "disc_number": 1, - "length_ms": 223170, - "rating": 0, - "usermark": 0, - "play_count": 0, - "skip_count": 0, - "time_added": "2019-01-20T11:58:29Z", - "date_released": "2001-05-27", - "seek_ms": 0, - "media_kind": "music", - "data_kind": "file", - "path": "/music/srv/Incubus/Make Yourself/12 Pardon Me.mp3", - "uri": "library:track:1", - "artwork_url": "/artwork/item/1" -} -``` - - -### List playlists for a track - -Get the list of playlists that contain a track (does not return smart playlists) - -**Endpoint** - -```http -GET /api/library/tracks/{id}/playlists -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Track id | - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| offset | *(Optional)* Offset of the first playlist to return | -| limit | *(Optional)* Maximum number of playlist to return | - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| items | array | Array of [`playlist`](#playlist-object) objects | -| total | integer | Total number of playlists | -| offset | integer | Requested offset of the first playlist | -| limit | integer | Requested maximum number of playlists | - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library/tracks/27/playlists" -``` - -```json -{ - "items": [ - { - "id": 1, - "name": "playlist", - "path": "/music/srv/playlist.m3u", - "smart_playlist": false, - "uri": "library:playlist:1" - }, - ... - ], - "total": 2, - "offset": 0, - "limit": -1 -} -``` - - -### Update track properties - -Change properties of one or more tracks (supported properties are "rating", "play_count" and "usermark") - -**Endpoint** - -```http -PUT /api/library/tracks -``` - -**Body parameters** - -| Parameter | Type | Value | -| --------------- | -------- | ----------------------- | -| tracks | array | Array of track objects | - - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT -d '{ "tracks": [ { "id": 1, "rating": 100, "usermark": 4 }, { "id": 2, "usermark": 3 } ] }' "http://localhost:3689/api/library/tracks" -``` - -**Endpoint** - -```http -PUT /api/library/tracks/{id} -``` - -**Path parameters** - -| Parameter | Value | -| --------------- | -------------------- | -| id | Track id | - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| rating | The new rating (0 - 100) | -| play_count | Either `increment` or `reset`. `increment` will increment `play_count` and update `time_played`, `reset` will set `play_count` and `skip_count` to zero and delete `time_played` and `time_skipped` | -| usermark | The new usermark (>= 0) | - - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/library/tracks/1?rating=100" -``` - -```shell -curl -X PUT "http://localhost:3689/api/library/tracks/1?play_count=increment" -``` - - -### List genres - -Get list of genres - -**Endpoint** - -```http -GET /api/library/genres -``` -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| items | array | Array of [`browse-info`](#browse-info-object) objects | -| total | integer | Total number of genres in the library | -| offset | integer | Requested offset of the first genre | -| limit | integer | Requested maximum number of genres | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library/genres" -``` - -```json -{ - "items": [ - { - "name": "Classical" - }, - { - "name": "Drum & Bass" - }, - { - "name": "Pop" - }, - { - "name": "Rock/Pop" - }, - { - "name": "'90s Alternative" - } - ], - "total": 5, - "offset": 0, - "limit": -1 -} - -``` - -### List albums for genre - -Lists the albums in a genre - -**Endpoint** - -```http -GET api/search?type=albums&expression=genre+is+\"{genre name}\"" -``` - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| genre | genre name (uri encoded and html esc seq for chars: '/&) | -| offset | *(Optional)* Offset of the first album to return | -| limit | *(Optional)* Maximum number of albums to return | - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| items | array | Array of [`album`](#album-object) objects | -| total | integer | Total number of albums in the library | -| offset | integer | Requested offset of the first albums | -| limit | integer | Requested maximum number of albums | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/search?type=albums&expression=genre+is+\"Pop\"" -curl -X GET "http://localhost:3689/api/search?type=albums&expression=genre+is+\"Rock%2FPop\"" # Rock/Pop -curl -X GET "http://localhost:3689/api/search?type=albums&expression=genre+is+\"Drum%20%26%20Bass\"" # Drum & Bass -curl -X GET "http://localhost:3689/api/search?type=albums&expression=genre+is+\"%2790s%20Alternative\"" # '90 Alternative -``` - -```json -{ - "albums": { - "items": [ - { - "id": "320189328729146437", - "name": "Best Ever", - "name_sort": "Best Ever", - "artist": "ABC", - "artist_id": "8760559201889050080", - "track_count": 1, - "length_ms": 3631, - "uri": "library:album:320189328729146437" - }, - { - "id": "7964595866631625723", - "name": "Greatest Hits", - "name_sort": "Greatest Hits", - "artist": "Marvin Gaye", - "artist_id": "5261930703203735930", - "track_count": 2, - "length_ms": 7262, - "uri": "library:album:7964595866631625723" - }, - { - "id": "3844610748145176456", - "name": "The Very Best of Etta", - "name_sort": "Very Best of Etta", - "artist": "Etta James", - "artist_id": "2627182178555864595", - "track_count": 1, - "length_ms": 177926, - "uri": "library:album:3844610748145176456" - } - ], - "total": 3, - "offset": 0, - "limit": -1 - } -} -``` - -### Get count of tracks, artists and albums - -Get information about the number of tracks, artists and albums and the total playtime - -**Endpoint** - -```http -GET /api/library/count -``` - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| expression | *(Optional)* The smart playlist query expression, if this parameter is omitted returns the information for the whole library | - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| tracks | integer | Number of tracks matching the expression | -| artists | integer | Number of artists matching the expression | -| albums | integer | Number of albums matching the expression | -| db_playtime | integer | Total playtime in milliseconds of all tracks matching the expression | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library/count?expression=data_kind+is+file" -``` - -```json -{ - "tracks": 6811, - "artists": 355, - "albums": 646, - "db_playtime": 1590767 -} -``` - - -### List local directories - -List the local directories and the directory contents (tracks and playlists) - - -**Endpoint** - -```http -GET /api/library/files -``` - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| directory | *(Optional)* A path to a directory in your local library. | - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| directories | array | Array of [`directory`](#directory-object) objects containing the sub directories | -| tracks | object | [`paging`](#paging-object) object containing [`track`](#track-object) objects that matches the `directory` | -| playlists | object | [`paging`](#paging-object) object containing [`playlist`](#playlist-object) objects that matches the `directory` | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/library/files?directory=/music/srv" -``` - -```json -{ - "directories": [ - { - "path": "/music/srv/Audiobooks" - }, - { - "path": "/music/srv/Music" - }, - { - "path": "/music/srv/Playlists" - }, - { - "path": "/music/srv/Podcasts" - } - ], - "tracks": { - "items": [ - { - "id": 1, - "title": "input.pipe", - "artist": "Unknown artist", - "artist_sort": "Unknown artist", - "album": "Unknown album", - "album_sort": "Unknown album", - "album_id": "4201163758598356043", - "album_artist": "Unknown artist", - "album_artist_sort": "Unknown artist", - "album_artist_id": "4187901437947843388", - "genre": "Unknown genre", - "year": 0, - "track_number": 0, - "disc_number": 0, - "length_ms": 0, - "play_count": 0, - "skip_count": 0, - "time_added": "2018-11-24T08:41:35Z", - "seek_ms": 0, - "media_kind": "music", - "data_kind": "pipe", - "path": "/music/srv/input.pipe", - "uri": "library:track:1", - "artwork_url": "/artwork/item/1" - } - ], - "total": 1, - "offset": 0, - "limit": -1 - }, - "playlists": { - "items": [ - { - "id": 8, - "name": "radio", - "path": "/music/srv/radio.m3u", - "smart_playlist": true, - "uri": "library:playlist:8" - } - ], - "total": 1, - "offset": 0, - "limit": -1 - } -} -``` - - -### Trigger rescan - -Trigger a library rescan - -**Endpoint** - -```http -PUT /api/update -``` - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/update" -``` - -```json -{ - "songs": 217, - "db_playtime": 66811, - "artists": 9, - "albums": 19, - "started_at": "2018-11-19T19:06:08Z", - "updated_at": "2018-11-19T19:06:16Z", - "updating": false -} -``` - -### Trigger metadata rescan - -Trigger a library metadata rescan even if files have not been updated. Maintenence method. - -**Endpoint** - -```http -PUT /api/rescan -``` - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/rescan" -``` - -### Backup DB - -Request a library backup - configuration must be enabled and point to a valid writable path. Maintenance method. - -**Endpoint** - -```http -PUT /api/library/backup -``` - -**Response** - -On success returns the HTTP `200 OK` success status response code. -If backups are not enabled returns HTTP `503 Service Unavailable` response code. -Otherwise a HTTP `500 Internal Server Error` response is returned. - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/library/backup" -``` - -## Search - -| Method | Endpoint | Description | -| --------- | ----------------------------------------------------------- | ------------------------------------ | -| GET | [/api/search](#search-by-search-term) | Search for playlists, artists, albums, tracks,genres by a simple search term | -| GET | [/api/search](#search-by-query-language) | Search by complex query expression | - - - -### Search by search term - -Search for playlists, artists, albums, tracks, genres that include the given query in their title (case insensitive matching). - -**Endpoint** - -```http -GET /api/search -``` - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| query | The search keyword | -| type | Comma separated list of the result types (`playlist`, `artist`, `album`, `track`, `genre`) | -| media_kind | *(Optional)* Filter results by media kind (`music`, `movie`, `podcast`, `audiobook`, `musicvideo`, `tvshow`). Filter only applies to artist, album and track result types. | -| offset | *(Optional)* Offset of the first item to return for each type | -| limit | *(Optional)* Maximum number of items to return for each type | - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| tracks | object | [`paging`](#paging-object) object containing [`track`](#track-object) objects that matches the `query` | -| artists | object | [`paging`](#paging-object) object containing [`artist`](#artist-object) objects that matches the `query` | -| albums | object | [`paging`](#paging-object) object containing [`album`](#album-object) objects that matches the `query` | -| playlists | object | [`paging`](#paging-object) object containing [`playlist`](#playlist-object) objects that matches the `query` | - - -**Example** - -Search for all tracks, artists, albums and playlists that contain "the" in their title and return the first two results for each type: - -```shell -curl -X GET "http://localhost:3689/api/search?type=tracks,artists,albums,playlists&query=the&offset=0&limit=2" -``` - -```json -{ - "tracks": { - "items": [ - { - "id": 35, - "title": "Another Love", - "artist": "Tom Odell", - "artist_sort": "Tom Odell", - "album": "Es is was es is", - "album_sort": "Es is was es is", - "album_id": "6494853621007413058", - "album_artist": "Various artists", - "album_artist_sort": "Various artists", - "album_artist_id": "8395563705718003786", - "genre": "Singer/Songwriter", - "year": 2013, - "track_number": 7, - "disc_number": 1, - "length_ms": 251030, - "play_count": 0, - "media_kind": "music", - "data_kind": "file", - "path": "/music/srv/Compilations/Es is was es is/07 Another Love.m4a", - "uri": "library:track:35" - }, - { - "id": 215, - "title": "Away From the Sun", - "artist": "3 Doors Down", - "artist_sort": "3 Doors Down", - "album": "Away From the Sun", - "album_sort": "Away From the Sun", - "album_id": "8264078270267374619", - "album_artist": "3 Doors Down", - "album_artist_sort": "3 Doors Down", - "album_artist_id": "5030128490104968038", - "genre": "Rock", - "year": 2002, - "track_number": 2, - "disc_number": 1, - "length_ms": 233278, - "play_count": 0, - "media_kind": "music", - "data_kind": "file", - "path": "/music/srv/Away From the Sun/02 Away From the Sun.mp3", - "uri": "library:track:215" - } - ], - "total": 14, - "offset": 0, - "limit": 2 - }, - "artists": { - "items": [ - { - "id": "8737690491750445895", - "name": "The xx", - "name_sort": "xx, The", - "album_count": 2, - "track_count": 25, - "length_ms": 5229196, - "uri": "library:artist:8737690491750445895" - } - ], - "total": 1, - "offset": 0, - "limit": 2 - }, - "albums": { - "items": [ - { - "id": "8264078270267374619", - "name": "Away From the Sun", - "name_sort": "Away From the Sun", - "artist": "3 Doors Down", - "artist_id": "5030128490104968038", - "track_count": 12, - "length_ms": 2818174, - "uri": "library:album:8264078270267374619" - }, - { - "id": "6835720495312674468", - "name": "The Better Life", - "name_sort": "Better Life", - "artist": "3 Doors Down", - "artist_id": "5030128490104968038", - "track_count": 11, - "length_ms": 2393332, - "uri": "library:album:6835720495312674468" - } - ], - "total": 3, - "offset": 0, - "limit": 2 - }, - "playlists": { - "items": [], - "total": 0, - "offset": 0, - "limit": 2 - } -} -``` - -### Search by query language - -Search for artists, albums, tracks by a smart playlist query expression (see [README_SMARTPL.md](https://github.com/owntone/owntone-server/blob/master/README_SMARTPL.md) for the expression syntax). - -**Endpoint** - -```http -GET /api/search -``` - -**Query parameters** - -| Parameter | Value | -| --------------- | ----------------------------------------------------------- | -| expression | The smart playlist query expression | -| type | Comma separated list of the result types (`artist`, `album`, `track` | -| offset | *(Optional)* Offset of the first item to return for each type | -| limit | *(Optional)* Maximum number of items to return for each type | - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| tracks | object | [`paging`](#paging-object) object containing [`track`](#track-object) objects that matches the `query` | -| artists | object | [`paging`](#paging-object) object containing [`artist`](#artist-object) objects that matches the `query` | -| albums | object | [`paging`](#paging-object) object containing [`album`](#album-object) objects that matches the `query` | - - -**Example** - -Search for music tracks ordered descending by the time added to the library and limit result to 2 items: - -```shell -curl -X GET "http://localhost:3689/api/search?type=tracks&expression=media_kind+is+music+order+by+time_added+desc&offset=0&limit=2" -``` - - -## Server info - -| Method | Endpoint | Description | -| --------- | ------------------------------------------------ | ------------------------------------ | -| GET | [/api/config](#config) | Get configuration information | - - - -### Config - -**Endpoint** - -```http -GET /api/config -``` - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| version | string | Server version | -| websocket_port | integer | Port number for the [websocket](#push-notifications) (or `0` if websocket is disabled) | -| buildoptions | array | Array of strings indicating which features are supported by the server | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/config" -``` - -```json -{ - "websocket_port": 3688, - "version": "25.0", - "buildoptions": [ - "ffmpeg", - "iTunes XML", - "Spotify", - "LastFM", - "MPD", - "Device verification", - "Websockets", - "ALSA" - ] -} -``` - - -## Settings - -| Method | Endpoint | Description | -| --------- | ------------------------------------------------ | ------------------------------------ | -| GET | [/api/settings](#list-categories) | Get all available categories | -| GET | [/api/settings/{category-name}](#get-a-category) | Get all available options for a category | -| GET | [/api/settings/{category-name}/{option-name}](#get-an-option) | Get a single setting option | -| PUT | [/api/settings/{category-name}/{option-name}](#change-an-option-value) | Change the value of a setting option | -| DELETE | [/api/settings/{category-name}/{option-name}](#delete-an-option) | Reset a setting option to its default | - - - -### List categories - -List all settings categories with their options - -**Endpoint** - -```http -GET /api/settings -``` - -**Response** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| categories | array | Array of settings [category](#category-object) objects | - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/settings" -``` - -```json -{ - "categories": [ - { - "name": "webinterface", - "options": [ - { - "name": "show_composer_now_playing", - "type": 1, - "value": true - }, - { - "name": "show_composer_for_genre", - "type": 2, - "value": "classical" - } - ] - } - ] -} -``` - - -### Get a category - -Get a settings category with their options - -**Endpoint** - -```http -GET /api/settings/{category-name} -``` - -**Response** - -Returns a settings [category](#category-object) object - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/settings/webinterface" -``` - -```json -{ - "name": "webinterface", - "options": [ - { - "name": "show_composer_now_playing", - "type": 1, - "value": true - }, - { - "name": "show_composer_for_genre", - "type": 2, - "value": "classical" - } - ] -} -``` - - -### Get an option - -Get a single settings option - -**Endpoint** - -```http -GET /api/settings/{category-name}/{option-name} -``` - -**Response** - -Returns a settings [option](#option-object) object - - -**Example** - -```shell -curl -X GET "http://localhost:3689/api/settings/webinterface/show_composer_now_playing" -``` - -```json -{ - "name": "show_composer_now_playing", - "type": 1, - "value": true -} -``` - - -### Change an option value - -Get a single settings option - -**Endpoint** - -```http -PUT /api/settings/{category-name}/{option-name} -``` - -**Request** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| name | string | Option name | -| value | (integer / boolean / string) | New option value | - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - - -**Example** - -```shell -curl -X PUT "http://localhost:3689/api/settings/webinterface/show_composer_now_playing" --data "{\"name\":\"show_composer_now_playing\",\"value\":true}" -``` - - -### Delete an option - -Delete a single settings option (thus resetting it to default) - -**Endpoint** - -```http -DELETE /api/settings/{category-name}/{option-name} -``` - -**Response** - -On success returns the HTTP `204 No Content` success status response code. - - -**Example** - -```shell -curl -X DELETE "http://localhost:3689/api/settings/webinterface/show_composer_now_playing" -``` - - -## Push notifications - -If the server was built with websocket support it exposes a websocket at `localhost:3688` to inform clients of changes (e. g. player state or library updates). -The port depends on the server configuration and can be read using the [`/api/config`](#config) endpoint. - -After connecting to the websocket, the client should send a message containing the event types it is interested in. After that the server -will send a message each time one of the events occurred. - -**Message** - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| notify | array | Array of event types | - -**Event types** - -| Type | Description | -| --------------- | ----------------------------------------- | -| update | Library update started or finished | -| database | Library database changed (new/modified/deleted tracks) | -| outputs | An output was enabled or disabled | -| player | Player state changes | -| options | Playback option changes (shuffle, repeat, consume mode) | -| volume | Volume changes | -| queue | Queue changes | - -**Example** - -```shell -curl --include \ - --no-buffer \ - --header "Connection: Upgrade" \ - --header "Upgrade: websocket" \ - --header "Host: localhost:3688" \ - --header "Origin: http://localhost:3688" \ - --header "Sec-WebSocket-Key: SGVsbG8sIHdvcmxkIQ==" \ - --header "Sec-WebSocket-Version: 13" \ - --header "Sec-WebSocket-Protocol: notify" \ - http://localhost:3688/ \ - --data "{ \"notify\": [ \"player\" ] }" -``` - -```json -{ - "notify": [ - "player" - ] -} -``` - - -## Object model - - -### `queue item` object - -| Key | Type | Value | -| ------------------ | -------- | ----------------------------------------- | -| id | string | Item id | -| position | integer | Position in the queue (starting with zero) | -| track_id | string | Track id | -| title | string | Title | -| artist | string | Track artist name | -| artist_sort | string | Track artist sort name | -| album | string | Album name | -| album_sort | string | Album sort name | -| album_id | string | Album id | -| album_artist | string | Album artist name | -| album_artist_sort | string | Album artist sort name | -| album_artist_id | string | Album artist id | -| composer | string | Composer (optional) | -| genre | string | Genre | -| year | integer | Release year | -| track_number | integer | Track number | -| disc_number | integer | Disc number | -| length_ms | integer | Track length in milliseconds | -| media_kind | string | Media type of this track: `music`, `movie`, `podcast`, `audiobook`, `musicvideo`, `tvshow` | -| data_kind | string | Data type of this track: `file`, `url`, `spotify`, `pipe` | -| path | string | Path | -| uri | string | Resource identifier | -| artwork_url | string | *(optional)* [Artwork url](#artwork-urls) | -| type | string | file (codec) type (ie mp3/flac/...) | -| bitrate | string | file bitrate (ie 192/128/...) | -| samplerate | string | file sample rate (ie 44100/48000/...) | -| channel | string | file channel (ie mono/stereo/xx ch)) | - - -### `playlist` object - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| id | string | Playlist id | -| name | string | Playlist name | -| path | string | Path | -| parent_id | integer | Playlist id of the parent (folder) playlist | -| type | string | Type of this playlist: `special`, `folder`, `smart`, `plain` | -| smart_playlist | boolean | `true` if playlist is a smart playlist | -| folder | boolean | `true` if it is a playlist folder | -| uri | string | Resource identifier | - - -### `artist` object - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| id | string | Artist id | -| name | string | Artist name | -| name_sort | string | Artist sort name | -| album_count | integer | Number of albums | -| track_count | integer | Number of tracks | -| length_ms | integer | Total length of tracks in milliseconds | -| uri | string | Resource identifier | -| artwork_url | string | *(optional)* [Artwork url](#artwork-urls) | - - -### `album` object - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| id | string | Album id | -| name | string | Album name | -| name_sort | string | Album sort name | -| artist_id | string | Album artist id | -| artist | string | Album artist name | -| track_count | integer | Number of tracks | -| length_ms | integer | Total length of tracks in milliseconds | -| uri | string | Resource identifier | -| artwork_url | string | *(optional)* [Artwork url](#artwork-urls) | - - -### `track` object - -| Key | Type | Value | -| ------------------ | -------- | ----------------------------------------- | -| id | integer | Track id | -| title | string | Title | -| title_sort | string | Sort title | -| artist | string | Track artist name | -| artist_sort | string | Track artist sort name | -| album | string | Album name | -| album_sort | string | Album sort name | -| album_id | string | Album id | -| album_artist | string | Album artist name | -| album_artist_sort | string | Album artist sort name | -| album_artist_id | string | Album artist id | -| composer | string | Track composer | -| genre | string | Genre | -| comment | string | Comment | -| year | integer | Release year | -| track_number | integer | Track number | -| disc_number | integer | Disc number | -| length_ms | integer | Track length in milliseconds | -| rating | integer | Track rating (ranges from 0 to 100) | -| play_count | integer | How many times the track was played | -| skip_count | integer | How many times the track was skipped | -| time_played | string | Timestamp in `ISO 8601` format | -| time_skipped | string | Timestamp in `ISO 8601` format | -| time_added | string | Timestamp in `ISO 8601` format | -| date_released | string | Date in the format `yyyy-mm-dd` | -| seek_ms | integer | Resume point in milliseconds (available only for podcasts and audiobooks) | -| media_kind | string | Media type of this track: `music`, `movie`, `podcast`, `audiobook`, `musicvideo`, `tvshow` | -| data_kind | string | Data type of this track: `file`, `url`, `spotify`, `pipe` | -| path | string | Path | -| uri | string | Resource identifier | -| artwork_url | string | *(optional)* [Artwork url](#artwork-urls) | -| usermark | integer | User review marking of track (ranges from 0) | - - -### `paging` object - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| items | array | Array of result objects | -| total | integer | Total number of items | -| offset | integer | Requested offset of the first item | -| limit | integer | Requested maximum number of items | - - -### `browse-info` object - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| name | string | Name (depends on the type of the query) | -| name_sort | string | Sort name | -| artist_count | integer | Number of artists | -| album_count | integer | Number of albums | -| track_count | integer | Number of tracks | -| time_played | string | Timestamp in `ISO 8601` format | -| time_added | string | Timestamp in `ISO 8601` format | - - -### `directory` object - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| path | string | Directory path | - - -### `category` object - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| name | string | Category name | -| options | array | Array of option in this category | - - -### `option` object - -| Key | Type | Value | -| --------------- | -------- | ----------------------------------------- | -| name | string | Option name | -| type | integer | The type of the value for this option (`0`: integer, `1`: boolean, `2`: string) | -| value | (integer / boolean / string) | Current value for this option | - - -### Artwork urls - -Artwork urls in `queue item`, `artist`, `album` and `track` objects can be either relative urls or absolute urls to the artwork image. -Absolute artwork urls are pointing to external artwork images (e. g. for radio streams that provide artwork metadata), while relative artwork urls are served from the server. - -It is possible to add the query parameters `maxwidth` and/or `maxheight` to relative artwork urls, in order to get a smaller image (the server only scales down never up). - -Note that even if a relative artwork url attribute is present, it is not guaranteed to exist. diff --git a/README_PLAYER_WEBINTERFACE.md b/README_PLAYER_WEBINTERFACE.md deleted file mode 100644 index 6ca76cd3..00000000 --- a/README_PLAYER_WEBINTERFACE.md +++ /dev/null @@ -1,55 +0,0 @@ -# OwnTone web interface - -Mobile friendly player web interface for [OwnTone](http://owntone.github.io/owntone-server/) build -with [Vue.js](https://vuejs.org), [Bulma](http://bulma.io). - -## Screenshots - -Now playing Queue Artists Album - - -## Usage - -You can find OwnTone's web interface at [http://owntone.local:3689](http://owntone.local:3689) -or alternatively at [http://[your_server_address_here]:3689](http://[your_server_address_here]:3689). - - -## Build Setup - -The source is located in the `web-src` folder. - -``` -cd web-src -``` - -The web interface is built with [Vite](https://vitejs.dev/), makes use of Prettier for code formatting -and ESLint for code linting (the project was set up following the guide [ESLint and Prettier with Vite and Vue.js 3](https://vueschool.io/articles/vuejs-tutorials/eslint-and-prettier-with-vite-and-vue-js-3/) - -``` bash -# install dependencies -npm install - -# Serve with hot reload at localhost:3000 -# (assumes that OwnTone server is running on localhost:3689) -npm run serve - -# Serve with hot reload at localhost:3000 -# (with remote OwnTone server reachable under owntone.local:3689) -VITE_OWNTONE_URL=http://owntone.local:3689 npm run serve - - -# Build for production with minification (will update web interface in "../htdocs") -npm run build - -# Format code -npm run format - -# Lint code (and fix errors that can be automatically fixed) -npm run lint -``` - -After running `npm run serve` the web interface is reachable at [localhost:3000](http://localhost:3000). -By default it expects **owntone** to be running at [localhost:3689](http://localhost:3689) and proxies all -JSON API calls to this location. - -If the server is running at a different location you have to set the env variable `VITE_OWNTONE_URL`. diff --git a/README_PULSE.md b/README_PULSE.md deleted file mode 100644 index 461fe93a..00000000 --- a/README_PULSE.md +++ /dev/null @@ -1,149 +0,0 @@ -# OwnTone and Pulseaudio - -You have the choice of runnning Pulseaudio either in system mode or user mode. -For headless servers, i.e. systems without desktop users, system mode is -recommended. - -If there is a desktop user logged in most of the time, a setup with network -access via localhost only for daemons is a more appropriate solution, since the -normal user administration (with, e.g., `pulseaudio -k`) works as advertised. -Also, the user specific configuration for pulseaudio is preserved across -sessions as expected. - -- [System mode](#system-mode-with-bluetooth-support) -- [User mode](#user-mode-with-network-access) - - -## System Mode with Bluetooth support - -Credit: [Rob Pope](http://robpope.co.uk/blog/post/setting-up-forked-daapd-with-bluetooth) - -This guide was written based on headless Debian Jessie platforms. Most of the -instructions will require that you are root. - - -### Step 1: Setting up Pulseaudio - -If you see a "Connection refused" error when starting the server, then you -will probably need to setup Pulseaudio to run in system mode [1]. This means -that the Pulseaudio daemon will be started during boot and be available to all -users. - -How to start Pulseaudio depends on your distribution, but in many cases you will -need to add a pulseaudio.service file to /etc/systemd/system with the following -content: - -``` -# systemd service file for Pulseaudio running in system mode -[Unit] -Description=Pulseaudio sound server -Before=sound.target - -[Service] -ExecStart=/usr/bin/pulseaudio --system --disallow-exit - -[Install] -WantedBy=multi-user.target -``` - -If you want Bluetooth support, you must also configure Pulseaudio to load the -Bluetooth module. First install it (Debian: -`apt install pulseaudio-module-bluetooth`) and then add the following to -/etc/pulse/system.pa: - -``` -#### Enable Bluetooth -.ifexists module-bluetooth-discover.so -load-module module-bluetooth-discover -.endif -``` - -Now you need to make sure that Pulseaudio can communicate with the Bluetooth -daemon through D-Bus. On Raspbian this is already enabled, and you can skip this -step. Otherwise do one of the following: - -1. Add the pulse user to the bluetooth group: `adduser pulse bluetooth` -2. Edit /etc/dbus-1/system.d/bluetooth.conf and change the policy for -\ to "allow" - -Phew, almost done with Pulseaudio! Now you should: -1. enable system mode on boot with `systemctl enable pulseaudio` -2. reboot (or at least restart dbus and pulseaudio) -3. check that the Bluetooth module is loaded with `pactl list modules short` - - -### Step 2: Setting up the server - -Add the user the server is running as (typically "owntone") to the -"pulse-access" group: - -``` -adduser owntone pulse-access -``` - -Now (re)start the server. - - -### Step 3: Adding a Bluetooth device - -To connect with the device, run `bluetoothctl` and then: - -``` -power on -agent on -scan on -**Note MAC address of BT Speaker** -pair [MAC address] -**Type Pin if prompted** -trust [MAC address] -connect [MAC address] -``` - -Now the speaker should appear. You can also verify that Pulseaudio has detected -the speaker with `pactl list sinks short`. - - - -## User Mode with Network Access - -Credit: wolfmanx and [this blog](http://billauer.co.il/blog/2014/01/pa-multiple-users/) - - -### Step 1: Copy system pulseaudio configuration to the users home directory - -``` -mkdir -p ~/.pulse -cp /etc/pulse/default.pa ~/.pulse/ -``` - - -### Step 2: Enable TCP access from localhost only - -Edit the file `~/.pulse/default.pa` , adding the following line at the end: - -``` -load-module module-native-protocol-tcp auth-ip-acl=127.0.0.1 -``` - - -### Step 3: Restart the pulseaudio deamon - -``` -pulseaudio -k -# OR -pulseaudio -D -``` - - -### Step 4: Adjust configuration file - -In the `audio` section of `/etc/owntone.conf`, set `server` to `localhost`: - -``` -server = "localhost" -``` - ---- - -[1] Note that Pulseaudio will warn against system mode. However, in this use -case it is actually the solution recommended by the [Pulseaudio folks themselves](https://lists.freedesktop.org/archives/pulseaudio-discuss/2016-August/026823.html). diff --git a/README_RADIO_STREAMS.md b/README_RADIO_STREAMS.md deleted file mode 100644 index e4c3d31e..00000000 --- a/README_RADIO_STREAMS.md +++ /dev/null @@ -1,107 +0,0 @@ -# OwnTone and Radio Stream tweaking - -Radio streams have many different ways in how metadata is sent. Many should -just work as expected, but a few may require some tweaking. If you are not -seeing expected title, track, artist, artwork in clients or web UI, the -following may help. - -First, understand what and how the particular stream is sending information. -ffprobe is a command that can be used to interegrate most of the stream -information. `ffprobe ` should give you some useful output, -look at the Metadata section, below is an example. - -``` - Metadata: - icy-br : 320 - icy-description : DJ-mixed blend of modern and classic rock, electronica, world music, and more. Always 100% commercial-free - icy-genre : Eclectic - icy-name : Radio Paradise (320k aac) - icy-pub : 1 - icy-url : https://radioparadise.com - StreamTitle : Depeche Mode - Strangelove - StreamUrl : http://img.radioparadise.com/covers/l/B000002LCI.jpg -``` - -In the example above, all tags are populated with correct information, no -modifications to the server configuration should be needed. Note that -StreamUrl points to the artwork image file. - - -Below is another example that will require some tweaks to the server, Notice -`icy-name` is blank and `StreamUrl` doesn't point to an image. - -``` -Metadata: - icy-br : 127 - icy-pub : 0 - icy-description : Unspecified description - icy-url : - icy-genre : various - icy-name : - StreamTitle : Pour Some Sugar On Me - Def Leppard - StreamUrl : https://radio.stream.domain/api9/eventdata/49790578 -``` - -In the above, first fix is the blank name, second is the image artwork. - -### 1) Set stream name/title via the M3U file -Set the name with an EXTINF tag in the m3u playlist file: - -``` -#EXTM3U -#EXTINF:-1, - My Radio Stream Name -http://radio.stream.domain/stream.url -``` - -The format is basically `#EXTINF:, - `. -Length is -1 since it's a stream, `` was left blank since -`StreamTitle` is accurate in the Metadata but `` was set to -`My Radio Stream Name` since `icy-name` was blank. - -### 2) StreamUrl is a JSON file with metadata -If `StreamUrl` does not point directly to an artwork file then the link may be -to a json file that contains an artwork link. If so, you can make the server -download the file automatically and search for an artwork link, and also track -duration. - -Try to download the file, e.g. with `curl "https://radio.stream.domain/api9/eventdata/49790578"`. -Let's assume you get something like this: - -``` -{ - "eventId": 49793707, - "eventStart": "2020-05-08 16:23:03", - "eventFinish": "2020-05-08 16:27:21", - "eventDuration": 254, - "eventType": "Song", - "eventSongTitle": "Pour Some Sugar On Me", - "eventSongArtist": "Def Leppard", - "eventImageUrl": "https://radio.stream.domain/artist/1-1/320x320/562.jpg?ver=1465083491", - "eventImageUrlSmall": "https://radio.stream.domain/artist/1-1/160x160/562.jpg?ver=1465083491", - "eventAppleMusicUrl": "https://geo.itunes.apple.com/dk/album/530707298?i=530707313" -} -``` - -In this case, you would need to tell the server to look for "eventDuration" -and "eventImageUrl" (or just "duration" and "url"). You can do that like this: - -``` -curl -X PUT "http://localhost:3689/api/settings/misc/streamurl_keywords_length" --data "{\"name\":\"streamurl_keywords_length\",\"value\":\"duration\"}" -curl -X PUT "http://localhost:3689/api/settings/misc/streamurl_keywords_artwork_url" --data "{\"name\":\"streamurl_keywords_artwork_url\",\"value\":\"url\"} -``` - -If you want multiple search phrases then comma separate, e.g. "duration,length". - -### 3) Set metadata with a custom script -If your radio station publishes metadata via another method than the above, e.g. -just on their web site, then you will have to write a script that pulls the -metadata and then pushes it to the server. To update metadata for the -currently playing radio station use something like this JSON API request: - -```shell -curl -X PUT "http://localhost:3689/api/queue/items/now_playing?title=Awesome%20title&artwork_url=http%3A%2F%2Fgyfgafguf.dk%2Fimages%2Fpige3.jpg" -``` - -If your radio station is not returning any artwork links, you can also just make -a static artwork by placing a png/jpg in the same directory as the m3u, and with -the same name, e.g. `My Radio Stream.jpg` for `My Radio Stream.m3u`. diff --git a/README_SMARTPL.md b/README_SMARTPL.md deleted file mode 100644 index fcffad4c..00000000 --- a/README_SMARTPL.md +++ /dev/null @@ -1,211 +0,0 @@ -# OwnTone smart playlists - - -To add a smart playlist to the server, create a new text file with a filename ending with .smartpl; -the filename doesn't matter, only the .smartpl ending does. The file must be placed somewhere in your -library folder. - - -## Syntax - -The contents of a smart playlist must follow the syntax: - -``` -"Playlist Name" { expression } -``` - -There is exactly one smart playlist allowed for a .smartpl file. - - -An expression consists of: - -``` -field-name operator operand -``` - -Where valid field-names (with their types) are: -* `artist` (string) -* `album_artist` (string) -* `album` (string) -* `title` (string) -* `genre` (string) -* `composer` (string) -* `comment` (string) -* `path` (string) -* `type` (string) -* `grouping` (string) -* `data_kind` (enumeration) -* `media_kind` (enumeration) -* `play_count` (integer) -* `skip_count` (integer) -* `rating` (integer) -* `year` (integer) -* `compilation` (integer) -* `track` (integer) -* `disc` (integer) -* `time_added` (date) -* `time_modified` (date) -* `time_played` (date) -* `time_skipped` (date) -* `random` (special) - -Valid operators include: -* `is`, `includes`, `starts with`, `ends with` (string) -* `>`, `<`, `<=`, `>=`, `=` (int) -* `after`, `before` (date) -* `is` (enumeration) - -The `is` operator must exactly match the field value, while the `includes` operator matches a substring. -The `starts with` operator matches, if the value starts with the given prefix, -and `ends with` matches the opposite. All these matches are case-insensitive. - -Valid operands include: -* "string value" (string) -* integer (int) - -Valid operands for the enumeration `data_kind` are: -* `file` -* `url` -* `spotify` -* `pipe` - -Valid operands for the enumeration `media_kind` are: -* `music` -* `movie` -* `podcast` -* `audiobook` -* `tvshow` - - -Multiple expressions can be anded or ored together, using the keywords `OR` and `AND`. The unary not operator is also supported using the keyword `NOT`. - - -It is possible to define the sort order and limit the number of items by adding an order clause and/or a limit clause after the last expression: - -``` -"Playlist Name" { expression ORDER BY field-name sort-direction LIMIT limit } -``` - -"sort-direction" is either `ASC` (ascending) or `DESC` (descending). "limit" is the maximum number of items. - -There is additionally a special `random` _field-name_ that can be used in conjunction with `limit` to select a random number of items based on current expression. - - -## Examples - -``` -"techno" { - genre includes "techno" - and artist includes "zombie" -} -``` - -This would match songs by "Rob Zombie" or "White Zombie", as well as those with a genre of "Techno-Industrial" or -"Trance/Techno", for example. - -``` -"techno 2015" { - genre includes "techno" - and artist includes "zombie" - and not genre includes "industrial" -} -``` - -This would exclude e. g. songs with the genre "Techno-Industrial". - -``` -"Local music" { - data_kind is file - and media_kind is music -} -``` - -This would match all songs added as files to the library that are not placed under the folders for podcasts, audiobooks. - -``` -"Unplayed podcasts and audiobooks" { - play_count = 0 - and (media_kind is podcast or media_kind is audiobook) -} -``` - -This would match any podcast and audiobook file that was never played. - -``` -"Recently added music" { - media_kind is music - order by time_added desc - limit 10 -} -``` -This would match the last 10 music files added to the library. - -``` -"Random 10 Rated Pop songs" { - rating > 0 and - genre is "Pop" and - media_kind is music - order by random desc - limit 10 -} -``` -This generates a random set of, maximum of 10, rated Pop music tracks every time the playlist is queried. - -## Date operand syntax - -One example of a valid date is a date in yyyy-mm-dd format: - -``` -"Files added after January 1, 2004" { - time_added after 2004-01-01 -} -``` - -There are also some special date keywords: -* `today`, `yesterday`, `this week`, `last week`, `last month`, `last year` - -These dates refer to the _start_ of that period; `today` means 00:00hrs of today, `this week` means current Monday 00:00hrs, `last week` means the previous Monday 00:00hrs, `last month` is the first day of the previous month at 00:00hrs etc. - -A valid date can also be made by applying an interval to a date. Intervals can be defined as `days`, `weeks`, `months`, `years`. -As an example, a valid date might be: - -```3 weeks before today``` or ```3 weeks ago``` - - -Examples: - -``` -"Recently Added" { - time_added after 2 weeks ago -} -``` - -This matches all songs added in the last 2 weeks. - -``` -"Recently played audiobooks" { - time_played after last week - and media_kind is audiobook -} -``` - -This matches all audiobooks played since the start of the last Monday 00:00AM. - -All dates, except for `YYYY-DD-HH`, are relative to the day of when the server evaluates the smartpl query; `time_added after today` run on a Monday would match against items added since Monday 00:00hrs and evaluating the same smartpl on Friday would only match against added on Friday 00:00hrs. - -Note that `time_added after 4 weeks ago` and `time_added after last month` are subtly different; the former is exactly 4 weeks ago (from today) whereas the latter is the first day of the previous month. - - -## Differences to mt-daapd smart playlists - -The syntax is really close to the mt-daapd smart playlist syntax (see -http://sourceforge.net/p/mt-daapd/code/HEAD/tree/tags/release-0.2.4.2/contrib/mt-daapd.playlist). - -Even this documentation is based on the file linked above. - -Some differences are: -* only one smart playlist per file -* the not operator must be placed before an expression and not before the operator -* "||", "&&", "!" are not supported (use "or", "and", "not") -* comments are not supported - diff --git a/screenshots/Screenshot-album.png b/screenshots/Screenshot-album.png deleted file mode 100644 index 4ade22e010d1b9aaa7d8b18dc4269c401aa868fc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 37424 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 OO6G&2M46aj(EkUt^9GFo diff --git a/screenshots/Screenshot-artists.png b/screenshots/Screenshot-artists.png deleted file mode 100644 index 703b5aef7966ec1d0d672a0df7faaaa3cf58eb73..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 30231 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 diff --git a/screenshots/Screenshot-queue.png b/screenshots/Screenshot-queue.png deleted file mode 100644 index 3a980eb8f8de9c73894c3b156afffc97950d88ff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 32947 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 RH