Mopidy-Qobuz-Hires


NameMopidy-Qobuz-Hires JSON
Version 0.1.1 PyPI version JSON
download
home_pagehttps://github.com/vitiko98/mopidy-qobuz
SummaryMopidy extension for playing Hi-Res/Lossless music from Qobuz
upload_time2024-08-19 21:53:47
maintainerNone
docs_urlNone
authorVitiko
requires_python>=3.8
licenseApache License, Version 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ****************************
Mopidy-Qobuz
****************************

`Mopidy <https://mopidy.com/>`_ extension for playing Hi-Res/Lossless music from Qobuz.

Requires a non-free account.

Features
============
* Up to 24b/196k playback
* Artist, album and track search
* Browse support
* Playlists support
* Featured lists support
* Image support

Installation
============

Install by running::

    pip install mopidy-qobuz-hires

or::

    pip install git+https://github.com/vitiko98/mopidy-qobuz


``pip install mopidy-qobuz`` **IS NOT RELATED to this repository/extension.**

**This extension conflicts with** https://github.com/taschenb/mopidy-qobuz (https://pypi.org/project/Mopidy-Qobuz).
You will need to uninstall it if it's in your system.

Configuration
=============

Before starting Mopidy, you must add ``username``, ``password``, ``app_id`` and ``secret`` fields
to the Mopidy configuration file::

    [qobuz]
    username = alice
    password = secret
    app_id = foo
    secret = bar
    quality = 6


See this `gist <https://gist.github.com/vitiko98/bb89fd203d08e285d06abf40d96db592>`_ to get
`app_id` and `secret` values yourself.

The following configuration values are available:

- ``qobuz/enabled``: If the Qobuz extension should be enabled or not.
  Defaults to ``true``.

- ``qobuz/username``: Qobuz username (or email). You *must* provide this.

- ``qobuz/password``: Qobuz password. You *must* provide this.

- ``qobuz/app_id``: Qobuz app id. You *must* provide this.

- ``qobuz/secret``: Qobuz secret key. You *must* provide this.

- ``qobuz/quality``: Quality code integer. 5 is 320 MP3; 6 is FLAC; 7 is FLAC 24
  ≤ 96; 27 is FLAC 24 > 96. Defaults to 6.

- ``qobuz/search_album_count``: Maximum number of albums returned in search
  results. Defaults to 10.

- ``qobuz/search_track_count``: Maximum number of tracks returned in search
  results. Defaults to 10.

- ``qobuz/search_artist_count``: Maximum number of artists returned in search
  results. Defaults to 0.

- ``qobuz/custom_libraries``: An optional directory containing custom YAML library files. 
  See ``tests/data/library.yml`` for more info.

Status
=================
This extension is in alpha development.


Project resources
=================

