https://github.com/havardgulldahl/mopidycli
Mopidy tool for controlling playback from command line
https://github.com/havardgulldahl/mopidycli
Last synced: 3 months ago
JSON representation
Mopidy tool for controlling playback from command line
- Host: GitHub
- URL: https://github.com/havardgulldahl/mopidycli
- Owner: havardgulldahl
- License: apache-2.0
- Created: 2016-02-02T20:30:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-16T14:32:24.000Z (almost 8 years ago)
- Last Synced: 2024-08-08T22:35:19.097Z (10 months ago)
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
****************************
mopidycli
****************************.. image:: https://img.shields.io/pypi/v/mopidycli.svg?style=flat
:target: https://pypi.python.org/pypi/mopidycli/
:alt: Latest PyPI version.. image:: https://img.shields.io/pypi/dm/mopidycli.svg?style=flat
:target: https://pypi.python.org/pypi/mopidycli/
:alt: Number of PyPI downloads.. image:: https://img.shields.io/travis/havardgulldahl/mopidycli/master.svg?style=flat
:target: https://travis-ci.org/havardgulldahl/mopidycli
:alt: Travis CI build status.. image:: https://img.shields.io/coveralls/havardgulldahl/mopidycli/master.svg?style=flat
:target: https://coveralls.io/r/havardgulldahl/mopidycli
:alt: Test coverageMopidy tool for controlling playback from command line
Installation
============Install by running::
pip install mopidycli
Or, if available, install the Debian/Ubuntu package from `apt.mopidy.com
`_.Now export the ip address of your mopidy server if it is not running on the same machine.
Like this::export MOPIDYSERVER=192.168.0.100:6680
Commands
========After installation, you'll get the following scripts::
mopidy-next: Change to the next track.
mopidy-pause: Pause playback.
mopidy-play: play the currently active track.
mopidy-previous: Change to the previous track.
mopidy-resume: If paused, resume playing the current track.
mopidy-shuffle: Shuffles the entire tracklist.
mopidy-state: Get The playback state: 'playing', 'paused', or 'stopped'.
If PLAYING or PAUSED, show information on current track.mopidy-tracklist: Get tracklist
mopidy-play-backend-uri: Play a specific backend uri, like 'plex:album:6247' or 'spotify:track:XXX'
Project resources
=================- `Source code `_
- `Issue tracker `_Credits
=======- Original author: `@havardgulldahl `_
- `Contributors `_Changelog
=========v0.2.0 (2016-02-03)
----------------------------------------- New command, `mopidy-play-backend-uri`, to play an album or track by backend uri.
v0.1.0
----------------------------------------- Initial release.
- Basic control of a given Mopidy server.