npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tv-channels-manager

v1.0.0

Published

M3U channels list splitter and serves channel links

Downloads

3

Readme

Manage M3U TV Channels list and XMLTV EPG

This module is for Italian M3U channels list only

Installazione

mkdir m3u-channels-manager
cd m3u-channels-manager
npm install m3u-channels-manager

File di Configurazione

Creare il file config.json nella cartella, seguendo questo esempio:

{
  "Log": "./manager.log",  // log file
  "M3U": {
    "Url": "http://path/to/m3u",  // url della lista m3u
    "ExcludeGroups": ["-unknown-"] // lista dei gruppi da escludere dalla lista
  },
  "Port": 3000,   // Porta su cui far girare il server locale HTTP
  "Path": "./cache", // cartella usata per i file di cache
  "EPG": {
    "bulk": 3   // numero di request parallele per recuperare i dati dell'EPG
  }
}

Command line

Ogni comando ha 2 output secondo il formato richiesto: json , m3u oppure xml

$0 [--m3u|--epg] --format json|m3u|xml

Modulo M3U

Attivazione del module M3U

Attivazione del modulo M3U

m3u-channels-manager --m3u
Aggiornamento della lista in cache

Aggiornamento della lista canali in cache

m3u-channels-manager --m3u --refresh
Gruppi

Mostrare tutti i gruppi disponibili

m3u-channels-manager --m3u --list-groups
Lista canali

Mostra tutti i canali della lista

m3u-channels-manager --m3u --list
Lista canali per gruppi

Mostra tutti i canali filtrati per gruppi (indicare l'ID del gruppo)

m3u-channels-manager --m3u --groups DIGITALE --groups SATELLITE
Lista canali per singolo gruppo

Mostra tutti i canali di un singolo gruppo

m3u-channels-manager --m3u --group DIGITALE
Stream-Url per canale

Mostra il link di streaming del canale (indicare l'ID del canale desiderato)

m3u-channels-manager --m3u --stream-url Rai__1__Full__HD

Modulo EPG

Attivazione del module EPG

Attivazione del modulo EPG

m3u-channels-manager --epg
Aggiornamento del file XMLTV in cache

Aggiornamento del file XMLTV in cache. Questo comando supporta le seguenti options:

  • today YYYYMMDD (default: data odierna)
  • days 2
  • shift 1 2 24
  • yest

Tutti questi flag possono essere combinati tra loro

# recupera l'EPG del giorno 10 maggio 2019
m3u-channels-manager --epg --update --today 20190510

# recupera le informazioni di "domani" e "dopo domani" (max: 3)
m3u-channels-manager --epg --update --days 2

# recuper le informazioni di "ieri"
m3u-channels-manager --epg --update --yest 2

# costruisce l'EPG shiftando gli orari in base alle ore specificate. Usato ad esempio per i canali "Rai 1", "Rai 1 +1", "Rai 1 +2" e "Rai 1 +24"
m3u-channels-manager --epg --update --shift 1 --shift 2 --shift 24
# Recupera le inforazioni EPG dei giorni 9-10-11-12 maggio costruendo un XMLTV che comprende gli orari +1 e +24
m3u-channels-manager --epg --update --today 20191005 --days 2 --shift 1 --shift 24 --yest
Mostra il file XMLTV in cache

Mostra il file XMLTV in cache

m3u-channels-manager --epg --show

HTTP server

Carica il modulo HTTP

m3u-channels-manager --serve

È necessario abilitare almeno uno dei moduli precedentemente elencati

m3u-channels-manager --serve --epg --m3u