- `Source code <https://github.com/vitiko98/mopidy-qobuz>`_
- `Issue tracker <https://github.com/vitiko98/mopidy-qobuz/issues>`_

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/vitiko98/mopidy-qobuz",
    "name": "Mopidy-Qobuz-Hires",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Vitiko",
    "author_email": "vhnz98@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/a4/a9/4a88f6601e09d4f8a07c0a99eb694ded6c0d95c82b57eb47ba5ed3ab2b83/mopidy_qobuz_hires-0.1.1.tar.gz",
    "platform": null,
    "description": "****************************\nMopidy-Qobuz\n****************************\n\n`Mopidy <https://mopidy.com/>`_ extension for playing Hi-Res/Lossless music from Qobuz.\n\nRequires a non-free account.\n\nFeatures\n============\n* Up to 24b/196k playback\n* Artist, album and track search\n* Browse support\n* Playlists support\n* Featured lists support\n* Image support\n\nInstallation\n============\n\nInstall by running::\n\n    pip install mopidy-qobuz-hires\n\nor::\n\n    pip install git+https://github.com/vitiko98/mopidy-qobuz\n\n\n``pip install mopidy-qobuz`` **IS NOT RELATED to this repository/extension.**\n\n**This extension conflicts with** https://github.com/taschenb/mopidy-qobuz (https://pypi.org/project/Mopidy-Qobuz).\nYou will need to uninstall it if it's in your system.\n\nConfiguration\n=============\n\nBefore starting Mopidy, you must add ``username``, ``password``, ``app_id`` and ``secret`` fields\nto the Mopidy configuration file::\n\n    [qobuz]\n    username = alice\n    password = secret\n    app_id = foo\n    secret = bar\n    quality = 6\n\n\nSee this `gist <https://gist.github.com/vitiko98/bb89fd203d08e285d06abf40d96db592>`_ to get\n`app_id` and `secret` values yourself.\n\nThe following configuration values are available:\n\n- ``qobuz/enabled``: If the Qobuz extension should be enabled or not.\n  Defaults to ``true``.\n\n- ``qobuz/username``: Qobuz username (or email). You *must* provide this.\n\n- ``qobuz/password``: Qobuz password. You *must* provide this.\n\n- ``qobuz/app_id``: Qobuz app id. You *must* provide this.\n\n- ``qobuz/secret``: Qobuz secret key. You *must* provide this.\n\n- ``qobuz/quality``: Quality code integer. 5 is 320 MP3; 6 is FLAC; 7 is FLAC 24\n  \u2264 96; 27 is FLAC 24 > 96. Defaults to 6.\n\n- ``qobuz/search_album_count``: Maximum number of albums returned in search\n  results. Defaults to 10.\n\n- ``qobuz/search_track_count``: Maximum number of tracks returned in search\n  results. Defaults to 10.\n\n- ``qobuz/search_artist_count``: Maximum number of artists returned in search\n  results. Defaults to 0.\n\n- ``qobuz/custom_libraries``: An optional directory containing custom YAML library files. \n  See ``tests/data/library.yml`` for more info.\n\nStatus\n=================\nThis extension is in alpha development.\n\n\nProject resources\n=================\n\n- `Source code <https://github.com/vitiko98/mopidy-qobuz>`_\n- `Issue tracker <https://github.com/vitiko98/mopidy-qobuz/issues>`_\n",
    "bugtrack_url": null,
    "license": "Apache License, Version 2.0",
    "summary": "Mopidy extension for playing Hi-Res/Lossless music from Qobuz",
    "version": "0.1.1",
    "project_urls": {
        "Homepage": "https://github.com/vitiko98/mopidy-qobuz"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e90e1cc43b14494cd14b1a6ec833593c0bbee082f8f4dfd70828defc501b6259",
                "md5": "724c0a854611434f45261b377c2815fc",
                "sha256": "4ba2fdad56786bcb170aa40dfc434ee0bae2f76e755c2d53554341133b9173a4"
            },
            "downloads": -1,
            "filename": "Mopidy_Qobuz_Hires-0.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "724c0a854611434f45261b377c2815fc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 20983,
            "upload_time": "2024-08-19T21:53:46",
            "upload_time_iso_8601": "2024-08-19T21:53:46.299037Z",
            "url": "https://files.pythonhosted.org/packages/e9/0e/1cc43b14494cd14b1a6ec833593c0bbee082f8f4dfd70828defc501b6259/Mopidy_Qobuz_Hires-0.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4a94a88f6601e09d4f8a07c0a99eb694ded6c0d95c82b57eb47ba5ed3ab2b83",
                "md5": "573b0fdc09d5749cd267c8468bb77650",
                "sha256": "ff39e544775f89f48c8f5c104e40a8c0a7ab50bae143b519c165f51e8cce8536"
            },
            "downloads": -1,
            "filename": "mopidy_qobuz_hires-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "573b0fdc09d5749cd267c8468bb77650",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 20547,
            "upload_time": "2024-08-19T21:53:47",
            "upload_time_iso_8601": "2024-08-19T21:53:47.651830Z",
            "url": "https://files.pythonhosted.org/packages/a4/a9/4a88f6601e09d4f8a07c0a99eb694ded6c0d95c82b57eb47ba5ed3ab2b83/mopidy_qobuz_hires-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-19 21:53:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "vitiko98",
    "github_project": "mopidy-qobuz",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "mopidy-qobuz-hires"
}
        
Elapsed time: 0.66214s