m3u-ipytv 0.2.11

Creator: codyrutscher

Last updated:

Add to Cart

Description:

m3uipytv 0.2.11

ipytv: A python3 library to parse IPTV playlists in the M3U Plus format.
iptv2json: A command line utility to convert an IPTV
playlist into json format.
json2iptv: A command line utility to convert a json file
(like the one produced by iptv2json) into an IPTV (m3u_plus) playlist.




M3U Plus and IPTV
The M3U Plus format is a de facto standard for distributing IPTV playlists on
the Internet.
The terms IPTV playlist and M3U Plus playlist are generally used
interchangeably, but in this repository M3U Plus refers to the data format,
while IPTV Playlist refers to playlists in the M3U Plus format.
M3U Plus stems from the
extended M3U8 format, of
which it supports only 2 tags (#EXTM3U and #EXTINF).
The syntax of the #EXTM3U and #EXTINF tags has been modified to include
extra attributes (e.g., logo, group, language). Unfortunately this has broken
the backward compatibility with the original M3U8 standard (as explained in
detail here).
This library has been created from scratch to parse and handle the M3U Plus
format only. It does not fully support regular M3U8 playlists (only basic
channel attributes are parsed).
Supported tags
Only #EXTM3U, #EXTINF and plain url rows are supported (i.e. they are parsed
and their value is made available as properties of an IPTVChannel object).
All tags that are found between an #EXTINF row and its related url row are
added as extras to a channel, but without performing any parsing (i.e. they're
treated like plain strings).
In the example below, the #EXTVLCOPT row is not parsed, but copied as-is:
#EXTINF:-1 tvg-id="" tvg-name="hello" tvg-country="IT" tvg-url="" group-title="Greetings",Hello!
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0
https://my-website.com/vod/hello.ts

Installation
This library requires Python 3 (and the related pip installer).
PLEASE NOTE: the library makes use of the multiprocessing.Pool class that
requires some care when working with the
IDLE environment.
To install the library system-wide, run:
pip install m3u-ipytv

To install it within a virtual environment, run:
python -m venv .venv
source .venv/bin/activate
pip install m3u-ipytv

Usage
Modules
The library comprises several modules, each with a specific area of competence:

channel

Everything related to the handling of channels in a playlist.


doctor

A collection of functions to fix common errors found in M3U files.


exceptions

All the exceptions thrown by the library.


m3u

Constants and functions related to M3U files.


playlist

Everything related to the loading and handling of M3U playlists.


utils

Commodity functions that work on playlist or channel objects.



Loading an IPTV Playlist
From a file
Use the playlist.loadf(file) function:
from ipytv import playlist

file = "~/Documents/my_playlist.m3u"
pl = playlist.loadf(file)
print(pl.length())

from a URL
Use the playlist.loadu(url) function:
from ipytv import playlist

url = "https://iptv-org.github.io/iptv/categories/classic.m3u"
pl = playlist.loadu(url)
print(pl.length())

From a string
Use the playlist.loads(string) function:
from ipytv import playlist

string = """#EXTM3U
#EXTINF:-1 tvg-id="Rai 1" tvg-name="Rai 1" group-title="RAI",Rai 1
http://myown.link:80/luke/210274/78482"""
pl = playlist.loads(string)
print(pl.length())

From a list
Use the playlist.loadl(rows) function:
from ipytv import playlist

rows = [
'#EXTM3U',
'#EXTINF:-1 tvg-id="Rai 1" tvg-name="Rai 1" group-title="RAI",Rai 1',
'http://myown.link:80/luke/210274/78482'
]
pl = playlist.loadl(rows)
print(pl.length())

From a json string
Use the playlist.loadj(json_str) function:
from ipytv import playlist

