GithubHelp home page GithubHelp logo

miguelpragosa / m3u-proxy Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tigersway/m3u-proxy

0.0 0.0 0.0 126 KB

Download, process/simplify M3U & EPG files from your IPTV provider(s)

License: MIT License

JavaScript 100.00%

m3u-proxy's Introduction

m3u-proxy

Process/simplify and potentially serve M3U & EPG files from your IPTV provider(s).

GitHub package.json version GitHub last commit

Configuration

{
  "importFolder": "./imports",
  "exportFolder": "/var/www/html/iptv",
  "minutesBetweenImports": "360",
  "sources": [
    {
      "name": "MyProvider",
      "m3u": "http://url-of-my-stream-provider/streams.m3u",
      "models": [
        {
          "name": "",
          "filters": [
            {
              "field": "group-title",
              "regex": "UK .*|USA .*"
            }
          ],
          "transformations": [
            {
              "field": "group-title",
              "regex": "(UK|USA).*",
              "substitution": "$1"
            },
            {
              "field": "tvg-name",
              "regex": "(.*?) *: *(.*)",
              "substitution": "$1: $2"
            }
          ]
        }
      ],
      "epg": "http://url-of-my-guide-provider/xmltv.xml"
    }
  ]
}
  • importFolder: Destination folder for all imports.
  • exportFolder: Destination folder for all exports.
  • minutesBetweenImports: Not yet available.
  • name: Prefix for export filenames: downloadable files are <name><model>.m3u & <name>.xml.
  • m3u: Original url for the M3U file.
  • epg: Original url the the guide/xmltv file.
  • filters: Combined, they Allow to select only some of the channels.
  • transformations: Each of them will transform a field of the channel details.

Running

node .\m3u-proxy.js

Arguments (v0.4.0+)

You can specify a custom config.json file location by using -c or --config command line arguments

node .\m3u-proxy.js -c ~/.m3u-proxy/config.json

node .\m3u-proxy.js --config ~/.m3u-proxy/config.json

m3u-proxy's People

Contributors

tigersway avatar miguelpragosa avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.