mirror of https://github.com/yt-dlp/yt-dlp.git
[cbslocal] Fix timestamp parsing (closes #10213)
This commit is contained in:
parent
7dc2a74e0a
commit
962250f7ea
|
@ -1,3 +1,9 @@
|
||||||
|
version <unreleased>
|
||||||
|
|
||||||
|
Fixed/improved extractors
|
||||||
|
- [cbslocal] Fix timestamp parsing (#10213)
|
||||||
|
|
||||||
|
|
||||||
version 2016.08.01
|
version 2016.08.01
|
||||||
|
|
||||||
Fixed/improved extractors
|
Fixed/improved extractors
|
||||||
|
@ -7,6 +13,7 @@ Fixed/improved extractors
|
||||||
- [safari] Relax regular expressions for URL matching (#10202)
|
- [safari] Relax regular expressions for URL matching (#10202)
|
||||||
- [cwtv] Add support for cwtvpr.com (#10196)
|
- [cwtv] Add support for cwtvpr.com (#10196)
|
||||||
|
|
||||||
|
|
||||||
version 2016.07.30
|
version 2016.07.30
|
||||||
|
|
||||||
Fixed/improved extractors
|
Fixed/improved extractors
|
||||||
|
|
|
@ -1,12 +1,10 @@
|
||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import calendar
|
|
||||||
import datetime
|
|
||||||
|
|
||||||
from .anvato import AnvatoIE
|
from .anvato import AnvatoIE
|
||||||
from .sendtonews import SendtoNewsIE
|
from .sendtonews import SendtoNewsIE
|
||||||
from ..compat import compat_urlparse
|
from ..compat import compat_urlparse
|
||||||
|
from ..utils import unified_timestamp
|
||||||
|
|
||||||
|
|
||||||
class CBSLocalIE(AnvatoIE):
|
class CBSLocalIE(AnvatoIE):
|
||||||
|
@ -71,10 +69,7 @@ class CBSLocalIE(AnvatoIE):
|
||||||
|
|
||||||
time_str = self._html_search_regex(
|
time_str = self._html_search_regex(
|
||||||
r'class="entry-date">([^<]+)<', webpage, 'released date', fatal=False)
|
r'class="entry-date">([^<]+)<', webpage, 'released date', fatal=False)
|
||||||
timestamp = None
|
timestamp = unified_timestamp(time_str)
|
||||||
if time_str:
|
|
||||||
timestamp = calendar.timegm(datetime.datetime.strptime(
|
|
||||||
time_str, '%b %d, %Y %I:%M %p').timetuple())
|
|
||||||
|
|
||||||
info_dict.update({
|
info_dict.update({
|
||||||
'display_id': display_id,
|
'display_id': display_id,
|
||||||
|
|
Loading…
Reference in New Issue