json_str = """{
"attributes": {
"x-tvg-url": "http://myown.link:80/luke/220311/22311"
},
"channels": [
{
"name": "Rai 1",
"duration": "-1",
"url": "http://myown.link:80/luke/210274/78482",
"attributes": {
"tvg-id": "Rai 1",
"tvg-name": "Rai 1",
"tvg-logo": "https://static.epg.best/it/RaiUno.it.png",
"group-title": "RAI"
},
"extras": [
"#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
]
},
{
"name": "Rai 2",
"duration": "-1",
"url": "http://myown.link:80/luke/210274/78483",
"attributes": {
"tvg-id": "Rai 2",
"tvg-name": "Rai 2",
"tvg-logo": "https://static.epg.best/it/RaiDue.it.png",
"group-title": "RAI"
},
"extras": []
}
]
}"""
pl = playlist.loadj(json_str)
print(pl.length())

M3UPlaylist class
Every load function above returns an object of the M3UPlaylist class.
This class models the concept of a playlist (which is, basically, a list of
channels) and offers methods to interact with the playlist itself and with its
channels.
There are two main properties in a playlist, and they are:

Attributes
Channels

What these properties are and how they can be accessed is described in the next
paragraphs.
Accessing the attributes of a playlist
Key-value pairs that are specified in the #EXTM3U row are treated as
playlist-wide attributes (i.e. they apply to the playlist itself or to every
channel in the playlist).
For example the x-tvg-url part below:
#EXTM3U x-tvg-url="http://myown.link:80/luke/220311/22311"

These attributes, in the form of a dictionary, can be accessed via the
get_attributes() method:
from ipytv import playlist

url = "https://iptv-org.github.io/iptv/categories/kids.m3u"
pl = playlist.loadu(url)
attributes = pl.get_attributes()
for k, v in attributes.items():
print(f'"{k}": "{v}"')

In alternative, when the name of the property is known beforehand, its value can
be retrieved with:
from ipytv import playlist

url = "https://iptv-org.github.io/iptv/categories/kids.m3u"
pl = playlist.loadu(url)
attributes = pl.get_attributes()
tvg_url = pl.get_attribute("x-tvg-url")
print(f"x-tvg-url: {tvg_url}")

The attributes can also be added, modified and removed by using the following
methods:
from ipytv.playlist import M3UPlaylist

pl = M3UPlaylist()
attribute_name = 'tvg-shift'
# Add the 'tvg-shift' attribute and set it to 1
pl.add_attribute(attribute_name, "1")
# Update the 'tvg-shift' attribute to -2
pl.update_attribute(attribute_name, "-2")
# Completely remove the 'tvg-shift' attribute
value_before_deletion = pl.remove_attribute(attribute_name)

There is also a method that allows to add multiple attributes at once (instead
of single attributes) in the form of a dictionary:
pl.add_attributes({})

Accessing the channels of a playlist
The M3UPlaylist class is basically a list of channels with some commodity
functions. The channels in a playlist can be accessed by using one of the
following methods.
Individually (by index)
By using the get_channel(index) method:
from ipytv import playlist

url = "https://iptv-org.github.io/iptv/categories/classic.m3u"
pl = playlist.loadu(url)
# Let's retrieve the first channel in the list
channel = pl.get_channel(0)
print(f'channel \"{channel.name}\": {channel.url}')
# The next line will throw IndexOutOfBoundsException
channel = pl.get_channel(-1)

Iteratively
By looping over the channels in an M3UPlaylist object:
from ipytv import playlist

url = "https://iptv-org.github.io/iptv/categories/classic.m3u"
pl = playlist.loadu(url)
for channel in pl:
print(f'channel \"{channel.name}\": {channel.url}')

Low level
In all cases where the previous two access methods are not sufficient, the inner
channel list can be accessed via the get_channels() method:
from ipytv import playlist

url = "https://iptv-org.github.io/iptv/categories/classic.m3u"
pl = playlist.loadu(url)
chan_list = pl.get_channels()
ten_channels = chan_list[:10]

The channels can also be added, modified and removed by using the following
methods:
from ipytv.playlist import M3UPlaylist
from ipytv.channel import IPTVChannel

