{"id":23455349,"url":"https://github.com/mistic100/rainmeter-nowplayingplex","last_synced_at":"2026-02-27T01:01:37.480Z","repository":{"id":66460774,"uuid":"499850762","full_name":"mistic100/Rainmeter-NowPlayingPlex","owner":"mistic100","description":"A Rainmeter plugin to read the currently playing track on Plex.","archived":false,"fork":false,"pushed_at":"2022-12-31T09:12:32.000Z","size":52,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-06-20T13:52:22.679Z","etag":null,"topics":["plex","plugin","rainmeter"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mistic100.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-06-04T14:32:52.000Z","updated_at":"2023-07-23T21:00:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"a054fcf9-3be7-4a81-9ceb-a1c1fa7bfba5","html_url":"https://github.com/mistic100/Rainmeter-NowPlayingPlex","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/mistic100/Rainmeter-NowPlayingPlex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mistic100%2FRainmeter-NowPlayingPlex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mistic100%2FRainmeter-NowPlayingPlex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mistic100%2FRainmeter-NowPlayingPlex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mistic100%2FRainmeter-NowPlayingPlex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mistic100","download_url":"https://codeload.github.com/mistic100/Rainmeter-NowPlayingPlex/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mistic100%2FRainmeter-NowPlayingPlex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29879896,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T23:51:21.483Z","status":"ssl_error","status_checked_at":"2026-02-26T23:50:46.793Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["plex","plugin","rainmeter"],"created_at":"2024-12-24T03:30:45.936Z","updated_at":"2026-02-27T01:01:37.469Z","avatar_url":"https://github.com/mistic100.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"NowPlayingPlex.dll\n================\n\nA Rainmeter plugin to read the currently playing track on Plex.\n\n\n# Usage\n\nThe plugin works similarly to the [NowPlaying measure](https://docs.rainmeter.net/manual/measures/nowplaying) : there is a main measure doing the query and child measures connected to the main.\n\n\n# Options\n\n### `PlexToken` (required on main measure)\n\n_Main measure only._ Your personnal access token ([how to get it](https://www.plexopedia.com/plex-media-server/general/plex-token/)).\n\n### `PlexServer` (default: `http://localhost:32400`)\n\n_Main measure only._ The url of your Plex server.\n\n### `PlexUsername`\n\n_Main measure only._ Your Plex username, this is used to filter the sessions if other users are using your server. If not defined, the first session will be used.\n\n### `PlayerName` (required on child measures)\n\n_Child measures only._ Name of the main measure.\n\n### `PlayerType` (required)\n\nType of the measure value. Valid values are: \n\n- `Artist` : Track artist.\n- `Album` : Current album.\n- `Title` : Track title.\n- `Number` : Track number.\n- `Year` : Track year.\n- `Cover` : URL to cover art.\n- `File` : Path to the playing media file.\n- `Duration` : Total length of track in seconds.\n- `Position` : Current position in track in seconds.\n- `Progress` : Percentage of track completed.\n- `State` : 0 for stopped, 1 for playing, and 2 for paused.\n\n**Notes:** With measures of type `Duration` or `Position`, the string value is in the form `MM:SS` and the number value is the actual number of seconds.\n\n### `DisableLeadingZero` (default: `0`)\n\n_Main measure only._  If set to `1`, the format of `Duration` and `Position` is `M:SS` instead of `MM:SS`.\n\n\n# Example\n\n```ini\n[Rainmeter]\nUpdate=1000\n\n[Variables]\nPlexToken=XXXXXX\nPlexUsername=JohnDoe\n\n[MeasureTitlePlex]\nMeasure=Plugin\nPlugin=NowPlayingPlex\nPlexToken=#PlexToken#\nPlexUsername=#PlexUsername#\nPlayerType=Title\n\n[MeasureArtistPlex]\nMeasure=Plugin\nPlugin=NowPlayingPlex\nPlayerName=MeasureTitlePlex\nPlayerType=Artist\n\n[MeasureAlbumPlex]\nMeasure=Plugin\nPlugin=NowPlayingPlex\nPlayerName=MeasureTitlePlex\nPlayerType=Album\n\n[MeasureDurationPlex]\nMeasure=Plugin\nPlugin=NowPlayingPlex\nPlayerName=MeasureTitlePlex\nPlayerType=Duration\nSubstitute=\"00:00\":\"\"\n\n[MeasurePositionPlex]\nMeasure=Plugin\nPlugin=NowPlayingPlex\nPlayerName=MeasureTitlePlex\nPlayerType=Position\nSubstitute=\"00:00\":\"\"\n```\n\n\n# License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmistic100%2Frainmeter-nowplayingplex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmistic100%2Frainmeter-nowplayingplex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmistic100%2Frainmeter-nowplayingplex/lists"}