Skip to content

A virtual tuner card and EPG guide for online live TV sources like PlutoTV and Locast. Designed to work with Plex Media Server's Live TV / DVR feature.

License

Notifications You must be signed in to change notification settings

FauxTuner/faux-tuner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

faux-tuner

A virtual tuner card and EPG guide for online live TV sources like PlutoTV and Locast. Designed to work with Plex Media Server's Live TV / DVR feature.

Largely inspired by (and parts shamelessy stolen from) locast2plex.

Services

Installation

npm install -g https://github.com/FauxTuner/faux-tuner.git

If you get a permission error, you may need to use sudo:
sudo npm install -g faux-tuner

Documentation

Additional guides and documentation is available in our wiki.

Basic Usage

Start

faux-tuner start

Status

faux-tuner status

Stop

faux-tuner stop

You can also use faux-tuner in your own projects as a standalone library.

Simple Server Example

const fauxTuner = require('faux-tuner');

fau#xTuner.listen(3130, () => {
  console.log('Server listening at localhost:3130');
});

Express Middleware Example

const express = require('express');
const fauxTuner = require('faux-tuner');
const app = express();

app.use(fauxTuner);

app.listen(3130, () => {
  console.log('Server listening at localhost:3130');
});

About

A virtual tuner card and EPG guide for online live TV sources like PlutoTV and Locast. Designed to work with Plex Media Server's Live TV / DVR feature.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published