I've been working on a web player for Plex for a few weeks now and since it's getting to a point where it does something useful, I felt like talking about it on the forum.
This player is essentially a web server written in node.js that acts as a proxy between the web interface and your media servers.
The nice touch about it is that is uses myPlex to actually get the list of your servers. So no need to configure anything, just enter your myPlex credentials and enjoy.
From there, you'll have access to your movies and tv shows and you'll be able to play them from your browser.
Based on the platform you're on, it will use flash or html video tags to play the transcoded video (you can choose the quality as well). I'm using jwplayer for that with their adaptive plugin. It's not yet rock perfect, but does a good enough job to play HLS streams.
The look & feel is taken from [Plex-Export](http://hybridlogic.co.uk/code/standalone/plex-export/) by Luke Lanchester, I'm just too bad at CSS and he designed a great looking interface.
It's running on any recent Chrome, Safari, Firefox and IE9 (not thoroughly tested).
http://proto.jfremy.fr:32401/images/plexjs.png
So if you're still reading me by then, two options:
[list][*]you can try it out at [https://proto.jfremy...blic/index.html](https://proto.jfremy.fr:32402/public/index.html) (this means your myPlex credentials will go through my server, but I'm not logging it, just forwarding it to myPlex to get an access token)[*]you can clone the git repositiory from github at [https://github.com/jfremy/plexjs](https://github.com/jfremy/plexjs),[list][*]install node.js (if you dont have it already) [http://nodejs.org/](http://nodejs.org/) (version 0.6.12 or later)[*]start the server by typing "node src/server.js" from the directory where you checked out the code.[*]open the page [http://localhost:800...blic/index.html](http://localhost:8000/public/index.html) (or replace localhost with the ip or host name where you installed the server).[/list][/list]
And make sure you're using at least the latest stable release of the Plex Media Server
Any ideas / suggestions are welcome.
cheers
Jeff

