1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-10 20:18:20 +08:00
This commit is contained in:
Andrew 2014-06-02 23:31:10 +07:00
parent 4bf0727b1f
commit 19355761b4

View File

@ -13,7 +13,7 @@ from ..utils import (
ExtractorError,
unified_strdate,
)
int_or_none)
class SoundcloudIE(InfoExtractor):
@ -119,6 +119,7 @@ class SoundcloudIE(InfoExtractor):
'title': info['title'],
'description': info['description'],
'thumbnail': thumbnail,
'duration': int(int_or_none(info.get("duration")) / 1000),
}
formats = []
if info.get('downloadable', False):