Skip to content

A library for easy implementing a remote plex client

License

Notifications You must be signed in to change notification settings

tijder/plex-remote

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

With this library you can create a remote Plex client. This library is based on plex-mpv-shim.

How to use

  • Implement the abstract class PlayerAbstract. As example you can look at this file.
  • Import the program like this:
from plex_remote.plex_remote_client import PlexRemoteClient
  • Start the remote client like:
self.plexRemoteClient = PlexRemoteClient(remote_player)
thread = threading.Thread(target=self.plexRemoteClient.start)
thread.daemon = True
thread.start()
  • To stop the remote client:
thread = threading.Thread(target=self.plexRemoteClient.stop)
thread.daemon = True
thread.start()

Where it's used

This library is used in Girens an GTK Plex Media Player.

About

A library for easy implementing a remote plex client

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%