Home
last modified time | relevance | path

Searched refs:_url_re (Results 1 – 25 of 179) sorted by relevance

12345678

/dports/multimedia/streamlink/streamlink-2.1.2/src/streamlink/plugins/
H A Dhds.py11 _url_re = re.compile(r"(hds://)?(.+(?:\.f4m)?.*)") variable in HDSPlugin
21 m = cls._url_re.match(url)
23 prefix, url = cls._url_re.match(url).groups()
33 m = cls._url_re.match(url)
41 urlnoproto = self._url_re.match(url).group(2)
H A Dhls.py14 _url_re = re.compile(r"(hls(?:variant)?://)?(.+(?:\.m3u8)?.*)") variable in HLSPlugin
24 m = cls._url_re.match(url)
26 prefix, url = cls._url_re.match(url).groups()
36 m = cls._url_re.match(url)
43 urlnoproto = self._url_re.match(url).group(2)
H A Ddash.py13 _url_re = re.compile(r"(dash://)?(.+(?:\.mpd)?.*)") variable in MPEGDASH
23 m = cls._url_re.match(url)
25 prefix, url = cls._url_re.match(url).groups()
47 m = cls._url_re.match(url)
53 mpdurl = self._url_re.match(self.url).group(2)
H A Dnhkworld.py10 _url_re = re.compile(r"http(?:s)?://(?:(\w+)\.)?nhk.or.jp/nhkworld") variable
16 return _url_re.match(url) is not None
20 sdomain = _url_re.match(self.url).group(1) or "www"
H A Drtlxl.py7 _url_re = re.compile(r"http(?:s)?://(?:\w+\.)?rtl.nl/video/(?P<uuid>.*?)\Z", re.IGNORECASE) variable
13 return _url_re.match(url)
16 match = _url_re.match(self.url)
H A Dhttp.py13 _url_re = re.compile(r"httpstream://(.+)") variable in HTTPStreamPlugin
17 return cls._url_re.match(url) is not None
21 urlnoproto = self._url_re.match(url).group(1)
H A Dakamaihd.py13 _url_re = re.compile(r"akamaihd://(.+)") variable in AkamaiHDPlugin
17 return cls._url_re.match(url) is not None
21 urlnoproto = self._url_re.match(url).group(1)
H A Dtvibo.py12 _url_re = re.compile(r"https?://player\.tvibo\.com/\w+/(?P<id>\d+)") variable in Tvibo
17 return cls._url_re.match(url) is not None
20 channel_id = self._url_re.match(self.url).group("id")
H A Dbigo.py9 _url_re = re.compile(r"https?://(?:www\.)?bigo\.tv/([^/]+)$") variable in Bigo
22 return cls._url_re.match(url) is not None
25 match = self._url_re.match(self.url)
H A Dpiczel.py14 _url_re = re.compile(r"https://piczel.tv/watch/(\w+)") variable
28 return _url_re.match(url)
31 match = _url_re.match(self.url)
H A Dvinhlongtv.py15 _url_re = re.compile( variable in VinhLongTV
27 return cls._url_re.match(url) is not None
30 channel = self._url_re.match(self.url).group('channel')
H A Dviutv.py14 _url_re = re.compile(r"https?://viu\.tv/ch/(\d+)") variable in ViuTV
19 return cls._url_re.match(url) is not None
27 return self._url_re.match(self.url).group(1)
H A Dqq.py29 _url_re = re.compile(r"""https?://(m\.)?live\.qq\.com/(?P<room_id>\d+)""") variable in QQ
33 return cls._url_re.match(url)
36 match = self._url_re.match(self.url)
H A Dtigerdile.py16 _url_re = re.compile(r""" variable
24 return _url_re.match(url)
28 streamname = _url_re.search(res).group(1)
H A Dzhanqi.py15 _url_re = re.compile(r""" variable
37 return _url_re.match(url)
40 match = _url_re.match(self.url)
H A Dturkuvaz.py16 _url_re = re.compile(r"""(?x)https?://(?:www\.)? variable in Turkuvaz
42 return cls._url_re.match(url) is not None
45 url_m = self._url_re.match(self.url)
/dports/multimedia/livestreamer/livestreamer-1.12.2/src/livestreamer/plugins/
H A Dspeedrunslive.py7 _url_re = re.compile("http://(?:www\.)?speedrunslive.com/#!/(?P<user>\w+)") variable
13 return _url_re.match(url)
16 match = _url_re.match(self.url)
H A Doldlivestream.py8 _url_re = re.compile("http(s)?://original.livestream.com/(?P<channel>[^&?/]+)") variable
14 return _url_re.match(url)
17 match = _url_re.match(self.url)
H A Dpicarto.py8 _url_re = re.compile(""" variable
18 return _url_re.match(url)
21 match = _url_re.match(self.url)
H A Dtvcatchup.py10 _url_re = re.compile("http://(?:www\.)?tvcatchup.com/watch/(?P<channel_id>[0-9]+)") variable
16 return _url_re.match(url)
22 match = _url_re.match(self.url).groupdict()
H A Dperiscope.py13 _url_re = re.compile(r"http(s)?://(www\.)?periscope.tv/w/(?P<token>[\w\-\=]+)") variable
23 return _url_re.match(url)
26 match = _url_re.match(self.url)
H A Drtve.py9 _url_re = re.compile(r""" variable
40 return _url_re.match(url)
44 match = _url_re.match(url).groupdict()
H A Dnrk.py13 _url_re = re.compile("http://(tv|radio).nrk.no/") variable
37 return _url_re.match(url)
40 stream_type = _url_re.match(self.url).group(1).upper()
H A Dtvplayer.py10 _url_re = re.compile(r"http://(?:www.)?tvplayer.com/watch/(.+)") variable
20 match = _url_re.match(url)
24 url_match = _url_re.match(self.url)
H A Dsbsdiscovery.py11 _url_re = re.compile (""" variable
30 return _url_re.match (url)
33 match = _url_re.match (self.url)

12345678