This fork of PlexConnect is configured to use Vagrant for simple deployment using a VirtualBox vm.
Both Vagrant and VirtualBox must be installed as prerequisites.
# Installation
git clone https://github.com/murrayju/PlexConnect.git
cd PlexConnect
git pull # if you need to updateBefore you start, be sure to copy your trailers.pem to assets\certificates\. Also, depending on your network, you may need to edit SettingsBase.cfg to manually specify the IP address for Plex Media Server.
# Run
vagrant upIf all goes well, everything will start up automatically. Check the console output for IP_self, which is the address that you should configure the AppleTV DNS to point to.
or: "Plex @ aTV - think different..."
We all want the pleasure of Plex on the big screen - in this case driven by an AppleTV. Unfortunately there are officially no Apps allowed on AppleTV, most of the time a jailbreak is late (iOS 5.2?) or not available at all (aTV3).
This is a collection of files developed for the little project described in Plex Forum. See also the discontinued ATVBrowser for a project with similar purpose, all javascript.
For more information, like detailed Installation Guides, FAQs and similar, visit the Wiki.
The basic idea is, to...
- re-use an already available app (like YouTube, Vimeo, ... in this case: Apple Trailers)
- re-route the request to your local Plex Media Server
- re-work the reply to fit into AppleTV's XML communication scheme
- let iOS do the rest
Python 2.x series with 2.7 being the minimum (Python 3.x is not supported)
# Installation
git clone https://github.com/iBaa/PlexConnect.git
# Updating
cd PlexConnect
git pullIf you don't have Git, you can download ZIP file and extract files to a local directory.
# Run with root privileges
sudo ./PlexConnect.pyDepending on your OS, you might only need
PlexConnect.py. Orpython PlexConnect.pyor ...
- set your AppleTV's DNS address to the computer running PlexConnect
- run the Trailer App
See the Wiki for more details, configuration and advanced settings.
- PlexConnect.py - Main script file, invoking the DNSServer and WebServer into seperate processes.
- PlexGDM.py - Auto discovery of running Plex Media Servers: Good Day Mate!
- DNSServer.py - This is a small DNS server (hence the name) that is now called whenever aTV needs to resolve an internet address. To hijack the trailer App, we will intercept and re-route all queries to trailers.apple.com. Every other query will be forwarded to the next, your original DNS.
- WebServer.py - This script provides the directory content of "assets" to aTV. Additionally it will forward aTV's directory requests to PMS and provide a aTV compatible XML back. Every media (video, thumbnails...) is URL-wise connected to PMS, so aTV directly accesses the Plex database.
- XMLConverter.py - This script contains the XML adaption from Plex Media Server's response to valid aTV XML files.
- Settings.py -
Basic settings collection. Creates
Settings.cfgat first run - which may be modified externally. - ATVSettings.py -
Handles the aTV settings like ViewModes or Transcoder options. Stores aTV settings in
ATVSettings.cfg.
The software is provided as is. It might work as expected - or not. Just don't blame me.