1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-12-03 23:47:43 +00:00
youtube-dl/youtube_dl/extractor/parler.py

77 lines
3.3 KiB
Python
Raw Normal View History

2022-08-07 18:14:24 +00:00
# coding: utf-8
from __future__ import unicode_literals
from .common import InfoExtractor
from ..utils import (
clean_html,
2022-08-15 18:58:04 +00:00
int_or_none,
strip_or_none,
unified_timestamp,
urlencode_postdata,
)
2022-08-07 18:14:24 +00:00
class ParlerIE(InfoExtractor):
2022-08-15 18:58:04 +00:00
IE_DESC = 'Posts on parler.com'
_VALID_URL = r'https://parler\.com/feed/(?P<id>[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12})'
2022-08-07 18:14:24 +00:00
_TESTS = [
{
2022-08-08 18:01:58 +00:00
'url': 'https://parler.com/feed/df79fdba-07cc-48fe-b085-3293897520d7',
'md5': '16e0f447bf186bb3cf64de5bbbf4d22d',
'info_dict': {
'id': 'df79fdba-07cc-48fe-b085-3293897520d7',
'ext': 'mp4',
2022-08-15 18:58:04 +00:00
'thumbnail': 'https://bl-images.parler.com/videos/6ce7cdf3-a27a-4d72-bf9c-d3e17ce39a66/thumbnail.jpeg',
'title': 'Parler video #df79fdba-07cc-48fe-b085-3293897520d7',
'description': 'md5:6f220bde2df4a97cbb89ac11f1fd8197',
2022-08-08 18:01:58 +00:00
'timestamp': 1659744000,
'upload_date': '20220806',
'uploader': 'Tulsi Gabbard',
'uploader_id': 'TulsiGabbard',
2022-08-15 18:58:04 +00:00
'uploader_url': 'https://parler.com/TulsiGabbard',
'view_count': int,
'comment_count': int,
'repost_count': int,
2022-08-07 18:14:24 +00:00
},
},
{
2022-08-08 18:01:58 +00:00
'url': 'https://parler.com/feed/a7406eb4-91e5-4793-b5e3-ade57a24e287',
'md5': '11687e2f5bb353682cee338d181422ed',
'info_dict': {
'id': 'a7406eb4-91e5-4793-b5e3-ade57a24e287',
'ext': 'mp4',
2022-08-15 18:58:04 +00:00
'thumbnail': 'https://bl-images.parler.com/videos/317827a8-1e48-4cbc-981f-7dd17d4c1183/thumbnail.jpeg',
'title': 'Parler video #a7406eb4-91e5-4793-b5e3-ade57a24e287',
2022-08-09 10:42:26 +00:00
'description': 'This man should run for office',
2022-08-08 18:01:58 +00:00
'timestamp': 1659657600,
'upload_date': '20220805',
'uploader': 'Benny Johnson',
'uploader_id': 'BennyJohnson',
2022-08-15 18:58:04 +00:00
'uploader_url': 'https://parler.com/BennyJohnson',
'view_count': int,
'comment_count': int,
'repost_count': int,
2022-08-07 18:14:24 +00:00
},
},
]
def _real_extract(self, url):
video_id = self._match_id(url)
2022-08-15 18:58:04 +00:00
data = self._download_json(
'https://parler.com/open-api/ParleyDetailEndpoint.php', video_id,
data=urlencode_postdata({'uuid': video_id}))['data'][0]
primary = data['primary']
2022-08-07 18:14:24 +00:00
return {
2022-08-08 18:04:11 +00:00
'id': video_id,
2022-08-15 18:58:04 +00:00
'url': primary['video_data']['videoSrc'],
'thumbnail': primary['video_data']['thumbnailUrl'],
'title': "Parler video #%s" % video_id,
'description': strip_or_none(clean_html(primary.get('full_body'))) or None,
'timestamp': unified_timestamp(primary.get('date_created')),
'uploader': strip_or_none(primary.get('name')),
'uploader_id': strip_or_none(primary.get('username')),
'uploader_url': 'https://parler.com/%s' % strip_or_none(primary.get('username')),
'view_count': int_or_none(primary.get('view_count')),
'comment_count': int_or_none(data['engagement']['commentCount']),
'repost_count': int_or_none(data['engagement']['echoCount']),
}