-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FR - VIAMATELE] Fix live and use its own file
- Loading branch information
Showing
3 changed files
with
33 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright: (c) 2024, Joaopa | ||
# 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 | ||
|
||
from codequick import Resolver, Route | ||
import urlquick | ||
|
||
from resources.lib import resolver_proxy, web_utils | ||
|
||
|
||
# TODO Add replays | ||
|
||
URL_ROOT = 'https://matele.tv' | ||
|
||
URL_LIVE = URL_ROOT + '/direct' | ||
|
||
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) | ||
root = resp.text | ||
video_url = re.compile(r"source:\'(.*?)\'").findall(root)[0] | ||
|
||
return resolver_proxy.get_stream_with_quality(plugin, video_url) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters