Skip to main content

Python API to MPV using JSON IPC

Project description

Python MPV JSONIPC

This implements an interface similar to python-mpv, but it uses the JSON IPC protocol instead of the C API. This means you can control external instances of MPV including players like SMPlayer, and it can use MPV players that are prebuilt instead of needing libmpv1. It may also be more resistant to crashes such as Segmentation Faults, but since it isn't directly communicating with MPV via the C API the performance will be worse.

Please note that this only implements the subset of python-mpv that is used by plex-mpv-shim and jellyfin-mpv-shim. Other functionality has not been implemented.

Installation

sudo pip3 install python-mpv-jsonipc

Basic usage

Create an instance of MPV. You can use an already running MPV or have the library start a managed copy of MPV. Command arguments can be specified when initializing MPV if you are starting a managed copy of MPV.

from python_mpv_jsonrpc import MPV

# Uses MPV that is in the PATH.
mpv = MPV()

# Use MPV that is running and connected to /tmp/mpv-socket.
mpv = MPV(start_mpv=False, ipc_socket="/tmp/mpv-socket")

# Uses MPV that is found at /path/to/mpv.
mpv = MPV(mpv_location="/path/to/mpv")

# After you have an MPV, you can read and set (if applicable) properties.
mpv.volume # 100.0 by default
mpv.volume = 20 

# You can also send commands.
mpv.command_name(arg1, arg2)

# Bind to key press events with a decorator
@mpv.on_key_press("space")
def space_handler():
    pass

# You can also observe and wait for properties.
@mpv.property_observer("eof-reached")
def handle_eof(name, value):
    pass

# Or simply wait for the value to change once.
mpv.wait_for_property("duration")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-mpv-jsonipc-1.1.4.tar.gz (5.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

python_mpv_jsonipc-1.1.4-py3-none-any.whl (18.1 kB view details)

Uploaded Python 3

File details

Details for the file python-mpv-jsonipc-1.1.4.tar.gz.

File metadata

  • Download URL: python-mpv-jsonipc-1.1.4.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.3

File hashes

Hashes for python-mpv-jsonipc-1.1.4.tar.gz
Algorithm Hash digest
SHA256 a54e0e7014c3f91c052540d4ad6831cdf2b22c2950835bc5840a2a32d2462b17
MD5 d23c8d8789fd725f995279a7437d6d15
BLAKE2b-256 24c41e15440674818cb40313e4e99d1c29eb9c32d8456de4212b166d7cf4e4ef

See more details on using hashes here.

File details

Details for the file python_mpv_jsonipc-1.1.4-py3-none-any.whl.

File metadata

  • Download URL: python_mpv_jsonipc-1.1.4-py3-none-any.whl
  • Upload date:
  • Size: 18.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.3

File hashes

Hashes for python_mpv_jsonipc-1.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 a391c30fac6e9bf87a413e34c3c7cda92c83d0744eadae218b25dae2e9407fb9
MD5 c5cdcc9c93e8460ec6469b541c5e13d5
BLAKE2b-256 d84dde53fcb1142738e3c12fc9a861ac4490b83912bcfe3fda303c5316890a71

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page