diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:49:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:49:24 +0000 |
commit | 2415e66f889f38503b73e8ebc5f43ca342390e5c (patch) | |
tree | ac48ab69d1d96bae3d83756134921e0d90593aa5 /yt_dlp/extractor/freespeech.py | |
parent | Initial commit. (diff) | |
download | yt-dlp-2415e66f889f38503b73e8ebc5f43ca342390e5c.tar.xz yt-dlp-2415e66f889f38503b73e8ebc5f43ca342390e5c.zip |
Adding upstream version 2024.03.10.upstream/2024.03.10
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'yt_dlp/extractor/freespeech.py')
-rw-r--r-- | yt_dlp/extractor/freespeech.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/yt_dlp/extractor/freespeech.py b/yt_dlp/extractor/freespeech.py new file mode 100644 index 0000000..aea5513 --- /dev/null +++ b/yt_dlp/extractor/freespeech.py @@ -0,0 +1,29 @@ +from .common import InfoExtractor +from .youtube import YoutubeIE + + +class FreespeechIE(InfoExtractor): + IE_NAME = 'freespeech.org' + _VALID_URL = r'https?://(?:www\.)?freespeech\.org/stories/(?P<id>.+)' + _TEST = { + 'add_ie': ['Youtube'], + 'url': 'http://www.freespeech.org/stories/fcc-announces-net-neutrality-rollback-whats-stake/', + 'info_dict': { + 'id': 'waRk6IPqyWM', + 'ext': 'mp4', + 'title': 'What\'s At Stake - Net Neutrality Special', + 'description': 'Presented by MNN and FSTV', + 'upload_date': '20170728', + 'uploader_id': 'freespeechtv', + 'uploader': 'freespeechtv', + }, + } + + def _real_extract(self, url): + display_id = self._match_id(url) + webpage = self._download_webpage(url, display_id) + youtube_url = self._search_regex( + r'data-video-url="([^"]+)"', + webpage, 'youtube url') + + return self.url_result(youtube_url, YoutubeIE.ie_key()) |