1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-01-24 00:32:51 +08:00

Update acast.py

This commit is contained in:
Sergey M 2018-01-02 23:30:17 +07:00 committed by GitHub
parent 48c7e85178
commit eb662ecd9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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')),
}