From dcd60f23c972091cc82f7dded8d755b4a0c91568 Mon Sep 17 00:00:00 2001 From: Dan Ferguson Date: Tue, 7 Apr 2020 18:05:05 -0400 Subject: [PATCH] _ --- README.md | 6 +++--- index.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2ad677c..e146778 100644 --- a/README.md +++ b/README.md @@ -6,15 +6,15 @@ Create Live TV/DVR channels from playlists in Plex. ### How it works -1. pseudotv-plex will scan Plex for playlists. Playlists with a summary starting with **pseudotv** will be fetched. -2. XMLTV and M3U files are generated from playlists, using metadata pulled from Plex. +1. pseudotv-plex will scan your Plex library for playlists, looking for playlists with a summary starting with **pseudotv**. +2. XMLTV and M3U files are generated from your **pseudotv** playlists, using metadata pulled from Plex. 3. Add the PseudoTV (spoofed HDHomeRun) tuner into Plex, use the XMLTV file as your EPG provider. 4. Watch your psudeo live tv channels ### Features - Plex transcoding (psuedotv-plex spoofs a Chrome Web Player, in order to receive a h264/aac stream from Plex) -- Live FFMPEG or VLC mpegts transmuxing +- FFMPEG or VLC mpegts transmuxing - Prebuffering (FFMPEG only) - transcodes entire video as fast as possible (not live stream) - Auto update Plex DVR channel mappings and EPG. - Web UI for manually triggering EPG updates diff --git a/index.js b/index.js index 7dd9333..d230183 100644 --- a/index.js +++ b/index.js @@ -30,7 +30,7 @@ plex(config.PLEX_OPTIONS, (result) => { app.use(pseudotv(client, xmltv, m3u)) app.listen(config.PORT, () => { - console.log(`pseudotv-plex: http://${config.HOST}:${config.PORT}`) + console.log(`pseudotv-plex Web UI: http://${config.HOST}:${config.PORT}`) if (config.HDHOMERUN_OPTIONS.ENABLED && config.HDHOMERUN_OPTIONS.AUTODISCOVERY) hdhr.ssdp.start() })