diff options
author | InfernalUnderling <42065091+InfernalUnderling@users.noreply.github.com> | 2019-11-26 17:20:39 +0000 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2019-11-27 00:20:39 +0700 |
commit | 6ddd4bf6ac04ae0b8ba39fb4124e844afc49b5a9 (patch) | |
tree | bbf397051ed029bc0b100e942336b2e5943a7444 /youtube_dl/extractor/bitchute.py | |
parent | 9d30c2132acf2d12bfa8e559987c341c76d9cd24 (diff) |
[bitchute] Extract upload date (closes #22990) (#23193)
Diffstat (limited to 'youtube_dl/extractor/bitchute.py')
-rw-r--r-- | youtube_dl/extractor/bitchute.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/youtube_dl/extractor/bitchute.py b/youtube_dl/extractor/bitchute.py index 430663fbf..0c773e66e 100644 --- a/youtube_dl/extractor/bitchute.py +++ b/youtube_dl/extractor/bitchute.py @@ -7,6 +7,7 @@ import re from .common import InfoExtractor from ..utils import ( orderedSet, + unified_strdate, urlencode_postdata, ) @@ -23,6 +24,7 @@ class BitChuteIE(InfoExtractor): 'description': 'md5:3f21f6fb5b1d17c3dee9cf6b5fe60b3a', 'thumbnail': r're:^https?://.*\.jpg$', 'uploader': 'Victoria X Rave', + 'upload_date': '20170813', }, }, { 'url': 'https://www.bitchute.com/embed/lbb5G1hjPhw/', @@ -74,12 +76,17 @@ class BitChuteIE(InfoExtractor): r'(?s)<p\b[^>]+\bclass=["\']video-author[^>]+>(.+?)</p>'), webpage, 'uploader', fatal=False) + upload_date = unified_strdate(self._search_regex( + r'class=["\']video-publish-date[^>]+>[^<]+ at \d+:\d+ UTC on (.+?)\.', + webpage, 'upload date', fatal=False)) + return { 'id': video_id, 'title': title, 'description': description, 'thumbnail': thumbnail, 'uploader': uploader, + 'upload_date': upload_date, 'formats': formats, } |