Skip to content

Commit

Permalink
[BO - ATB] Add channel
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmygilles authored and joaopa00 committed May 9, 2024
1 parent e0bd0e0 commit 063a9aa
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
38 changes: 38 additions & 0 deletions resources/lib/channels/bo/atb.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# -*- coding: utf-8 -*-
# Copyright: (c) 2024, JimmyGilles
# GNU General Public License v2.0+ (see LICENSE.txt or https://www.gnu.org/licenses/gpl-2.0.txt)

# This file is part of Catch-up TV & More

from __future__ import unicode_literals

import re

import urlquick
# noinspection PyUnresolvedReferences
from codequick import Resolver, Route
# noinspection PyUnresolvedReferences
from codequick.utils import urljoin_partial

from resources.lib import resolver_proxy, web_utils

URL_ROOT = 'https://www.atb.com.bo/'
url_constructor = urljoin_partial(URL_ROOT)
URL_LIVE = url_constructor('atb-en-vivo/')


PATTERN_VIDEO_M3U8 = re.compile(r'file: \"(.*?\.m3u8.*)\"')

GENERIC_HEADERS = {"User-Agent": web_utils.get_random_ua()}


@Resolver.register
def get_live_url(plugin, item_id, **kwargs):
resp = urlquick.get(URL_LIVE, headers=GENERIC_HEADERS, max_age=-1)
try:
dailymotion_url = resp.parse().find(".//meta[@itemprop='embedUrl']").get('content')
live_id = re.compile(r'video\/(.*?)$').findall(dailymotion_url)[0]
except Exception:
live_id = 'x84eirw'

return resolver_proxy.get_stream_dailymotion(plugin, live_id, False)
11 changes: 10 additions & 1 deletion resources/lib/skeletons/bo_live.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,22 @@
root = 'live_tv'

menu = {
'atb': {
'resolver': '/resources/lib/channels/bo/atb:get_live_url',
'label': 'ATB',
'thumb': 'channels/bo/atb.png',
'fanart': 'channels/bo/atb_fanart.jpg',
'm3u_group': 'Bolivia',
'enabled': True,
'order': 1
},
'bolivia_tv': {
'resolver': '/resources/lib/channels/bo/boliviatv:get_live_url',
'label': 'Bolivia TV',
'thumb': 'channels/bo/boliviatv.png',
'fanart': 'channels/bo/boliviatv_fanart.jpg',
'm3u_group': 'Bolivia',
'enabled': True,
'order': 1
'order': 2
},
}

0 comments on commit 063a9aa

Please sign in to comment.