Skip to content

Commit

Permalink
[BO - REDUNO] 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 8c0f971 commit 8326f30
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
35 changes: 35 additions & 0 deletions resources/lib/channels/bo/reduno.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# -*- 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.reduno.com.bo/'
url_constructor = urljoin_partial(URL_ROOT)
URL_LIVE = url_constructor('senal-en-vivo')

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(".//span[@class='activo']").get('data-src')
live_id = re.compile(r'video\/(.*?)\?').findall(dailymotion_url)[0]
except Exception:
live_id = 'x8vufvw'

return resolver_proxy.get_stream_dailymotion(plugin, live_id, False)
9 changes: 9 additions & 0 deletions resources/lib/skeletons/bo_live.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,13 @@
'enabled': True,
'order': 2
},
'reduno': {
'resolver': '/resources/lib/channels/bo/reduno:get_live_url',
'label': 'Red Uno',
'thumb': 'channels/bo/reduno.jpg',
'fanart': 'channels/bo/reduno_fanart.jpg',
'm3u_group': 'Bolivia',
'enabled': True,
'order': 3
},
}

0 comments on commit 8326f30

Please sign in to comment.