Metadata-Version: 1.1
Name: Mopidy-Tidal
Version: 0.2.7
Summary: Tidal music service integration
Home-page: https://github.com/tehkillerbee/mopidy-tidal
Author: Johannes Linde
Author-email: josaksel.dk@gmail.com
License: Apache License, Version 2.0
Description: ****************************
        Mopidy-Tidal
        ****************************
        
        .. image:: https://img.shields.io/pypi/v/Mopidy-Tidal.svg?style=flat
            :target: https://pypi.python.org/pypi/Mopidy-Tidal/
            :alt: Latest PyPI version
        
        .. image:: https://img.shields.io/pypi/dm/Mopidy-Tidal.svg?style=flat
            :target: https://pypi.python.org/pypi/Mopidy-Tidal/
            :alt: Number of PyPI downloads
        
        Tidal music service integration.
        
        Installation
        ============
        
        Install by running::
        
            pip install Mopidy-Tidal
            or
            pip3 install Mopidy-Tidal
        
        In case you are upgrading your Mopidy-Tidal installation from the latest git sources, make sure to do a force upgrade from the source root::
        
            sudo python3 setup.py install --force
        
        
        
        
        Dependencies
        =============
        When using High and Low quality, be sure to install gstreamer bad-plugins, eg. ::
        
            sudo apt-get install gstreamer1.0-plugins-bad
        
        This is mandatory to be able to play m4a streams.
        
        Configuration
        =============
        
        Before starting Mopidy, you must add configuration for
        Mopidy-Tidal to your Mopidy configuration file, if it is not already present.
        
        The configuration is usually stored in `/etc/mopidy/mopidy.conf` or possibly `~/.config/mopidy/mopidy.conf`, depending on your system configuration ::
        
            [tidal]
            enabled = true
            quality = LOSSLESS
            #client_id =
            #client_secret =
        
        
        Quality can be set to LOSSLESS, HIGH or LOW. Hi_RES(master) is currently not supported.
        Lossless quality (FLAC) requires Tidal HiFi Subscription.
        
        Optional: Tidal API `client_id`, `client_secret` can be overridden by the user if necessary.
        
        OAuth Flow
        ----------
        
        Using the new OAuth flow, you have to visit a link to connect the mopidy app to your login.
        
        1. When you restart the Mopidy server, check the latest systemd logs and find a line like::
        
            journalctl -u mopidy | tail -5
            ...
            Visit link.tidal.com/AAAAA to log in, the code will expire in 300 seconds``
        
        2. Go to that link in your browser, approve it, and that should be it.
        
        Note that the login process is a **blocking** action, so Mopidy will not load until you approve the application.
        The OAuth session will be reloaded automatically when Mopidy is restarted. It will be necessary to perform these steps again if/when the session expires or if the json file is moved.
        
        Project resources
        =================
        
        - `Source code <https://github.com/tehkillerbee/mopidy-tidal>`_
        - `Issue tracker <https://github.com/tehkillerbee/mopidy-tidal/issues>`_
        
        
        Credits
        =======
        
        - Original author: `mones88 <https://github.com/mones88>`__
        - Current maintainer: `tehkillerbee <https://github.com/tehkillerbee>`__
        - `Contributors <https://github.com/tehkillerbee/mopidy-tidal/graphs/contributors>`_
        
        
        Changelog
        =========
        
        v0.2.7
        ----------------------------------------
        - Use path extension for Tidal OAuth cache file
        - Improved error handling for missing images, unplayable albums
        - Improved playlist browsing
        
        v0.2.6
        ----------------------------------------
        - Improved reliability of OAuth cache file generation.
        - Added optional client_id & client_secret to [tidal] in mopidy config (thanks Glog78)
        - Removed username/pass, as it is not needed by OAuth (thanks tbjep)
        
        v0.2.5
        ----------------------------------------
        - Reload existing OAuth session on Mopidy restart
        - Added OAuth login support from tidalapi (thanks to greggilbert)
        
        v0.2.4
        ----------------------------------------
        - Added track caching (thanks to MrSurly and kingosticks)
        
        v0.2.3
        ----------------------------------------
        - fixed python 3 compatibility issues
        - Change dependency tidalapi4mopidy back to tidalapi (thanks to stevedenman)
        
        v0.2.2
        ----------------------------------------
        - added support browsing of favourite tracks, moods, genres and playlists (thanks to SERVCUBED)
        
        
        v0.2.1
        ----------------------------------------
        - implemented get_images method
        - updated tidal's api key
        
        
        v0.2.0
        ----------------------------------------
        - playlist support (read-only)
        - implemented artists lookup
        - high and low quality streams should now work correctly
        - cache search results (to be improved in next releases)
        
        v0.1.0
        ----------------------------------------
        
        - Initial release.
        
Platform: UNKNOWN
Classifier: Environment :: No Input/Output (Daemon)
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Sound/Audio :: Players