pl = M3UPlaylist()
channel = IPTVChannel()
# Add a channel to the end of the list (last index)
pl.append_channel(channel)
# Insert a channel in the specified position (all succeeding channels are
# shifted right by 1 position)
pl.insert_channel(0, channel)
new_channel = IPTVChannel()
# Replace the second channel of the playlist with a new channel
pl.update_channel(1, new_channel)
# Remove the channel at the specified position (all succeeding channels are
# shifted left by 1 position)
old_channel = pl.remove_channel(0)

There are also two methods that allow to add list of channels (instead of single
channels):
pl.append_channels([])
pl.insert_channels([])

Accessing the properties of a channel
The get_channels() method of an M3UPlaylist object returns a list of objects
of the IPTVChannel class.
An IPTVChannel object has 3 basic properties (url, name and
duration) and two optional fields: attributes (a dictionary) and extras
(a list of strings).
For example:
from ipytv.channel import IPTVAttr, IPTVChannel

channel = IPTVChannel(
url="http://myown.link:80/luke/210274/78482",
name="Rai 1",
duration="-1",
attributes={
IPTVAttr.TVG_ID.value: "Rai 1",
IPTVAttr.TVG_NAME.value: "Rai 1",
IPTVAttr.TVG_LOGO.value: "https://static.epg.best/it/RaiUno.it.png",
IPTVAttr.GROUP_TITLE.value: "RAI"
},
extras=['#EXTVLCOPT:http-user-agent=Lavf53.32.100']
)
print(channel.name)
print(channel.attributes[IPTVAttr.GROUP_TITLE.value])
print(channel.extras[0])

The IPTVAttr enum class contains attribute names that are commonly found in
IPTV Playlists.
The doctor module
Internet-sourced IPTV playlists, often contain a number of format errors. This
module aims to detect and fix some of these errors.
The module contains three classes, each with its own scope:

M3UDoctor

It contains methods to fix errors in m3u files (i.e. errors that would
make it impossible to load an m3u file as a playlist).


IPTVChannelDoctor

