youtube-dl/youtube_dl/extractor/skylinewebcams.py
Piero Macaluso e6e12b1d1b fix: SkylineWebcams extractor
SkylineWebcams extractor was not working.
Here are the list of changes to make it work:

1. Update the regex to extract the stream URL from the webpage.
In the webpage there is just a variable in the form `livee.m3u8?a=<id>`.
The usage of that link by appending it to
`https://hd-auth.skylinewebcams.com/` do not work. The solution was
to extract just the `?a=<id>` area and appending it to
`https://hd-auth.skylinewebcams.com/live.m3u8`.
The extractor works properly.

2. Updated `_TEST` with a new `url`. The old one was disabled.

It solves #28873.
2022-01-20 15:16:12 +01:00

42 lines
1.4 KiB
Python

# coding: utf-8
from __future__ import unicode_literals
from .common import InfoExtractor
class SkylineWebcamsIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?skylinewebcams\.com/[^/]+/webcam/(?:[^/]+/)+(?P<id>[^/]+)\.html'
_TEST = {
'url': 'https://www.skylinewebcams.com/it/webcam/italia/lazio/roma/piazza-di-spagna.html',
'info_dict': {
'id': 'scalinata-piazza-di-spagna-barcaccia',
'ext': 'mp4',
'title': 're:^Live Webcam Scalinata di Piazza di Spagna - La Barcaccia [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
'description': 'Roma, veduta sulla Scalinata di Piazza di Spagna e sulla Barcaccia',
'is_live': True,
},
'params': {
'skip_download': True,
}
}
def _real_extract(self, url):
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
stream_url = 'https://hd-auth.skylinewebcams.com/live.m3u8' + self._search_regex(
r'(?:url|source)\s*:\s*(["\'])(livee\.m3u8(?P<a_param>\?a=\w+))\1', webpage,
'stream url', group='a_param')
title = self._og_search_title(webpage)
description = self._og_search_description(webpage)
return {
'id': video_id,
'url': stream_url,
'ext': 'mp4',
'title': self._live_title(title),
'description': description,
'is_live': True,
}