1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-12-01 20:57:54 +01:00
youtube-dl/youtube_dl/extractor/acidcow.py

40 lines
917 B
Python
Raw Normal View History

2020-03-29 03:47:16 +02:00
from __future__ import unicode_literals
from .common import InfoExtractor
class acidcowIE(InfoExtractor):
"""
InfoExtractor for acid.cow
This class should be used to handle videos. Another class (TODO) will be
used to implement playlists or other content.
"""
2020-03-30 06:54:05 +02:00
2020-03-31 05:42:50 +02:00
_VALID_URL = r'https?://acidcow\.com/video/(?P<id>\d+)-\S+'
2020-03-29 03:47:16 +02:00
_TESTS = {
# TODO: Implement
}
def _real_extract(self, url):
video_id = self._match_id(url)
2020-04-02 03:15:51 +02:00
2020-03-31 06:30:15 +02:00
webpage = self._download_webpage(
2020-04-01 07:09:36 +02:00
url, video_id
2020-03-31 06:30:15 +02:00
)
2020-03-29 03:47:16 +02:00
title = self._html_search_regex(r'<title>(.+?)</title>', webpage, 'title')
2020-03-30 06:54:05 +02:00
2020-03-31 06:34:02 +02:00
download_url = self._html_search_regex(
2020-03-29 03:47:16 +02:00
2020-04-01 04:37:54 +02:00
r'(https://cdn\.acidcow\.com/pics/[0-9]+/video/\S+\.mp4)',
2020-03-31 06:34:02 +02:00
webpage, "download_url"
)
2020-03-29 03:47:16 +02:00
return {
'id': video_id,
'url': download_url,
'title': title
}