It contains methods to fix errors in a channel (i.e. errors in the
attributes of an #EXTINF row).


M3UPlaylistDoctor

It applies the fixes in IPTVChannelDoctor to all channels in the
playlist.



All the classes above offer one public, static method named sanitize() that is
in charge of applying all different fixes. It can be used as follows:
from ipytv.doctor import M3UDoctor, M3UPlaylistDoctor
from ipytv import playlist

with open('my-broken-playlist.m3u', encoding='utf-8') as in_file:
content = in_file.readlines()
fixed_content = M3UDoctor.sanitize(content)
pl = playlist.loadl(fixed_content)
fixed_pl = M3UPlaylistDoctor.sanitize(pl)
with open('my-fixed-playlist.m3u', 'w', encoding='utf-8') as out_file:
content = fixed_pl.to_m3u_plus_playlist()
out_file.write(content)

The utils module
The utils module is a collection of commodity functions that perform various operations on
playlists or channels.
The module currently contains the functions listed below (but more might be added in the future).

is_episode_from_series(channel.name)
A function that, given a channel name, checks whether the channel might be from a series or not.
Example:
from ipytv.utils import is_episode_from_series
channel_name = "The Talking Dead S01 E07"
if is_episode_from_series(channel_name):
print("This channel looks like an episode from a series")


extract_show_name(channel.name)
A function that, given a channel name, extracts only the show name, by removing the season and
episode numbers (if any) and every other string following these numbers (if any).
Example:
from ipytv.utils import is_episode_from_series, extract_show_name
channel_name = "The Talking Dead S01 E07"
if is_episode_from_series(channel_name):
show_name = extract_show_name(channel_name)
print(f"This channel looks like an episode from the {show_name} series")


extract_series(playlist, exclude_single=False)
A function that, given an M3UPlaylist object, tries to find all channels that look like episodes
of the same series and groups them together in a new playlist. The function returns a dictionary
with show names as keys and the related playlist as value. It also returns an extra playlist
that contains all the channels that are not episodes of a series. The exclude_single optional
parameter controls whether the function should return playlists with only one episode or not
(this is because, by definition, a series should be composed by at least two episodes, so the
function allows to remove all playlists with a single entry from the result).
Example:
import os
from ipytv.playlist import loadu
from ipytv.utils import extract_series
pl = loadu("https://mametchikitty.github.io/Listas-IPTV/dibujos-animados.m3u")
series_map, not_series_pl = extract_series(pl, exclude_single=True)
out_dir = "./series"
os.makedirs(out_dir)
with open(f"{out_dir}/not_series.m3u", "w") as out_file:
out_file.write(not_series_pl.to_m3u_plus_playlist())

for show_title, pl in series_map.items():
# Slashes and colons are not allowed as filenames
show_filename = show_title.replace("/", "_").replace(":", "_")
with open(f"{out_dir}/{show_filename}.m3u", "w") as out_file:
out_file.write(pl.to_m3u_plus_playlist())

Logging
IPyTV supports python's
standard logging system.
To enable IPyTV's logging, add a logging configuration to your application:
import logging
from ipytv import playlist

logging.basicConfig(level=logging.INFO)
pl = playlist.loadu("https://iptv-org.github.io/iptv/categories/classic.m3u")

Object serialization
An M3UPlaylist object can be serialized into the following formats:

M3U Plus (i.e. a string in the M3U Plus format):

pl.to_m3u_plus_playlist()


M3U8 (i.e. a string in the M3U8 format that can be parsed using the standard m3u8 library):

pl.to_m3u8_playlist()


JSON (i.e. a JSON string that can be parsed using the standard json library):

pl.to_json_playlist()



JSON format
The pl.to_json_playlist() method returns a JSON string that represents the playlist according to
the following format:
{
"attributes": {
"x-tvg-url": "http://myown.link:80/luke/220311/22311"
},
"channels": [
{
"name": "Rai 1",
"duration": "-1",
"url": "http://myown.link:80/luke/210274/78482",
"attributes": {
"tvg-id": "Rai 1",
"tvg-name": "Rai 1",
"tvg-logo": "https://static.epg.best/it/RaiUno.it.png",
"group-title": "RAI"
},
"extras": [
"#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
]
},
{
"name": "Rai 2",
"duration": "-1",
"url": "http://myown.link:80/luke/210274/78483",
"attributes": {
"tvg-id": "Rai 2",
"tvg-name": "Rai 2",
"tvg-logo": "https://static.epg.best/it/RaiDue.it.png",
"group-title": "RAI"
},
"extras": []
}
]
}

Format considerations
The extensions to the #EXTM3U and #EXTINF tags introduced by the M3U Plus
format have broken the compatibility with the M3U8 format.
This is what a standard #EXTINF row should look like:
#EXTINF:-1,Rai 1

The format is pretty
straightforward:
#EXTINF:<duration>,[<title>]

Let's break it down:

The #EXTINF: tag.
The duration of the content (as an integer or float, signed or not).
A comma character.
A title.

This is what an #EXTINF row in the M3U Plus format looks like:
#EXTINF:-1 tvg-id="Rai 1" tvg-name="Rai 1" tvg-logo="https://static.epg.best/it/RaiUno.it.png" group-title="RAI",Rai 1

If we break it down, we see that points 3. and 4. below have been added (and
they break the previous definition for the #EXTINF tag):

The #EXTINF: tag.
The duration of the content (as an integer or float, signed or not).
A space.
A variable-length, space-separated list of attributes.
A comma character.
A title.

The attributes in point 4 are in the attribute="value" format, where value
may also contain non-escaped commas and, sometimes, even unescaped double
quotes. This really complicates the parsing logic.
It's worth noting that the M3U8 RFC document specifies how
attribute lists should be
formatted, but the M3U Plus implementation doesn't comply with the standard.
In conclusion, the M3U Plus format with its quirks and idiosyncrasies is hard to
read for humans and hard to parse for computers. It's an ugly format, but it's
too widespread to be ignored and for Python to lack a parsing library.
On a funny note, this is how the VLC programmers named the
parsing function
for the IPTV playlists in the M3U Plus format:
static void parseEXTINFIptvDiots(...)

Just saying... :sweat_smile:
License
This project is licensed under the terms of the MIT license.
See LICENSE.txt for details.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.