1
0
mirror of https://github.com/l1ving/youtube-dl synced 2026-05-30 14:19:48 +08:00

Update acast.py

This commit is contained in:
Sergey M
2018-01-02 23:30:17 +07:00
committed by GitHub
Unverified
parent 48c7e85178
commit eb662ecd9f
+2 -2
View File
@@ -8,7 +8,7 @@ from .common import InfoExtractor
from ..compat import compat_str
from ..utils import (
int_or_none,
parse_iso8601,
unified_timestamp,
OnDemandPagedList,
)
@@ -56,7 +56,7 @@ class ACastIE(InfoExtractor):
'title': e['name'],
'description': e.get('description'),
'thumbnail': e.get('image'),
'timestamp': parse_iso8601(e.get('publishingDate')),
'timestamp': unified_timestamp(e.get('publishingDate')),
'duration': int_or_none(e.get('duration')),
}