Skip to content

Commit

Permalink
[bitchute] Extract upload date (closes #22990) (#23193)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyaa-rlathotep authored and meunierd committed Feb 13, 2020
1 parent 81af637 commit 6ec300b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions youtube_dl/extractor/bitchute.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from .common import InfoExtractor
from ..utils import (
orderedSet,
unified_strdate,
urlencode_postdata,
)

Expand All @@ -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/',
Expand Down Expand Up @@ -74,12 +76,17 @@ def _real_extract(self, url):
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,
}

Expand Down

0 comments on commit 6ec300b

Please sign in to comment.